commit 9ae871405588317f3bdae5924bf1370a4f14205f Author: Eagle517 <15026800+Eagle517@users.noreply.github.com> Date: Tue Jan 15 12:39:35 2019 -0600 Initial commit diff --git a/brickdata.cs b/brickdata.cs new file mode 100644 index 0000000..bc10821 --- /dev/null +++ b/brickdata.cs @@ -0,0 +1,50 @@ +//Wires +exec("./bricks/wires.cs"); + +//Gates +exec("./bricks/gates/diode.cs"); +exec("./bricks/gates/NOT.cs"); +exec("./bricks/gates/OR.cs"); +exec("./bricks/gates/AND.cs"); +exec("./bricks/gates/NOR.cs"); +exec("./bricks/gates/NAND.cs"); +exec("./bricks/gates/XOR.cs"); +exec("./bricks/gates/XNOR.cs"); + + //Vertical +exec("./bricks/gates/verticalDiode.cs"); +exec("./bricks/gates/verticalNOT.cs"); + +//Bus +exec("./bricks/bus/8BitEnabler.cs"); +exec("./bricks/bus/8BitDFlipFlop.cs"); + +//Inputs +exec("./bricks/inputs/switch.cs"); +exec("./bricks/inputs/keyboard.cs"); + +//Math + //Addition +exec("./bricks/math/HalfAdder.cs"); +exec("./bricks/math/FullAdder.cs"); +exec("./bricks/math/8bitAdder.cs"); + + //Subtraction +exec("./bricks/math/HalfSubtractor.cs"); +exec("./bricks/math/FullSubtractor.cs"); +exec("./bricks/math/8bitSubtractor.cs"); + + //Multiplication +exec("./bricks/math/8bitMultiplier.cs"); + + //Division +exec("./bricks/math/8bitDivider.cs"); + +//Memory +exec("./bricks/memory/DFlipFlop.cs"); +exec("./bricks/memory/DFlipflopGridMemory2.cs"); + +//Special +exec("./bricks/special/pixel.cs"); +exec("./bricks/special/HorizontalPixel.cs"); +exec("./bricks/special/TextBrick.cs"); diff --git a/bricks.cs b/bricks.cs new file mode 100644 index 0000000..4a40764 --- /dev/null +++ b/bricks.cs @@ -0,0 +1,171 @@ +function lualogic_addwire(%wire) +{ + %color = %wire.getColorID(); + + %box = %wire.getWorldBox(); + + %minX = mFloatLength(getWord(%box, 0)*2, 0)/2; + %minY = mFloatLength(getWord(%box, 1)*2, 0)/2; + %minZ = mFloatLength(getWord(%box, 2)*5, 0)/5; + + %maxX = mFloatLength(getWord(%box, 3)*2, 0)/2; + %maxY = mFloatLength(getWord(%box, 4)*2, 0)/2; + %maxZ = mFloatLength(getWord(%box, 5)*5, 0)/5; + + %min = lualogic_pos(%minX SPC %minY SPC %minZ); + %max = lualogic_pos(%maxX SPC %maxY SPC %maxZ); + + lualogic_send("W;" @ %wire.getID() @ ";" @ %color @ ";" @ %min @ ";" @ %max); + %wire.logicIsAdded = true; +} + +function lualogic_addgate(%gate) +{ + %db = %gate.getDataBlock(); + %pos = lualogic_pos(%gate.getPosition()); + %rot = %gate.angleId; + + %data = "G;" @ %gate.getID() @ ";" @ %db @ ";" @ %pos @ ";" @ %rot; + + lualogic_send(%data); + %gate.logicIsAdded = true; + + if(isFunction(%db.getName(), "Logic_onAdd")) + %db.Logic_onAdd(%gate); +} + +function lualogic_removewire(%wire) +{ + if(%wire.logicIsRemoved == false) + { + lualogic_send("RW;" @ %wire); + %wire.logicIsRemoved = true; + } +} + +function lualogic_removegate(%gate) +{ + if(%gate.logicIsRemoved == false) + { + %db = %gate.getDataBlock(); + if(isFunction(%db.getName(), "Logic_onRemove")) + %db.Logic_onRemove(%gate); + + lualogic_send("RG;" @ %gate); + %gate.logicIsRemoved = true; + } +} + +function lualogic_sendall() +{ + %groups = mainBrickGroup.getCount(); + for(%i = 0; %i < %groups; %i++) + { + %group = mainBrickGroup.getObject(%i); + %bricks = %group.getCount(); + for(%a = 0; %a < %bricks; %a++) + { + %brick = %group.getObject(%a); + %data = %brick.getDataBlock(); + if(%data.isLogic && %brick.isPlanted()) + { + if(%data.isLogicWire) + lualogic_addwire(%brick); + else if(%data.isLogicGate) + lualogic_addgate(%brick); + } + } + } +} + +function fxDTSBrick::Logic_SetOutput(%this, %port, %state) +{ + lualogic_send("SP;" @ %this @ ";" @ %port+1 @ ";" @ %state); +} + +package LuaLogic_Bricks +{ + function fxDTSBrickData::onPlant(%this, %brick) + { + parent::onPlant(%this, %brick); + + if(isObject(%brick) && %this.isLogic) + { + if(%this.isLogicWire) + lualogic_addwire(%brick); + else if(%this.isLogicGate) + lualogic_addgate(%brick); + } + } + + function fxDTSBrickData::onLoadPlant(%this, %brick) + { + parent::onLoadPlant(%this, %brick); + + if(isObject(%brick) && %this.isLogic) + { + if(%this.isLogicWire) + lualogic_addwire(%brick); + else if(%this.isLogicGate) + lualogic_addgate(%brick); + } + } + + function fxDTSBrickData::onColorChange(%data, %obj) + { + parent::onColorChange(%data, %obj); + + if(isObject(%obj) && %obj.isPlanted() && !%obj.isDead() && %data.isLogic && %data.isLogicWire) + lualogic_send("SL;" @ %obj @ ";" @ %obj.getColorID()); + } + + function fxDTSBrickData::onDeath(%this, %brick) + { + if(%this.isLogic) + { + if(%this.isLogicWire) + lualogic_removewire(%brick); + else if(%this.isLogicGate) + lualogic_removegate(%brick); + } + + parent::onDeath(%this, %brick); + } + + function fxDTSBrickData::onRemove(%this, %brick) + { + if(%this.isLogic && %brick.logicIsAdded) + { + if(%this.isLogicWire) + lualogic_removewire(%brick); + else if(%this.isLogicGate) + lualogic_removegate(%brick); + } + + parent::onRemove(%this, %brick); + } + + function Player::activateStuff(%this, %a, %b) + { + parent::activateStuff(%this, %a, %b); + + if(isObject(%client = %this.client)) + { + %eye = %this.getEyePoint(); + %vec = %this.getEyeVector(); + %ray = containerRayCast(%eye, vectorAdd(%eye, vectorScale(%vec, 5*getWord(%this.getScale(), 2))), $TypeMasks::FxBrickObjectType); + if(isObject(%hit = firstWord(%ray))) + { + %data = %hit.getDataBlock(); + if(%data.isLogic) + { + if(%data.isLogicInput) + %data.Logic_onInput(%hit, %hitPos, %hitNorm, %client); + else + lualogic_send("GINFO;" @ %client @ ";" @ %hit); + } + } + } + } +}; +activatePackage("LuaLogic_Bricks"); diff --git a/bricks/blb/1x1fD_1i_1o.blb b/bricks/blb/1x1fD_1i_1o.blb new file mode 100644 index 0000000..a7394b9 --- /dev/null +++ b/bricks/blb/1x1fD_1i_1o.blb @@ -0,0 +1,403 @@ +1 1 1 +SPECIAL + +b + +1 + +0 0 0 +1 1 1 +COVERAGE: +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +----------------top quads: +6 + +TEX:TOP +POSITION: +0.5 0.5 0.5 +0.5 -0.5 0.5 +-0.5 -0.5 0.5 +-0.5 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.4 -0.4 0.75 +0.4 -0.4 0.75 +0.4 -0.4 0.5 +-0.4 -0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.4 -0.4 0.75 +-0.4 0.4 0.75 +0.4 0.4 0.75 +0.4 -0.4 0.75 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.4 0.4 0.75 +-0.4 0.4 0.75 +-0.4 0.4 0.5 +0.4 0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.4 0.4 0.75 +-0.4 -0.4 0.75 +-0.4 -0.4 0.5 +-0.4 0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.4 -0.4 0.75 +0.4 0.4 0.75 +0.4 0.4 0.5 +0.4 -0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------bottom quads: +9 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -0.5 -0.5 +0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 0.5 -0.5 +-0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -0.5 -0.5 +0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 0.5 -0.5 +-0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.32 -0.32 -0.875 +-0.32 -0.32 -0.875 +-0.4 -0.4 -0.5 +0.4 -0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -0.882353 -0.470588 +0 -0.882353 -0.470588 +0 -0.882353 -0.470588 +0 -0.882353 -0.470588 + +TEX:SIDE +POSITION: +0.32 -0.32 -0.875 +0.32 0.32 -0.875 +-0.32 0.32 -0.875 +-0.32 -0.32 -0.875 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.32 0.32 -0.875 +0.32 0.32 -0.875 +0.4 0.4 -0.5 +-0.4 0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0.882353 -0.470588 +0 0.882353 -0.470588 +0 0.882353 -0.470588 +0 0.882353 -0.470588 + +TEX:SIDE +POSITION: +0.32 0.32 -0.875 +0.32 -0.32 -0.875 +0.4 -0.4 -0.5 +0.4 0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.882353 0 -0.470588 +0.882353 0 -0.470588 +0.882353 0 -0.470588 +0.882353 0 -0.470588 + +TEX:SIDE +POSITION: +-0.32 -0.32 -0.875 +-0.32 0.32 -0.875 +-0.4 0.4 -0.5 +-0.4 -0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.882353 0 -0.470589 +-0.882353 0 -0.470589 +-0.882353 0 -0.470589 +-0.882353 0 -0.470589 +----------------north quads: +1 + +TEX:PRINT +POSITION: +-0.5 0.5 0.5 +-0.5 0.5 -0.5 +0.5 0.5 -0.5 +0.5 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +1 + +TEX:PRINT +POSITION: +0.5 -0.5 0.5 +0.5 0.5 0.5 +0.5 0.5 -0.5 +0.5 -0.5 -0.5 +UV COORDS: +0 0 +1 0 +1 1 +0 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +1 + +TEX:PRINT +POSITION: +0.5 -0.5 0.5 +0.5 -0.5 -0.5 +-0.5 -0.5 -0.5 +-0.5 -0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +1 + +TEX:PRINT +POSITION: +-0.5 -0.5 -0.5 +-0.5 0.5 -0.5 +-0.5 0.5 0.5 +-0.5 -0.5 0.5 +UV COORDS: +1 1 +0 1 +0 0 +1 0 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/1x1fU_1i_1o.blb b/bricks/blb/1x1fU_1i_1o.blb new file mode 100644 index 0000000..3e4c48d --- /dev/null +++ b/bricks/blb/1x1fU_1i_1o.blb @@ -0,0 +1,403 @@ +1 1 1 +SPECIAL + +b + +1 + +0 0 0 +1 1 1 +COVERAGE: +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +----------------top quads: +6 + +TEX:TOP +POSITION: +0.5 0.5 0.5 +0.5 -0.5 0.5 +-0.5 -0.5 0.5 +-0.5 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.32 -0.32 0.875 +0.32 -0.32 0.875 +0.4 -0.4 0.5 +-0.4 -0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -0.882353 0.470588 +0 -0.882353 0.470588 +0 -0.882353 0.470588 +0 -0.882353 0.470588 + +TEX:SIDE +POSITION: +-0.32 -0.32 0.875 +-0.32 0.32 0.875 +0.32 0.32 0.875 +0.32 -0.32 0.875 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.32 0.32 0.875 +-0.32 0.32 0.875 +-0.4 0.4 0.5 +0.4 0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0.882353 0.470588 +0 0.882353 0.470588 +0 0.882353 0.470588 +0 0.882353 0.470588 + +TEX:SIDE +POSITION: +-0.32 0.32 0.875 +-0.32 -0.32 0.875 +-0.4 -0.4 0.5 +-0.4 0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.882353 0 0.470588 +-0.882353 0 0.470588 +-0.882353 0 0.470588 +-0.882353 0 0.470588 + +TEX:SIDE +POSITION: +0.32 -0.32 0.875 +0.32 0.32 0.875 +0.4 0.4 0.5 +0.4 -0.4 0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.882353 0 0.470588 +0.882353 0 0.470588 +0.882353 0 0.470588 +0.882353 0 0.470588 +----------------bottom quads: +9 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -0.5 -0.5 +0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 0.5 -0.5 +-0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -0.5 -0.5 +0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 0.5 -0.5 +-0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.4 -0.4 -0.75 +-0.4 -0.4 -0.75 +-0.4 -0.4 -0.5 +0.4 -0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.4 -0.4 -0.75 +0.4 0.4 -0.75 +-0.4 0.4 -0.75 +-0.4 -0.4 -0.75 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.4 0.4 -0.75 +0.4 0.4 -0.75 +0.4 0.4 -0.5 +-0.4 0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.4 0.4 -0.75 +0.4 -0.4 -0.75 +0.4 -0.4 -0.5 +0.4 0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.4 -0.4 -0.75 +-0.4 0.4 -0.75 +-0.4 0.4 -0.5 +-0.4 -0.4 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 -0 +-1 0 -0 +-1 0 -0 +-1 0 -0 +----------------north quads: +1 + +TEX:PRINT +POSITION: +-0.5 0.5 0.5 +-0.5 0.5 -0.5 +0.5 0.5 -0.5 +0.5 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +1 + +TEX:PRINT +POSITION: +0.5 -0.5 0.5 +0.5 0.5 0.5 +0.5 0.5 -0.5 +0.5 -0.5 -0.5 +UV COORDS: +0 0 +1 0 +1 1 +0 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +1 + +TEX:PRINT +POSITION: +0.5 -0.5 0.5 +0.5 -0.5 -0.5 +-0.5 -0.5 -0.5 +-0.5 -0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +1 + +TEX:PRINT +POSITION: +-0.5 -0.5 -0.5 +-0.5 0.5 -0.5 +-0.5 0.5 0.5 +-0.5 -0.5 0.5 +UV COORDS: +1 1 +0 1 +0 0 +1 0 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/1x1f_1i_1o.blb b/bricks/blb/1x1f_1i_1o.blb new file mode 100644 index 0000000..bcf9494 --- /dev/null +++ b/bricks/blb/1x1f_1i_1o.blb @@ -0,0 +1,403 @@ +1 1 1 +SPECIAL + +b + +1 + +0 0 0 +1 1 1 +COVERAGE: +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +1 : 1 +----------------top quads: +1 + +TEX:PRINT +POSITION: +0.5 0.5 0.5 +0.5 -0.5 0.5 +-0.5 -0.5 0.5 +-0.5 0.5 0.5 +UV COORDS: +0 1 +0 0 +1 0 +1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -0.5 -0.5 +0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 0.5 -0.5 +-0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -0.5 -0.5 +0.5 0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 0.5 -0.5 +-0.5 -0.5 -0.5 +0 0 -0.5 +0 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +1 + +TEX:SIDE +POSITION: +-0.5 0.5 0.5 +-0.5 0.5 -0.5 +0.5 0.5 -0.5 +0.5 0.5 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +0.5 -0.5 0.5 +0.5 0.5 0.5 +0.5 0.5 -0.5 +0.5 -0.5 -0.5 +UV COORDS: +-0.0214844 -0.0859375 +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.75 -0.32 -0.24 +0.75 0.32 -0.24 +0.5 0.4 -0.3 +0.5 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.095561 0 -0.995424 +0.095561 0 -0.995424 +0.095561 0 -0.995424 +0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +0.75 -0.32 -0.24 +0.75 -0.32 0.24 +0.75 0.32 0.24 +0.75 0.32 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.75 0.32 0.24 +0.75 -0.32 0.24 +0.5 -0.4 0.3 +0.5 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.095561 0 0.995424 +0.095561 0 0.995424 +0.095561 0 0.995424 +0.095561 0 0.995424 + +TEX:SIDE +POSITION: +0.75 0.32 -0.24 +0.75 0.32 0.24 +0.5 0.4 0.3 +0.5 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.304776 0.952424 0 +0.304776 0.952424 0 +0.304776 0.952424 0 +0.304776 0.952424 0 + +TEX:SIDE +POSITION: +0.75 -0.32 0.24 +0.75 -0.32 -0.24 +0.5 -0.4 -0.3 +0.5 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.304776 -0.952424 0 +0.304776 -0.952424 0 +0.304776 -0.952424 0 +0.304776 -0.952424 0 +----------------south quads: +1 + +TEX:SIDE +POSITION: +0.5 -0.5 0.5 +0.5 -0.5 -0.5 +-0.5 -0.5 -0.5 +-0.5 -0.5 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +6 + +TEX:SIDE +POSITION: +-0.5 -0.5 -0.5 +-0.5 0.5 -0.5 +-0.5 0.5 0.5 +-0.5 -0.5 0.5 +UV COORDS: +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +1.02148 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.64 0.4 -0.3 +-0.64 -0.4 -0.3 +-0.5 -0.4 -0.3 +-0.5 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.64 0.4 -0.3 +-0.64 0.4 0.3 +-0.64 -0.4 0.3 +-0.64 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.64 -0.4 0.3 +-0.64 0.4 0.3 +-0.5 0.4 0.3 +-0.5 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.64 -0.4 -0.3 +-0.64 -0.4 0.3 +-0.5 -0.4 0.3 +-0.5 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.64 0.4 0.3 +-0.64 0.4 -0.3 +-0.5 0.4 -0.3 +-0.5 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 1 0 +-0 1 0 +-0 1 0 +-0 1 0 +----------------omni quads: +0 diff --git a/bricks/blb/1x2f_2i_1o.blb b/bricks/blb/1x2f_2i_1o.blb new file mode 100644 index 0000000..27f02bb --- /dev/null +++ b/bricks/blb/1x2f_2i_1o.blb @@ -0,0 +1,515 @@ +1 2 1 +SPECIAL + +b + +b + +1 + +0 0 0 +1 2 1 +COVERAGE: +1 : 2 +1 : 2 +1 : 1 +1 : 2 +1 : 1 +1 : 2 +----------------top quads: +1 + +TEX:PRINT +POSITION: +0.5 1 0.5 +0.5 -1 0.5 +-0.5 -1 0.5 +-0.5 1 0.5 +UV COORDS: +0 0 +1 0 +1 1 +0 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -1 -0.5 +0.5 -1 -0.5 +0 -0.5 -0.5 +0 -0.5 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 1 -0.5 +-0.5 1 -0.5 +0 0.5 -0.5 +0 0.5 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -1 -0.5 +0.5 1 -0.5 +0 0.5 -0.5 +0 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 1 -0.5 +-0.5 -1 -0.5 +0 -0.5 -0.5 +0 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +1 + +TEX:SIDE +POSITION: +-0.5 1 0.5 +-0.5 1 -0.5 +0.5 1 -0.5 +0.5 1 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +0.5 -1 0.5 +0.5 1 0.5 +0.5 1 -0.5 +0.5 -1 -0.5 +UV COORDS: +0 -0.0859375 +1 -0.0859375 +1 1.08594 +0 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.75 -0.82 -0.24 +0.75 -0.18 -0.24 +0.5 -0.1 -0.3 +0.5 -0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.095561 0 -0.995424 +0.095561 0 -0.995424 +0.095561 0 -0.995424 +0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +0.75 -0.82 -0.24 +0.75 -0.82 0.24 +0.75 -0.18 0.24 +0.75 -0.18 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.75 -0.18 0.24 +0.75 -0.82 0.24 +0.5 -0.9 0.3 +0.5 -0.1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.095561 0 0.995424 +0.095561 0 0.995424 +0.095561 0 0.995424 +0.095561 0 0.995424 + +TEX:SIDE +POSITION: +0.75 -0.18 -0.24 +0.75 -0.18 0.24 +0.5 -0.1 0.3 +0.5 -0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.304776 0.952424 0 +0.304776 0.952424 0 +0.304776 0.952424 0 +0.304776 0.952424 0 + +TEX:SIDE +POSITION: +0.75 -0.82 0.24 +0.75 -0.82 -0.24 +0.5 -0.9 -0.3 +0.5 -0.9 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.304776 -0.952424 0 +0.304776 -0.952424 0 +0.304776 -0.952424 0 +0.304776 -0.952424 0 +----------------south quads: +1 + +TEX:SIDE +POSITION: +0.5 -1 0.5 +0.5 -1 -0.5 +-0.5 -1 -0.5 +-0.5 -1 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +11 + +TEX:SIDE +POSITION: +-0.5 -1 -0.5 +-0.5 1 -0.5 +-0.5 1 0.5 +-0.5 -1 0.5 +UV COORDS: +1 1.08594 +0 1.08594 +0 -0.0859375 +1 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.64 0.9 -0.3 +-0.64 0.1 -0.3 +-0.5 0.1 -0.3 +-0.5 0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.64 0.9 -0.3 +-0.64 0.9 0.3 +-0.64 0.1 0.3 +-0.64 0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.64 0.1 0.3 +-0.64 0.9 0.3 +-0.5 0.9 0.3 +-0.5 0.1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.64 0.1 -0.3 +-0.64 0.1 0.3 +-0.5 0.1 0.3 +-0.5 0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.64 0.9 0.3 +-0.64 0.9 -0.3 +-0.5 0.9 -0.3 +-0.5 0.9 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 1 0 +-0 1 0 +-0 1 0 +-0 1 0 + +TEX:SIDE +POSITION: +-0.64 -0.1 -0.3 +-0.64 -0.9 -0.3 +-0.5 -0.9 -0.3 +-0.5 -0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.64 -0.1 -0.3 +-0.64 -0.1 0.3 +-0.64 -0.9 0.3 +-0.64 -0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.64 -0.9 0.3 +-0.64 -0.1 0.3 +-0.5 -0.1 0.3 +-0.5 -0.9 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.64 -0.9 -0.3 +-0.64 -0.9 0.3 +-0.5 -0.9 0.3 +-0.5 -0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.64 -0.1 0.3 +-0.64 -0.1 -0.3 +-0.5 -0.1 -0.3 +-0.5 -0.1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 1 0 +-0 1 0 +-0 1 0 +-0 1 0 +----------------omni quads: +0 diff --git a/bricks/blb/1x8f_8i_8o_p.blb b/bricks/blb/1x8f_8i_8o_p.blb new file mode 100644 index 0000000..74148be --- /dev/null +++ b/bricks/blb/1x8f_8i_8o_p.blb @@ -0,0 +1,2163 @@ +8 1 1 +SPECIAL + +bbbbbbbb + +1 + +0 0 0 +8 1 1 +COVERAGE: +1 : 8 +1 : 8 +1 : 8 +1 : 1 +1 : 8 +1 : 1 +----------------top quads: +1 + +TEX:PRINT +POSITION: +4 0.5 0.5 +4 -0.5 0.5 +-4 -0.5 0.5 +-4 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-4 -0.5 -0.5 +4 -0.5 -0.5 +3.5 0 -0.5 +-3.5 0 -0.5 +UV COORDS: +-0.5 0 +7.5 0 +7 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +4 0.5 -0.5 +-4 0.5 -0.5 +-3.5 0 -0.5 +3.5 0 -0.5 +UV COORDS: +-0.5 0 +7.5 0 +7 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +4 -0.5 -0.5 +4 0.5 -0.5 +3.5 0 -0.5 +3.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-4 0.5 -0.5 +-4 -0.5 -0.5 +-3.5 0 -0.5 +-3.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +41 + +TEX:SIDE +POSITION: +-4 0.5 0.5 +-4 0.5 -0.5 +4 0.5 -0.5 +4 0.5 0.5 +UV COORDS: +0.983887 -0.0859375 +0.983887 1.08594 +0.0161133 1.08594 +0.0161133 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-3.18 0.75 -0.24 +-3.82 0.75 -0.24 +-3.9 0.5 -0.3 +-3.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-3.18 0.75 -0.24 +-3.18 0.75 0.24 +-3.82 0.75 0.24 +-3.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-3.82 0.75 0.24 +-3.18 0.75 0.24 +-3.1 0.5 0.3 +-3.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-3.82 0.75 -0.24 +-3.82 0.75 0.24 +-3.9 0.5 0.3 +-3.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-3.18 0.75 0.24 +-3.18 0.75 -0.24 +-3.1 0.5 -0.3 +-3.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-2.18 0.75 -0.24 +-2.82 0.75 -0.24 +-2.9 0.5 -0.3 +-2.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-2.18 0.75 -0.24 +-2.18 0.75 0.24 +-2.82 0.75 0.24 +-2.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-2.82 0.75 0.24 +-2.18 0.75 0.24 +-2.1 0.5 0.3 +-2.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-2.82 0.75 -0.24 +-2.82 0.75 0.24 +-2.9 0.5 0.3 +-2.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-2.18 0.75 0.24 +-2.18 0.75 -0.24 +-2.1 0.5 -0.3 +-2.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-1.18 0.75 -0.24 +-1.82 0.75 -0.24 +-1.9 0.5 -0.3 +-1.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-1.18 0.75 -0.24 +-1.18 0.75 0.24 +-1.82 0.75 0.24 +-1.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-1.82 0.75 0.24 +-1.18 0.75 0.24 +-1.1 0.5 0.3 +-1.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-1.82 0.75 -0.24 +-1.82 0.75 0.24 +-1.9 0.5 0.3 +-1.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-1.18 0.75 0.24 +-1.18 0.75 -0.24 +-1.1 0.5 -0.3 +-1.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.82 0.75 -0.24 +-0.9 0.5 -0.3 +-0.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.18 0.75 0.24 +-0.82 0.75 0.24 +-0.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.82 0.75 0.24 +-0.18 0.75 0.24 +-0.1 0.5 0.3 +-0.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.82 0.75 -0.24 +-0.82 0.75 0.24 +-0.9 0.5 0.3 +-0.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 0.75 0.24 +-0.18 0.75 -0.24 +-0.1 0.5 -0.3 +-0.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 0.75 -0.24 +0.18 0.75 -0.24 +0.1 0.5 -0.3 +0.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +0.82 0.75 -0.24 +0.82 0.75 0.24 +0.18 0.75 0.24 +0.18 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.18 0.75 0.24 +0.82 0.75 0.24 +0.9 0.5 0.3 +0.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +0.18 0.75 -0.24 +0.18 0.75 0.24 +0.1 0.5 0.3 +0.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 0.75 0.24 +0.82 0.75 -0.24 +0.9 0.5 -0.3 +0.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 0.75 -0.24 +1.18 0.75 -0.24 +1.1 0.5 -0.3 +1.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +1.82 0.75 -0.24 +1.82 0.75 0.24 +1.18 0.75 0.24 +1.18 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +1.18 0.75 0.24 +1.82 0.75 0.24 +1.9 0.5 0.3 +1.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +1.18 0.75 -0.24 +1.18 0.75 0.24 +1.1 0.5 0.3 +1.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 0.75 0.24 +1.82 0.75 -0.24 +1.9 0.5 -0.3 +1.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 0.75 -0.24 +2.18 0.75 -0.24 +2.1 0.5 -0.3 +2.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +2.82 0.75 -0.24 +2.82 0.75 0.24 +2.18 0.75 0.24 +2.18 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +2.18 0.75 0.24 +2.82 0.75 0.24 +2.9 0.5 0.3 +2.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +2.18 0.75 -0.24 +2.18 0.75 0.24 +2.1 0.5 0.3 +2.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 0.75 0.24 +2.82 0.75 -0.24 +2.9 0.5 -0.3 +2.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 0.75 -0.24 +3.18 0.75 -0.24 +3.1 0.5 -0.3 +3.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +3.82 0.75 -0.24 +3.82 0.75 0.24 +3.18 0.75 0.24 +3.18 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +3.18 0.75 0.24 +3.82 0.75 0.24 +3.9 0.5 0.3 +3.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +3.18 0.75 -0.24 +3.18 0.75 0.24 +3.1 0.5 0.3 +3.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 0.75 0.24 +3.82 0.75 -0.24 +3.9 0.5 -0.3 +3.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +4 -0.5 0.5 +4 0.5 0.5 +4 0.5 -0.5 +4 -0.5 -0.5 +UV COORDS: +-0.0214844 -0.0859375 +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +4.14 -0.4 -0.3 +4.14 0.4 -0.3 +4 0.4 -0.3 +4 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +4.14 -0.4 -0.3 +4.14 -0.4 0.3 +4.14 0.4 0.3 +4.14 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +4.14 0.4 0.3 +4.14 -0.4 0.3 +4 -0.4 0.3 +4 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +4.14 0.4 -0.3 +4.14 0.4 0.3 +4 0.4 0.3 +4 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +4.14 -0.4 0.3 +4.14 -0.4 -0.3 +4 -0.4 -0.3 +4 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------south quads: +41 + +TEX:SIDE +POSITION: +4 -0.5 0.5 +4 -0.5 -0.5 +-4 -0.5 -0.5 +-4 -0.5 0.5 +UV COORDS: +0.983887 -0.0859375 +0.983887 1.08594 +0.0161133 1.08594 +0.0161133 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-3.9 -0.64 -0.3 +-3.1 -0.64 -0.3 +-3.1 -0.5 -0.3 +-3.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-3.9 -0.64 -0.3 +-3.9 -0.64 0.3 +-3.1 -0.64 0.3 +-3.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-3.1 -0.64 0.3 +-3.9 -0.64 0.3 +-3.9 -0.5 0.3 +-3.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-3.1 -0.64 -0.3 +-3.1 -0.64 0.3 +-3.1 -0.5 0.3 +-3.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-3.9 -0.64 0.3 +-3.9 -0.64 -0.3 +-3.9 -0.5 -0.3 +-3.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-2.9 -0.64 -0.3 +-2.1 -0.64 -0.3 +-2.1 -0.5 -0.3 +-2.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-2.9 -0.64 -0.3 +-2.9 -0.64 0.3 +-2.1 -0.64 0.3 +-2.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-2.1 -0.64 0.3 +-2.9 -0.64 0.3 +-2.9 -0.5 0.3 +-2.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-2.1 -0.64 -0.3 +-2.1 -0.64 0.3 +-2.1 -0.5 0.3 +-2.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-2.9 -0.64 0.3 +-2.9 -0.64 -0.3 +-2.9 -0.5 -0.3 +-2.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.9 -0.64 -0.3 +-1.1 -0.64 -0.3 +-1.1 -0.5 -0.3 +-1.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-1.9 -0.64 -0.3 +-1.9 -0.64 0.3 +-1.1 -0.64 0.3 +-1.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-1.1 -0.64 0.3 +-1.9 -0.64 0.3 +-1.9 -0.5 0.3 +-1.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.1 -0.64 -0.3 +-1.1 -0.64 0.3 +-1.1 -0.5 0.3 +-1.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-1.9 -0.64 0.3 +-1.9 -0.64 -0.3 +-1.9 -0.5 -0.3 +-1.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.1 -0.64 -0.3 +-0.1 -0.5 -0.3 +-0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.9 -0.64 0.3 +-0.1 -0.64 0.3 +-0.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 0.3 +-0.9 -0.64 0.3 +-0.9 -0.5 0.3 +-0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 -0.3 +-0.1 -0.64 0.3 +-0.1 -0.5 0.3 +-0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 0.3 +-0.9 -0.64 -0.3 +-0.9 -0.5 -0.3 +-0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.9 -0.64 -0.3 +0.9 -0.5 -0.3 +0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.1 -0.64 0.3 +0.9 -0.64 0.3 +0.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -0.64 0.3 +0.1 -0.64 0.3 +0.1 -0.5 0.3 +0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.9 -0.64 -0.3 +0.9 -0.64 0.3 +0.9 -0.5 0.3 +0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 0.3 +0.1 -0.64 -0.3 +0.1 -0.5 -0.3 +0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +1.1 -0.64 -0.3 +1.9 -0.64 -0.3 +1.9 -0.5 -0.3 +1.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +1.1 -0.64 -0.3 +1.1 -0.64 0.3 +1.9 -0.64 0.3 +1.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +1.9 -0.64 0.3 +1.1 -0.64 0.3 +1.1 -0.5 0.3 +1.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.9 -0.64 -0.3 +1.9 -0.64 0.3 +1.9 -0.5 0.3 +1.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +1.1 -0.64 0.3 +1.1 -0.64 -0.3 +1.1 -0.5 -0.3 +1.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +2.1 -0.64 -0.3 +2.9 -0.64 -0.3 +2.9 -0.5 -0.3 +2.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +2.1 -0.64 -0.3 +2.1 -0.64 0.3 +2.9 -0.64 0.3 +2.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +2.9 -0.64 0.3 +2.1 -0.64 0.3 +2.1 -0.5 0.3 +2.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +2.9 -0.64 -0.3 +2.9 -0.64 0.3 +2.9 -0.5 0.3 +2.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +2.1 -0.64 0.3 +2.1 -0.64 -0.3 +2.1 -0.5 -0.3 +2.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +3.1 -0.64 -0.3 +3.9 -0.64 -0.3 +3.9 -0.5 -0.3 +3.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +3.1 -0.64 -0.3 +3.1 -0.64 0.3 +3.9 -0.64 0.3 +3.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +3.9 -0.64 0.3 +3.1 -0.64 0.3 +3.1 -0.5 0.3 +3.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +3.9 -0.64 -0.3 +3.9 -0.64 0.3 +3.9 -0.5 0.3 +3.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +3.1 -0.64 0.3 +3.1 -0.64 -0.3 +3.1 -0.5 -0.3 +3.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +6 + +TEX:SIDE +POSITION: +-4 -0.5 -0.5 +-4 0.5 -0.5 +-4 0.5 0.5 +-4 -0.5 0.5 +UV COORDS: +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +1.02148 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-4.25 0.32 -0.24 +-4.25 -0.32 -0.24 +-4 -0.4 -0.3 +-4 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +-4.25 0.32 -0.24 +-4.25 0.32 0.24 +-4.25 -0.32 0.24 +-4.25 -0.32 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-4.25 -0.32 0.24 +-4.25 0.32 0.24 +-4 0.4 0.3 +-4 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 + +TEX:SIDE +POSITION: +-4.25 -0.32 -0.24 +-4.25 -0.32 0.24 +-4 -0.4 0.3 +-4 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 + +TEX:SIDE +POSITION: +-4.25 0.32 0.24 +-4.25 0.32 -0.24 +-4 0.4 -0.3 +-4 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +----------------omni quads: +0 diff --git a/bricks/blb/8bitAdder.blb b/bricks/blb/8bitAdder.blb new file mode 100644 index 0000000..d663025 --- /dev/null +++ b/bricks/blb/8bitAdder.blb @@ -0,0 +1,3062 @@ +16 2 1 +SPECIAL + +bbbbbbbbbbbbbbbb + +bbbbbbbbbbbbbbbb + +1 + +0 0 0 +16 2 1 +COVERAGE: +1 : 32 +1 : 32 +1 : 16 +1 : 2 +1 : 16 +1 : 2 +----------------top quads: +1 + +TEX:PRINT +POSITION: +8 1 0.5 +8 -1 0.5 +-8 -1 0.5 +-8 1 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +5 + +TEX:BOTTOMLOOP +POSITION: +7.5 -0.5 -0.5 +7.5 0.5 -0.5 +-7.5 0.5 -0.5 +-7.5 -0.5 -0.5 +UV COORDS: +0 0 +0 1 +15 1 +15 0 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-8 -1 -0.5 +8 -1 -0.5 +7.5 -0.5 -0.5 +-7.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +15.5 0 +15 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +8 1 -0.5 +-8 1 -0.5 +-7.5 0.5 -0.5 +7.5 0.5 -0.5 +UV COORDS: +-0.5 0 +15.5 0 +15 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +8 -1 -0.5 +8 1 -0.5 +7.5 0.5 -0.5 +7.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-8 1 -0.5 +-8 -1 -0.5 +-7.5 -0.5 -0.5 +-7.5 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +41 + +TEX:SIDE +POSITION: +-8 1 0.5 +-8 1 -0.5 +8 1 -0.5 +8 1 0.5 +UV COORDS: +0.981201 -0.0859375 +0.981201 1.08594 +0.0187988 1.08594 +0.0187988 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +7.82 1.25 -0.24 +7.18 1.25 -0.24 +7.1 1 -0.3 +7.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +7.82 1.25 -0.24 +7.82 1.25 0.24 +7.18 1.25 0.24 +7.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +7.18 1.25 0.24 +7.82 1.25 0.24 +7.9 1 0.3 +7.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +7.18 1.25 -0.24 +7.18 1.25 0.24 +7.1 1 0.3 +7.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +7.82 1.25 0.24 +7.82 1.25 -0.24 +7.9 1 -0.3 +7.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +6.82 1.25 -0.24 +6.18 1.25 -0.24 +6.1 1 -0.3 +6.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +6.82 1.25 -0.24 +6.82 1.25 0.24 +6.18 1.25 0.24 +6.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +6.18 1.25 0.24 +6.82 1.25 0.24 +6.9 1 0.3 +6.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +6.18 1.25 -0.24 +6.18 1.25 0.24 +6.1 1 0.3 +6.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +6.82 1.25 0.24 +6.82 1.25 -0.24 +6.9 1 -0.3 +6.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +5.82 1.25 -0.24 +5.18 1.25 -0.24 +5.1 1 -0.3 +5.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +5.82 1.25 -0.24 +5.82 1.25 0.24 +5.18 1.25 0.24 +5.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +5.18 1.25 0.24 +5.82 1.25 0.24 +5.9 1 0.3 +5.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +5.18 1.25 -0.24 +5.18 1.25 0.24 +5.1 1 0.3 +5.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +5.82 1.25 0.24 +5.82 1.25 -0.24 +5.9 1 -0.3 +5.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +4.82 1.25 -0.24 +4.18 1.25 -0.24 +4.1 1 -0.3 +4.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +4.82 1.25 -0.24 +4.82 1.25 0.24 +4.18 1.25 0.24 +4.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +4.18 1.25 0.24 +4.82 1.25 0.24 +4.9 1 0.3 +4.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +4.18 1.25 -0.24 +4.18 1.25 0.24 +4.1 1 0.3 +4.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +4.82 1.25 0.24 +4.82 1.25 -0.24 +4.9 1 -0.3 +4.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 1.25 -0.24 +3.18 1.25 -0.24 +3.1 1 -0.3 +3.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +3.82 1.25 -0.24 +3.82 1.25 0.24 +3.18 1.25 0.24 +3.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +3.18 1.25 0.24 +3.82 1.25 0.24 +3.9 1 0.3 +3.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +3.18 1.25 -0.24 +3.18 1.25 0.24 +3.1 1 0.3 +3.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 1.25 0.24 +3.82 1.25 -0.24 +3.9 1 -0.3 +3.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 1.25 -0.24 +2.18 1.25 -0.24 +2.1 1 -0.3 +2.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +2.82 1.25 -0.24 +2.82 1.25 0.24 +2.18 1.25 0.24 +2.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +2.18 1.25 0.24 +2.82 1.25 0.24 +2.9 1 0.3 +2.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +2.18 1.25 -0.24 +2.18 1.25 0.24 +2.1 1 0.3 +2.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 1.25 0.24 +2.82 1.25 -0.24 +2.9 1 -0.3 +2.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 1.25 -0.24 +1.18 1.25 -0.24 +1.1 1 -0.3 +1.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +1.82 1.25 -0.24 +1.82 1.25 0.24 +1.18 1.25 0.24 +1.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +1.18 1.25 0.24 +1.82 1.25 0.24 +1.9 1 0.3 +1.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +1.18 1.25 -0.24 +1.18 1.25 0.24 +1.1 1 0.3 +1.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 1.25 0.24 +1.82 1.25 -0.24 +1.9 1 -0.3 +1.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 1.25 -0.24 +0.18 1.25 -0.24 +0.1 1 -0.3 +0.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +0.82 1.25 -0.24 +0.82 1.25 0.24 +0.18 1.25 0.24 +0.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.18 1.25 0.24 +0.82 1.25 0.24 +0.9 1 0.3 +0.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +0.18 1.25 -0.24 +0.18 1.25 0.24 +0.1 1 0.3 +0.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 1.25 0.24 +0.82 1.25 -0.24 +0.9 1 -0.3 +0.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +8 -1 0.5 +8 1 0.5 +8 1 -0.5 +8 -1 -0.5 +UV COORDS: +0 -0.0859375 +1 -0.0859375 +1 1.08594 +0 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +8.14 -0.9 -0.3 +8.14 -0.1 -0.3 +8 -0.1 -0.3 +8 -0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +8.14 -0.9 -0.3 +8.14 -0.9 0.3 +8.14 -0.1 0.3 +8.14 -0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +8.14 -0.1 0.3 +8.14 -0.9 0.3 +8 -0.9 0.3 +8 -0.1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +8.14 -0.1 -0.3 +8.14 -0.1 0.3 +8 -0.1 0.3 +8 -0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +8.14 -0.9 0.3 +8.14 -0.9 -0.3 +8 -0.9 -0.3 +8 -0.9 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------south quads: +81 + +TEX:SIDE +POSITION: +8 -1 0.5 +8 -1 -0.5 +-8 -1 -0.5 +-8 -1 0.5 +UV COORDS: +0.981201 -0.0859375 +0.981201 1.08594 +0.0187988 1.08594 +0.0187988 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.9 -1.14 -0.3 +-0.1 -1.14 -0.3 +-0.1 -1 -0.3 +-0.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -1.14 -0.3 +-0.9 -1.14 0.3 +-0.1 -1.14 0.3 +-0.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -1.14 0.3 +-0.9 -1.14 0.3 +-0.9 -1 0.3 +-0.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -1.14 -0.3 +-0.1 -1.14 0.3 +-0.1 -1 0.3 +-0.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -1.14 0.3 +-0.9 -1.14 -0.3 +-0.9 -1 -0.3 +-0.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.9 -1.14 -0.3 +-1.1 -1.14 -0.3 +-1.1 -1 -0.3 +-1.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-1.9 -1.14 -0.3 +-1.9 -1.14 0.3 +-1.1 -1.14 0.3 +-1.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-1.1 -1.14 0.3 +-1.9 -1.14 0.3 +-1.9 -1 0.3 +-1.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.1 -1.14 -0.3 +-1.1 -1.14 0.3 +-1.1 -1 0.3 +-1.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-1.9 -1.14 0.3 +-1.9 -1.14 -0.3 +-1.9 -1 -0.3 +-1.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-2.9 -1.14 -0.3 +-2.1 -1.14 -0.3 +-2.1 -1 -0.3 +-2.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-2.9 -1.14 -0.3 +-2.9 -1.14 0.3 +-2.1 -1.14 0.3 +-2.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-2.1 -1.14 0.3 +-2.9 -1.14 0.3 +-2.9 -1 0.3 +-2.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-2.1 -1.14 -0.3 +-2.1 -1.14 0.3 +-2.1 -1 0.3 +-2.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-2.9 -1.14 0.3 +-2.9 -1.14 -0.3 +-2.9 -1 -0.3 +-2.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-3.9 -1.14 -0.3 +-3.1 -1.14 -0.3 +-3.1 -1 -0.3 +-3.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-3.9 -1.14 -0.3 +-3.9 -1.14 0.3 +-3.1 -1.14 0.3 +-3.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-3.1 -1.14 0.3 +-3.9 -1.14 0.3 +-3.9 -1 0.3 +-3.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-3.1 -1.14 -0.3 +-3.1 -1.14 0.3 +-3.1 -1 0.3 +-3.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-3.9 -1.14 0.3 +-3.9 -1.14 -0.3 +-3.9 -1 -0.3 +-3.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-4.9 -1.14 -0.3 +-4.1 -1.14 -0.3 +-4.1 -1 -0.3 +-4.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-4.9 -1.14 -0.3 +-4.9 -1.14 0.3 +-4.1 -1.14 0.3 +-4.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-4.1 -1.14 0.3 +-4.9 -1.14 0.3 +-4.9 -1 0.3 +-4.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-4.1 -1.14 -0.3 +-4.1 -1.14 0.3 +-4.1 -1 0.3 +-4.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-4.9 -1.14 0.3 +-4.9 -1.14 -0.3 +-4.9 -1 -0.3 +-4.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-5.9 -1.14 -0.3 +-5.1 -1.14 -0.3 +-5.1 -1 -0.3 +-5.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-5.9 -1.14 -0.3 +-5.9 -1.14 0.3 +-5.1 -1.14 0.3 +-5.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-5.1 -1.14 0.3 +-5.9 -1.14 0.3 +-5.9 -1 0.3 +-5.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-5.1 -1.14 -0.3 +-5.1 -1.14 0.3 +-5.1 -1 0.3 +-5.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-5.9 -1.14 0.3 +-5.9 -1.14 -0.3 +-5.9 -1 -0.3 +-5.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-6.9 -1.14 -0.3 +-6.1 -1.14 -0.3 +-6.1 -1 -0.3 +-6.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-6.9 -1.14 -0.3 +-6.9 -1.14 0.3 +-6.1 -1.14 0.3 +-6.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-6.1 -1.14 0.3 +-6.9 -1.14 0.3 +-6.9 -1 0.3 +-6.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-6.1 -1.14 -0.3 +-6.1 -1.14 0.3 +-6.1 -1 0.3 +-6.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-6.9 -1.14 0.3 +-6.9 -1.14 -0.3 +-6.9 -1 -0.3 +-6.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-7.9 -1.14 -0.3 +-7.1 -1.14 -0.3 +-7.1 -1 -0.3 +-7.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-7.9 -1.14 -0.3 +-7.9 -1.14 0.3 +-7.1 -1.14 0.3 +-7.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-7.1 -1.14 0.3 +-7.9 -1.14 0.3 +-7.9 -1 0.3 +-7.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-7.1 -1.14 -0.3 +-7.1 -1.14 0.3 +-7.1 -1 0.3 +-7.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-7.9 -1.14 0.3 +-7.9 -1.14 -0.3 +-7.9 -1 -0.3 +-7.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +7.1 -1.14 -0.3 +7.9 -1.14 -0.3 +7.9 -1 -0.3 +7.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +7.1 -1.14 -0.3 +7.1 -1.14 0.3 +7.9 -1.14 0.3 +7.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +7.9 -1.14 0.3 +7.1 -1.14 0.3 +7.1 -1 0.3 +7.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +7.9 -1.14 -0.3 +7.9 -1.14 0.3 +7.9 -1 0.3 +7.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +7.1 -1.14 0.3 +7.1 -1.14 -0.3 +7.1 -1 -0.3 +7.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +6.1 -1.14 -0.3 +6.9 -1.14 -0.3 +6.9 -1 -0.3 +6.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +6.1 -1.14 -0.3 +6.1 -1.14 0.3 +6.9 -1.14 0.3 +6.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +6.9 -1.14 0.3 +6.1 -1.14 0.3 +6.1 -1 0.3 +6.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +6.9 -1.14 -0.3 +6.9 -1.14 0.3 +6.9 -1 0.3 +6.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +6.1 -1.14 0.3 +6.1 -1.14 -0.3 +6.1 -1 -0.3 +6.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +5.1 -1.14 -0.3 +5.9 -1.14 -0.3 +5.9 -1 -0.3 +5.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +5.1 -1.14 -0.3 +5.1 -1.14 0.3 +5.9 -1.14 0.3 +5.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +5.9 -1.14 0.3 +5.1 -1.14 0.3 +5.1 -1 0.3 +5.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +5.9 -1.14 -0.3 +5.9 -1.14 0.3 +5.9 -1 0.3 +5.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +5.1 -1.14 0.3 +5.1 -1.14 -0.3 +5.1 -1 -0.3 +5.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +4.1 -1.14 -0.3 +4.9 -1.14 -0.3 +4.9 -1 -0.3 +4.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +4.1 -1.14 -0.3 +4.1 -1.14 0.3 +4.9 -1.14 0.3 +4.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +4.9 -1.14 0.3 +4.1 -1.14 0.3 +4.1 -1 0.3 +4.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +4.9 -1.14 -0.3 +4.9 -1.14 0.3 +4.9 -1 0.3 +4.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +4.1 -1.14 0.3 +4.1 -1.14 -0.3 +4.1 -1 -0.3 +4.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +3.1 -1.14 -0.3 +3.9 -1.14 -0.3 +3.9 -1 -0.3 +3.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +3.1 -1.14 -0.3 +3.1 -1.14 0.3 +3.9 -1.14 0.3 +3.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +3.9 -1.14 0.3 +3.1 -1.14 0.3 +3.1 -1 0.3 +3.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +3.9 -1.14 -0.3 +3.9 -1.14 0.3 +3.9 -1 0.3 +3.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +3.1 -1.14 0.3 +3.1 -1.14 -0.3 +3.1 -1 -0.3 +3.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +2.1 -1.14 -0.3 +2.9 -1.14 -0.3 +2.9 -1 -0.3 +2.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +2.1 -1.14 -0.3 +2.1 -1.14 0.3 +2.9 -1.14 0.3 +2.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +2.9 -1.14 0.3 +2.1 -1.14 0.3 +2.1 -1 0.3 +2.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +2.9 -1.14 -0.3 +2.9 -1.14 0.3 +2.9 -1 0.3 +2.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +2.1 -1.14 0.3 +2.1 -1.14 -0.3 +2.1 -1 -0.3 +2.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +1.1 -1.14 -0.3 +1.9 -1.14 -0.3 +1.9 -1 -0.3 +1.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +1.1 -1.14 -0.3 +1.1 -1.14 0.3 +1.9 -1.14 0.3 +1.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +1.9 -1.14 0.3 +1.1 -1.14 0.3 +1.1 -1 0.3 +1.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.9 -1.14 -0.3 +1.9 -1.14 0.3 +1.9 -1 0.3 +1.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +1.1 -1.14 0.3 +1.1 -1.14 -0.3 +1.1 -1 -0.3 +1.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.1 -1.14 -0.3 +0.9 -1.14 -0.3 +0.9 -1 -0.3 +0.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -1.14 -0.3 +0.1 -1.14 0.3 +0.9 -1.14 0.3 +0.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -1.14 0.3 +0.1 -1.14 0.3 +0.1 -1 0.3 +0.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.9 -1.14 -0.3 +0.9 -1.14 0.3 +0.9 -1 0.3 +0.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -1.14 0.3 +0.1 -1.14 -0.3 +0.1 -1 -0.3 +0.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +6 + +TEX:SIDE +POSITION: +-8 -1 -0.5 +-8 1 -0.5 +-8 1 0.5 +-8 -1 0.5 +UV COORDS: +1 1.08594 +0 1.08594 +0 -0.0859375 +1 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-8.25 -0.18 -0.24 +-8.25 -0.82 -0.24 +-8 -0.9 -0.3 +-8 -0.1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +-8.25 -0.18 -0.24 +-8.25 -0.18 0.24 +-8.25 -0.82 0.24 +-8.25 -0.82 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-8.25 -0.82 0.24 +-8.25 -0.18 0.24 +-8 -0.1 0.3 +-8 -0.9 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 + +TEX:SIDE +POSITION: +-8.25 -0.82 -0.24 +-8.25 -0.82 0.24 +-8 -0.9 0.3 +-8 -0.9 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 + +TEX:SIDE +POSITION: +-8.25 -0.18 0.24 +-8.25 -0.18 -0.24 +-8 -0.1 -0.3 +-8 -0.1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +----------------omni quads: +0 diff --git a/bricks/blb/8bitMultiplier.blb b/bricks/blb/8bitMultiplier.blb new file mode 100644 index 0000000..b92c759 --- /dev/null +++ b/bricks/blb/8bitMultiplier.blb @@ -0,0 +1,3722 @@ +16 2 1 +SPECIAL + +bbbbbbbbbbbbbbbb + +bbbbbbbbbbbbbbbb + +1 + +0 0 0 +16 2 1 +COVERAGE: +1 : 32 +1 : 32 +1 : 16 +1 : 2 +1 : 16 +1 : 2 +----------------top quads: +1 + +TEX:PRINT +POSITION: +8 1 0.5 +8 -1 0.5 +-8 -1 0.5 +-8 1 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +5 + +TEX:BOTTOMLOOP +POSITION: +7.5 -0.5 -0.5 +7.5 0.5 -0.5 +-7.5 0.5 -0.5 +-7.5 -0.5 -0.5 +UV COORDS: +0 0 +0 1 +15 1 +15 0 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-8 -1 -0.5 +8 -1 -0.5 +7.5 -0.5 -0.5 +-7.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +15.5 0 +15 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +8 1 -0.5 +-8 1 -0.5 +-7.5 0.5 -0.5 +7.5 0.5 -0.5 +UV COORDS: +-0.5 0 +15.5 0 +15 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +8 -1 -0.5 +8 1 -0.5 +7.5 0.5 -0.5 +7.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-8 1 -0.5 +-8 -1 -0.5 +-7.5 -0.5 -0.5 +-7.5 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +81 + +TEX:SIDE +POSITION: +-8 1 0.5 +-8 1 -0.5 +8 1 -0.5 +8 1 0.5 +UV COORDS: +0.981201 -0.0859375 +0.981201 1.08594 +0.0187988 1.08594 +0.0187988 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +7.82 1.25 -0.24 +7.18 1.25 -0.24 +7.1 1 -0.3 +7.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +7.82 1.25 -0.24 +7.82 1.25 0.24 +7.18 1.25 0.24 +7.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +7.18 1.25 0.24 +7.82 1.25 0.24 +7.9 1 0.3 +7.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +7.18 1.25 -0.24 +7.18 1.25 0.24 +7.1 1 0.3 +7.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +7.82 1.25 0.24 +7.82 1.25 -0.24 +7.9 1 -0.3 +7.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +6.82 1.25 -0.24 +6.18 1.25 -0.24 +6.1 1 -0.3 +6.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +6.82 1.25 -0.24 +6.82 1.25 0.24 +6.18 1.25 0.24 +6.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +6.18 1.25 0.24 +6.82 1.25 0.24 +6.9 1 0.3 +6.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +6.18 1.25 -0.24 +6.18 1.25 0.24 +6.1 1 0.3 +6.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +6.82 1.25 0.24 +6.82 1.25 -0.24 +6.9 1 -0.3 +6.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +5.82 1.25 -0.24 +5.18 1.25 -0.24 +5.1 1 -0.3 +5.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +5.82 1.25 -0.24 +5.82 1.25 0.24 +5.18 1.25 0.24 +5.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +5.18 1.25 0.24 +5.82 1.25 0.24 +5.9 1 0.3 +5.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +5.18 1.25 -0.24 +5.18 1.25 0.24 +5.1 1 0.3 +5.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +5.82 1.25 0.24 +5.82 1.25 -0.24 +5.9 1 -0.3 +5.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +4.82 1.25 -0.24 +4.18 1.25 -0.24 +4.1 1 -0.3 +4.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +4.82 1.25 -0.24 +4.82 1.25 0.24 +4.18 1.25 0.24 +4.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +4.18 1.25 0.24 +4.82 1.25 0.24 +4.9 1 0.3 +4.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +4.18 1.25 -0.24 +4.18 1.25 0.24 +4.1 1 0.3 +4.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +4.82 1.25 0.24 +4.82 1.25 -0.24 +4.9 1 -0.3 +4.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 1.25 -0.24 +3.18 1.25 -0.24 +3.1 1 -0.3 +3.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +3.82 1.25 -0.24 +3.82 1.25 0.24 +3.18 1.25 0.24 +3.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +3.18 1.25 0.24 +3.82 1.25 0.24 +3.9 1 0.3 +3.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +3.18 1.25 -0.24 +3.18 1.25 0.24 +3.1 1 0.3 +3.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +3.82 1.25 0.24 +3.82 1.25 -0.24 +3.9 1 -0.3 +3.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 1.25 -0.24 +2.18 1.25 -0.24 +2.1 1 -0.3 +2.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +2.82 1.25 -0.24 +2.82 1.25 0.24 +2.18 1.25 0.24 +2.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +2.18 1.25 0.24 +2.82 1.25 0.24 +2.9 1 0.3 +2.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +2.18 1.25 -0.24 +2.18 1.25 0.24 +2.1 1 0.3 +2.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +2.82 1.25 0.24 +2.82 1.25 -0.24 +2.9 1 -0.3 +2.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 1.25 -0.24 +1.18 1.25 -0.24 +1.1 1 -0.3 +1.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +1.82 1.25 -0.24 +1.82 1.25 0.24 +1.18 1.25 0.24 +1.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +1.18 1.25 0.24 +1.82 1.25 0.24 +1.9 1 0.3 +1.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +1.18 1.25 -0.24 +1.18 1.25 0.24 +1.1 1 0.3 +1.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +1.82 1.25 0.24 +1.82 1.25 -0.24 +1.9 1 -0.3 +1.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 1.25 -0.24 +0.18 1.25 -0.24 +0.1 1 -0.3 +0.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +0.82 1.25 -0.24 +0.82 1.25 0.24 +0.18 1.25 0.24 +0.18 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.18 1.25 0.24 +0.82 1.25 0.24 +0.9 1 0.3 +0.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +0.18 1.25 -0.24 +0.18 1.25 0.24 +0.1 1 0.3 +0.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.82 1.25 0.24 +0.82 1.25 -0.24 +0.9 1 -0.3 +0.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 1.25 -0.24 +-0.82 1.25 -0.24 +-0.9 1 -0.3 +-0.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-0.18 1.25 -0.24 +-0.18 1.25 0.24 +-0.82 1.25 0.24 +-0.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.82 1.25 0.24 +-0.18 1.25 0.24 +-0.1 1 0.3 +-0.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.82 1.25 -0.24 +-0.82 1.25 0.24 +-0.9 1 0.3 +-0.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 1.25 0.24 +-0.18 1.25 -0.24 +-0.1 1 -0.3 +-0.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-1.18 1.25 -0.24 +-1.82 1.25 -0.24 +-1.9 1 -0.3 +-1.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-1.18 1.25 -0.24 +-1.18 1.25 0.24 +-1.82 1.25 0.24 +-1.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-1.82 1.25 0.24 +-1.18 1.25 0.24 +-1.1 1 0.3 +-1.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-1.82 1.25 -0.24 +-1.82 1.25 0.24 +-1.9 1 0.3 +-1.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-1.18 1.25 0.24 +-1.18 1.25 -0.24 +-1.1 1 -0.3 +-1.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-2.18 1.25 -0.24 +-2.82 1.25 -0.24 +-2.9 1 -0.3 +-2.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-2.18 1.25 -0.24 +-2.18 1.25 0.24 +-2.82 1.25 0.24 +-2.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-2.82 1.25 0.24 +-2.18 1.25 0.24 +-2.1 1 0.3 +-2.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-2.82 1.25 -0.24 +-2.82 1.25 0.24 +-2.9 1 0.3 +-2.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-2.18 1.25 0.24 +-2.18 1.25 -0.24 +-2.1 1 -0.3 +-2.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-3.18 1.25 -0.24 +-3.82 1.25 -0.24 +-3.9 1 -0.3 +-3.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-3.18 1.25 -0.24 +-3.18 1.25 0.24 +-3.82 1.25 0.24 +-3.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-3.82 1.25 0.24 +-3.18 1.25 0.24 +-3.1 1 0.3 +-3.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-3.82 1.25 -0.24 +-3.82 1.25 0.24 +-3.9 1 0.3 +-3.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-3.18 1.25 0.24 +-3.18 1.25 -0.24 +-3.1 1 -0.3 +-3.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-4.18 1.25 -0.24 +-4.82 1.25 -0.24 +-4.9 1 -0.3 +-4.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-4.18 1.25 -0.24 +-4.18 1.25 0.24 +-4.82 1.25 0.24 +-4.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-4.82 1.25 0.24 +-4.18 1.25 0.24 +-4.1 1 0.3 +-4.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-4.82 1.25 -0.24 +-4.82 1.25 0.24 +-4.9 1 0.3 +-4.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-4.18 1.25 0.24 +-4.18 1.25 -0.24 +-4.1 1 -0.3 +-4.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-5.18 1.25 -0.24 +-5.82 1.25 -0.24 +-5.9 1 -0.3 +-5.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-5.18 1.25 -0.24 +-5.18 1.25 0.24 +-5.82 1.25 0.24 +-5.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-5.82 1.25 0.24 +-5.18 1.25 0.24 +-5.1 1 0.3 +-5.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-5.82 1.25 -0.24 +-5.82 1.25 0.24 +-5.9 1 0.3 +-5.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-5.18 1.25 0.24 +-5.18 1.25 -0.24 +-5.1 1 -0.3 +-5.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-6.18 1.25 -0.24 +-6.82 1.25 -0.24 +-6.9 1 -0.3 +-6.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-6.18 1.25 -0.24 +-6.18 1.25 0.24 +-6.82 1.25 0.24 +-6.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-6.82 1.25 0.24 +-6.18 1.25 0.24 +-6.1 1 0.3 +-6.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-6.82 1.25 -0.24 +-6.82 1.25 0.24 +-6.9 1 0.3 +-6.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-6.18 1.25 0.24 +-6.18 1.25 -0.24 +-6.1 1 -0.3 +-6.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-7.18 1.25 -0.24 +-7.82 1.25 -0.24 +-7.9 1 -0.3 +-7.1 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-7.18 1.25 -0.24 +-7.18 1.25 0.24 +-7.82 1.25 0.24 +-7.82 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-7.82 1.25 0.24 +-7.18 1.25 0.24 +-7.1 1 0.3 +-7.9 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-7.82 1.25 -0.24 +-7.82 1.25 0.24 +-7.9 1 0.3 +-7.9 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-7.18 1.25 0.24 +-7.18 1.25 -0.24 +-7.1 1 -0.3 +-7.1 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +8 -1 0.5 +8 1 0.5 +8 1 -0.5 +8 -1 -0.5 +UV COORDS: +0 -0.0859375 +1 -0.0859375 +1 1.08594 +0 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +81 + +TEX:SIDE +POSITION: +8 -1 0.5 +8 -1 -0.5 +-8 -1 -0.5 +-8 -1 0.5 +UV COORDS: +0.981201 -0.0859375 +0.981201 1.08594 +0.0187988 1.08594 +0.0187988 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.9 -1.14 -0.3 +-0.1 -1.14 -0.3 +-0.1 -1 -0.3 +-0.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -1.14 -0.3 +-0.9 -1.14 0.3 +-0.1 -1.14 0.3 +-0.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -1.14 0.3 +-0.9 -1.14 0.3 +-0.9 -1 0.3 +-0.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -1.14 -0.3 +-0.1 -1.14 0.3 +-0.1 -1 0.3 +-0.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -1.14 0.3 +-0.9 -1.14 -0.3 +-0.9 -1 -0.3 +-0.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.9 -1.14 -0.3 +-1.1 -1.14 -0.3 +-1.1 -1 -0.3 +-1.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-1.9 -1.14 -0.3 +-1.9 -1.14 0.3 +-1.1 -1.14 0.3 +-1.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-1.1 -1.14 0.3 +-1.9 -1.14 0.3 +-1.9 -1 0.3 +-1.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.1 -1.14 -0.3 +-1.1 -1.14 0.3 +-1.1 -1 0.3 +-1.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-1.9 -1.14 0.3 +-1.9 -1.14 -0.3 +-1.9 -1 -0.3 +-1.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-2.9 -1.14 -0.3 +-2.1 -1.14 -0.3 +-2.1 -1 -0.3 +-2.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-2.9 -1.14 -0.3 +-2.9 -1.14 0.3 +-2.1 -1.14 0.3 +-2.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-2.1 -1.14 0.3 +-2.9 -1.14 0.3 +-2.9 -1 0.3 +-2.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-2.1 -1.14 -0.3 +-2.1 -1.14 0.3 +-2.1 -1 0.3 +-2.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-2.9 -1.14 0.3 +-2.9 -1.14 -0.3 +-2.9 -1 -0.3 +-2.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-3.9 -1.14 -0.3 +-3.1 -1.14 -0.3 +-3.1 -1 -0.3 +-3.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-3.9 -1.14 -0.3 +-3.9 -1.14 0.3 +-3.1 -1.14 0.3 +-3.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-3.1 -1.14 0.3 +-3.9 -1.14 0.3 +-3.9 -1 0.3 +-3.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-3.1 -1.14 -0.3 +-3.1 -1.14 0.3 +-3.1 -1 0.3 +-3.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-3.9 -1.14 0.3 +-3.9 -1.14 -0.3 +-3.9 -1 -0.3 +-3.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-4.9 -1.14 -0.3 +-4.1 -1.14 -0.3 +-4.1 -1 -0.3 +-4.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-4.9 -1.14 -0.3 +-4.9 -1.14 0.3 +-4.1 -1.14 0.3 +-4.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-4.1 -1.14 0.3 +-4.9 -1.14 0.3 +-4.9 -1 0.3 +-4.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-4.1 -1.14 -0.3 +-4.1 -1.14 0.3 +-4.1 -1 0.3 +-4.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-4.9 -1.14 0.3 +-4.9 -1.14 -0.3 +-4.9 -1 -0.3 +-4.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-5.9 -1.14 -0.3 +-5.1 -1.14 -0.3 +-5.1 -1 -0.3 +-5.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-5.9 -1.14 -0.3 +-5.9 -1.14 0.3 +-5.1 -1.14 0.3 +-5.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-5.1 -1.14 0.3 +-5.9 -1.14 0.3 +-5.9 -1 0.3 +-5.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-5.1 -1.14 -0.3 +-5.1 -1.14 0.3 +-5.1 -1 0.3 +-5.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-5.9 -1.14 0.3 +-5.9 -1.14 -0.3 +-5.9 -1 -0.3 +-5.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-6.9 -1.14 -0.3 +-6.1 -1.14 -0.3 +-6.1 -1 -0.3 +-6.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-6.9 -1.14 -0.3 +-6.9 -1.14 0.3 +-6.1 -1.14 0.3 +-6.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-6.1 -1.14 0.3 +-6.9 -1.14 0.3 +-6.9 -1 0.3 +-6.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-6.1 -1.14 -0.3 +-6.1 -1.14 0.3 +-6.1 -1 0.3 +-6.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-6.9 -1.14 0.3 +-6.9 -1.14 -0.3 +-6.9 -1 -0.3 +-6.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-7.9 -1.14 -0.3 +-7.1 -1.14 -0.3 +-7.1 -1 -0.3 +-7.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-7.9 -1.14 -0.3 +-7.9 -1.14 0.3 +-7.1 -1.14 0.3 +-7.1 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-7.1 -1.14 0.3 +-7.9 -1.14 0.3 +-7.9 -1 0.3 +-7.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-7.1 -1.14 -0.3 +-7.1 -1.14 0.3 +-7.1 -1 0.3 +-7.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-7.9 -1.14 0.3 +-7.9 -1.14 -0.3 +-7.9 -1 -0.3 +-7.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +7.1 -1.14 -0.3 +7.9 -1.14 -0.3 +7.9 -1 -0.3 +7.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +7.1 -1.14 -0.3 +7.1 -1.14 0.3 +7.9 -1.14 0.3 +7.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +7.9 -1.14 0.3 +7.1 -1.14 0.3 +7.1 -1 0.3 +7.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +7.9 -1.14 -0.3 +7.9 -1.14 0.3 +7.9 -1 0.3 +7.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +7.1 -1.14 0.3 +7.1 -1.14 -0.3 +7.1 -1 -0.3 +7.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +6.1 -1.14 -0.3 +6.9 -1.14 -0.3 +6.9 -1 -0.3 +6.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +6.1 -1.14 -0.3 +6.1 -1.14 0.3 +6.9 -1.14 0.3 +6.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +6.9 -1.14 0.3 +6.1 -1.14 0.3 +6.1 -1 0.3 +6.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +6.9 -1.14 -0.3 +6.9 -1.14 0.3 +6.9 -1 0.3 +6.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +6.1 -1.14 0.3 +6.1 -1.14 -0.3 +6.1 -1 -0.3 +6.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +5.1 -1.14 -0.3 +5.9 -1.14 -0.3 +5.9 -1 -0.3 +5.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +5.1 -1.14 -0.3 +5.1 -1.14 0.3 +5.9 -1.14 0.3 +5.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +5.9 -1.14 0.3 +5.1 -1.14 0.3 +5.1 -1 0.3 +5.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +5.9 -1.14 -0.3 +5.9 -1.14 0.3 +5.9 -1 0.3 +5.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +5.1 -1.14 0.3 +5.1 -1.14 -0.3 +5.1 -1 -0.3 +5.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +4.1 -1.14 -0.3 +4.9 -1.14 -0.3 +4.9 -1 -0.3 +4.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +4.1 -1.14 -0.3 +4.1 -1.14 0.3 +4.9 -1.14 0.3 +4.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +4.9 -1.14 0.3 +4.1 -1.14 0.3 +4.1 -1 0.3 +4.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +4.9 -1.14 -0.3 +4.9 -1.14 0.3 +4.9 -1 0.3 +4.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +4.1 -1.14 0.3 +4.1 -1.14 -0.3 +4.1 -1 -0.3 +4.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +3.1 -1.14 -0.3 +3.9 -1.14 -0.3 +3.9 -1 -0.3 +3.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +3.1 -1.14 -0.3 +3.1 -1.14 0.3 +3.9 -1.14 0.3 +3.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +3.9 -1.14 0.3 +3.1 -1.14 0.3 +3.1 -1 0.3 +3.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +3.9 -1.14 -0.3 +3.9 -1.14 0.3 +3.9 -1 0.3 +3.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +3.1 -1.14 0.3 +3.1 -1.14 -0.3 +3.1 -1 -0.3 +3.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +2.1 -1.14 -0.3 +2.9 -1.14 -0.3 +2.9 -1 -0.3 +2.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +2.1 -1.14 -0.3 +2.1 -1.14 0.3 +2.9 -1.14 0.3 +2.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +2.9 -1.14 0.3 +2.1 -1.14 0.3 +2.1 -1 0.3 +2.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +2.9 -1.14 -0.3 +2.9 -1.14 0.3 +2.9 -1 0.3 +2.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +2.1 -1.14 0.3 +2.1 -1.14 -0.3 +2.1 -1 -0.3 +2.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +1.1 -1.14 -0.3 +1.9 -1.14 -0.3 +1.9 -1 -0.3 +1.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +1.1 -1.14 -0.3 +1.1 -1.14 0.3 +1.9 -1.14 0.3 +1.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +1.9 -1.14 0.3 +1.1 -1.14 0.3 +1.1 -1 0.3 +1.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.9 -1.14 -0.3 +1.9 -1.14 0.3 +1.9 -1 0.3 +1.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +1.1 -1.14 0.3 +1.1 -1.14 -0.3 +1.1 -1 -0.3 +1.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.1 -1.14 -0.3 +0.9 -1.14 -0.3 +0.9 -1 -0.3 +0.1 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -1.14 -0.3 +0.1 -1.14 0.3 +0.9 -1.14 0.3 +0.9 -1.14 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -1.14 0.3 +0.1 -1.14 0.3 +0.1 -1 0.3 +0.9 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.9 -1.14 -0.3 +0.9 -1.14 0.3 +0.9 -1 0.3 +0.9 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -1.14 0.3 +0.1 -1.14 -0.3 +0.1 -1 -0.3 +0.1 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-8 -1 -0.5 +-8 1 -0.5 +-8 1 0.5 +-8 -1 0.5 +UV COORDS: +1 1.08594 +0 1.08594 +0 -0.0859375 +1 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/DFlipflopGridMemory2.blb b/bricks/blb/DFlipflopGridMemory2.blb new file mode 100644 index 0000000..f595305 --- /dev/null +++ b/bricks/blb/DFlipflopGridMemory2.blb @@ -0,0 +1,847 @@ +1 1 5 +SPECIAL + +u +X +X +X +d + +1 + +0 0 0 +1 1 5 +COVERAGE: +1 : 1 +1 : 1 +1 : 5 +1 : 5 +1 : 5 +1 : 5 +----------------top quads: +6 + +TEX:PRINT +POSITION: +0.5 0.5 2.5 +0.5 -0.5 2.5 +-0.5 -0.5 2.5 +-0.5 0.5 2.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.32 -0.32 2.87501 +0.32 -0.32 2.87501 +0.4 -0.4 2.50001 +-0.4 -0.4 2.50001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -0.882353 0.470588 +0 -0.882353 0.470588 +0 -0.882353 0.470588 +0 -0.882353 0.470588 + +TEX:SIDE +POSITION: +-0.32 -0.32 2.87501 +-0.32 0.32 2.87501 +0.32 0.32 2.87501 +0.32 -0.32 2.87501 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.32 0.32 2.87501 +-0.32 0.32 2.87501 +-0.4 0.4 2.50001 +0.4 0.4 2.50001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0.882353 0.470588 +0 0.882353 0.470588 +0 0.882353 0.470588 +0 0.882353 0.470588 + +TEX:SIDE +POSITION: +-0.32 0.32 2.87501 +-0.32 -0.32 2.87501 +-0.4 -0.4 2.50001 +-0.4 0.4 2.50001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.882353 0 0.470588 +-0.882353 0 0.470588 +-0.882353 0 0.470588 +-0.882353 0 0.470588 + +TEX:SIDE +POSITION: +0.32 -0.32 2.87501 +0.32 0.32 2.87501 +0.4 0.4 2.50001 +0.4 -0.4 2.50001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.882353 0 0.470588 +0.882353 0 0.470588 +0.882353 0 0.470588 +0.882353 0 0.470588 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -0.5 -2.5 +0.5 -0.5 -2.5 +0 0 -2.5 +0 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 0.5 -2.5 +-0.5 0.5 -2.5 +0 0 -2.5 +0 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -0.5 -2.5 +0.5 0.5 -2.5 +0 0 -2.5 +0 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 0.5 -2.5 +-0.5 -0.5 -2.5 +0 0 -2.5 +0 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +21 + +TEX:SIDE +POSITION: +-0.5 0.5 2.5 +-0.5 0.5 -2.5 +0.5 0.5 -2.5 +0.5 0.5 2.5 +UV COORDS: +1.02148 0 +1.02148 1 +-0.0214844 1 +-0.0214844 0 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.32 0.75 1.76001 +-0.32 0.75 1.76001 +-0.4 0.5 1.70001 +0.4 0.5 1.70001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +0.32 0.75 1.76001 +0.32 0.75 2.24001 +-0.32 0.75 2.24001 +-0.32 0.75 1.76001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.32 0.75 2.24001 +0.32 0.75 2.24001 +0.4 0.5 2.30001 +-0.4 0.5 2.30001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.32 0.75 1.76001 +-0.32 0.75 2.24001 +-0.4 0.5 2.30001 +-0.4 0.5 1.70001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.32 0.75 2.24001 +0.32 0.75 1.76001 +0.4 0.5 1.70001 +0.4 0.5 2.30001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.4 0.64 0.699985 +-0.4 0.64 0.699985 +-0.4 0.5 0.699985 +0.4 0.5 0.699985 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.4 0.64 0.699985 +0.4 0.64 1.29998 +-0.4 0.64 1.29998 +-0.4 0.64 0.699985 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.4 0.64 1.29998 +0.4 0.64 1.29998 +0.4 0.5 1.29998 +-0.4 0.5 1.29998 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.4 0.64 0.699985 +-0.4 0.64 1.29998 +-0.4 0.5 1.29998 +-0.4 0.5 0.699985 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.4 0.64 1.29998 +0.4 0.64 0.699985 +0.4 0.5 0.699985 +0.4 0.5 1.29998 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.4 0.64 -2.30001 +-0.4 0.64 -2.30001 +-0.4 0.5 -2.30001 +0.4 0.5 -2.30001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.4 0.64 -2.30001 +0.4 0.64 -1.70001 +-0.4 0.64 -1.70001 +-0.4 0.64 -2.30001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.4 0.64 -1.70001 +0.4 0.64 -1.70001 +0.4 0.5 -1.70001 +-0.4 0.5 -1.70001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.4 0.64 -2.30001 +-0.4 0.64 -1.70001 +-0.4 0.5 -1.70001 +-0.4 0.5 -2.30001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.4 0.64 -1.70001 +0.4 0.64 -2.30001 +0.4 0.5 -2.30001 +0.4 0.5 -1.70001 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.4 0.64 -1.29998 +-0.4 0.64 -1.29998 +-0.4 0.5 -1.29998 +0.4 0.5 -1.29998 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.4 0.64 -1.29998 +0.4 0.64 -0.699985 +-0.4 0.64 -0.699985 +-0.4 0.64 -1.29998 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.4 0.64 -0.699985 +0.4 0.64 -0.699985 +0.4 0.5 -0.699985 +-0.4 0.5 -0.699985 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.4 0.64 -1.29998 +-0.4 0.64 -0.699985 +-0.4 0.5 -0.699985 +-0.4 0.5 -1.29998 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.4 0.64 -0.699985 +0.4 0.64 -1.29998 +0.4 0.5 -1.29998 +0.4 0.5 -0.699985 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +0.5 -0.5 2.5 +0.5 0.5 2.5 +0.5 0.5 -2.5 +0.5 -0.5 -2.5 +UV COORDS: +-0.0214844 0 +1.02148 0 +1.02148 1 +-0.0214844 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.64 -0.4 -0.3 +0.64 0.4 -0.3 +0.5 0.4 -0.3 +0.5 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.64 -0.4 -0.3 +0.64 -0.4 0.3 +0.64 0.4 0.3 +0.64 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.64 0.4 0.3 +0.64 -0.4 0.3 +0.5 -0.4 0.3 +0.5 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.64 0.4 -0.3 +0.64 0.4 0.3 +0.5 0.4 0.3 +0.5 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.64 -0.4 0.3 +0.64 -0.4 -0.3 +0.5 -0.4 -0.3 +0.5 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------south quads: +1 + +TEX:SIDE +POSITION: +0.5 -0.5 2.5 +0.5 -0.5 -2.5 +-0.5 -0.5 -2.5 +-0.5 -0.5 2.5 +UV COORDS: +1.02148 0 +1.02148 1 +-0.0214844 1 +-0.0214844 0 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-0.5 -0.5 -2.5 +-0.5 0.5 -2.5 +-0.5 0.5 2.5 +-0.5 -0.5 2.5 +UV COORDS: +1.02148 1 +-0.0214844 1 +-0.0214844 0 +1.02148 0 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/FullAdder.blb b/bricks/blb/FullAdder.blb new file mode 100644 index 0000000..6853519 --- /dev/null +++ b/bricks/blb/FullAdder.blb @@ -0,0 +1,733 @@ +2 1 1 +SPECIAL + +bb + +1 + +0 0 0 +2 1 1 +COVERAGE: +1 : 2 +1 : 2 +1 : 2 +1 : 1 +1 : 2 +1 : 1 +----------------top quads: +1 + +TEX:PRINT +POSITION: +1 0.5 0.5 +1 -0.5 0.5 +-1 -0.5 0.5 +-1 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-1 -0.5 -0.5 +1 -0.5 -0.5 +0.5 0 -0.5 +-0.5 0 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 0.5 -0.5 +-1 0.5 -0.5 +-0.5 0 -0.5 +0.5 0 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 -0.5 -0.5 +1 0.5 -0.5 +0.5 0 -0.5 +0.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-1 0.5 -0.5 +-1 -0.5 -0.5 +-0.5 0 -0.5 +-0.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +6 + +TEX:SIDE +POSITION: +-1 0.5 0.5 +-1 0.5 -0.5 +1 0.5 -0.5 +1 0.5 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.82 0.75 -0.24 +-0.9 0.5 -0.3 +-0.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.18 0.75 0.24 +-0.82 0.75 0.24 +-0.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.82 0.75 0.24 +-0.18 0.75 0.24 +-0.1 0.5 0.3 +-0.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.82 0.75 -0.24 +-0.82 0.75 0.24 +-0.9 0.5 0.3 +-0.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 0.75 0.24 +-0.18 0.75 -0.24 +-0.1 0.5 -0.3 +-0.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +6 + +TEX:SIDE +POSITION: +1 -0.5 0.5 +1 0.5 0.5 +1 0.5 -0.5 +1 -0.5 -0.5 +UV COORDS: +-0.0214844 -0.0859375 +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +1.14 -0.4 -0.3 +1.14 0.4 -0.3 +1 0.4 -0.3 +1 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +1.14 -0.4 -0.3 +1.14 -0.4 0.3 +1.14 0.4 0.3 +1.14 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +1.14 0.4 0.3 +1.14 -0.4 0.3 +1 -0.4 0.3 +1 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.14 0.4 -0.3 +1.14 0.4 0.3 +1 0.4 0.3 +1 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +1.14 -0.4 0.3 +1.14 -0.4 -0.3 +1 -0.4 -0.3 +1 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------south quads: +11 + +TEX:SIDE +POSITION: +1 -0.5 0.5 +1 -0.5 -0.5 +-1 -0.5 -0.5 +-1 -0.5 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.1 -0.64 -0.3 +-0.1 -0.5 -0.3 +-0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.9 -0.64 0.3 +-0.1 -0.64 0.3 +-0.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 0.3 +-0.9 -0.64 0.3 +-0.9 -0.5 0.3 +-0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 -0.3 +-0.1 -0.64 0.3 +-0.1 -0.5 0.3 +-0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 0.3 +-0.9 -0.64 -0.3 +-0.9 -0.5 -0.3 +-0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.9 -0.64 -0.3 +0.9 -0.5 -0.3 +0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.1 -0.64 0.3 +0.9 -0.64 0.3 +0.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -0.64 0.3 +0.1 -0.64 0.3 +0.1 -0.5 0.3 +0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.9 -0.64 -0.3 +0.9 -0.64 0.3 +0.9 -0.5 0.3 +0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 0.3 +0.1 -0.64 -0.3 +0.1 -0.5 -0.3 +0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +6 + +TEX:SIDE +POSITION: +-1 -0.5 -0.5 +-1 0.5 -0.5 +-1 0.5 0.5 +-1 -0.5 0.5 +UV COORDS: +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +1.02148 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.25 0.32 -0.24 +-1.25 -0.32 -0.24 +-1 -0.4 -0.3 +-1 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +-1.25 0.32 -0.24 +-1.25 0.32 0.24 +-1.25 -0.32 0.24 +-1.25 -0.32 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.25 -0.32 0.24 +-1.25 0.32 0.24 +-1 0.4 0.3 +-1 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 + +TEX:SIDE +POSITION: +-1.25 -0.32 -0.24 +-1.25 -0.32 0.24 +-1 -0.4 0.3 +-1 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 + +TEX:SIDE +POSITION: +-1.25 0.32 0.24 +-1.25 0.32 -0.24 +-1 0.4 -0.3 +-1 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +----------------omni quads: +0 diff --git a/bricks/blb/HalfAdder.blb b/bricks/blb/HalfAdder.blb new file mode 100644 index 0000000..d639519 --- /dev/null +++ b/bricks/blb/HalfAdder.blb @@ -0,0 +1,623 @@ +2 1 1 +SPECIAL + +bb + +1 + +0 0 0 +2 1 1 +COVERAGE: +1 : 2 +1 : 2 +1 : 2 +1 : 1 +1 : 2 +1 : 1 +----------------top quads: +1 + +TEX:PRINT +POSITION: +1 0.5 0.5 +1 -0.5 0.5 +-1 -0.5 0.5 +-1 0.5 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-1 -0.5 -0.5 +1 -0.5 -0.5 +0.5 0 -0.5 +-0.5 0 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 0.5 -0.5 +-1 0.5 -0.5 +-0.5 0 -0.5 +0.5 0 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 -0.5 -0.5 +1 0.5 -0.5 +0.5 0 -0.5 +0.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-1 0.5 -0.5 +-1 -0.5 -0.5 +-0.5 0 -0.5 +-0.5 0 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +6 + +TEX:SIDE +POSITION: +-1 0.5 0.5 +-1 0.5 -0.5 +1 0.5 -0.5 +1 0.5 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.82 0.75 -0.24 +-0.9 0.5 -0.3 +-0.1 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +-0.18 0.75 -0.24 +-0.18 0.75 0.24 +-0.82 0.75 0.24 +-0.82 0.75 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.82 0.75 0.24 +-0.18 0.75 0.24 +-0.1 0.5 0.3 +-0.9 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.82 0.75 -0.24 +-0.82 0.75 0.24 +-0.9 0.5 0.3 +-0.9 0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +-0.18 0.75 0.24 +-0.18 0.75 -0.24 +-0.1 0.5 -0.3 +-0.1 0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +1 -0.5 0.5 +1 0.5 0.5 +1 0.5 -0.5 +1 -0.5 -0.5 +UV COORDS: +-0.0214844 -0.0859375 +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +11 + +TEX:SIDE +POSITION: +1 -0.5 0.5 +1 -0.5 -0.5 +-1 -0.5 -0.5 +-1 -0.5 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.1 -0.64 -0.3 +-0.1 -0.5 -0.3 +-0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.9 -0.64 0.3 +-0.1 -0.64 0.3 +-0.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 0.3 +-0.9 -0.64 0.3 +-0.9 -0.5 0.3 +-0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 -0.3 +-0.1 -0.64 0.3 +-0.1 -0.5 0.3 +-0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 0.3 +-0.9 -0.64 -0.3 +-0.9 -0.5 -0.3 +-0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.9 -0.64 -0.3 +0.9 -0.5 -0.3 +0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -0.64 -0.3 +0.1 -0.64 0.3 +0.9 -0.64 0.3 +0.9 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -0.64 0.3 +0.1 -0.64 0.3 +0.1 -0.5 0.3 +0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.9 -0.64 -0.3 +0.9 -0.64 0.3 +0.9 -0.5 0.3 +0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.64 0.3 +0.1 -0.64 -0.3 +0.1 -0.5 -0.3 +0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +6 + +TEX:SIDE +POSITION: +-1 -0.5 -0.5 +-1 0.5 -0.5 +-1 0.5 0.5 +-1 -0.5 0.5 +UV COORDS: +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +1.02148 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.25 0.32 -0.24 +-1.25 -0.32 -0.24 +-1 -0.4 -0.3 +-1 0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 +-0.095561 0 -0.995424 + +TEX:SIDE +POSITION: +-1.25 0.32 -0.24 +-1.25 0.32 0.24 +-1.25 -0.32 0.24 +-1.25 -0.32 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-1.25 -0.32 0.24 +-1.25 0.32 0.24 +-1 0.4 0.3 +-1 -0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 +-0.095561 0 0.995424 + +TEX:SIDE +POSITION: +-1.25 -0.32 -0.24 +-1.25 -0.32 0.24 +-1 -0.4 0.3 +-1 -0.4 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 +-0.304776 -0.952424 0 + +TEX:SIDE +POSITION: +-1.25 0.32 0.24 +-1.25 0.32 -0.24 +-1 0.4 -0.3 +-1 0.4 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +-0.304776 0.952424 0 +----------------omni quads: +0 diff --git a/bricks/blb/TextBrick.blb b/bricks/blb/TextBrick.blb new file mode 100644 index 0000000..b0a1599 --- /dev/null +++ b/bricks/blb/TextBrick.blb @@ -0,0 +1,294 @@ +1 1 2 +SPECIAL + +u +d + +1 + +0 0 0 +1 1 2 +COVERAGE: +1 : 1 +1 : 1 +1 : 2 +1 : 2 +1 : 2 +1 : 2 +----------------top quads: +1 + +TEX:TOP +POSITION: +0.5 0.5 1 +0.5 -0.5 1 +-0.5 -0.5 1 +-0.5 0.5 1 +UV COORDS: +0 1 +0 0 +1 0 +1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -0.5 -1 +0.5 -0.5 -1 +0 0 -1 +0 0 -1 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 0.5 -1 +-0.5 0.5 -1 +0 0 -1 +0 0 -1 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -0.5 -1 +0.5 0.5 -1 +0 0 -1 +0 0 -1 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 0.5 -1 +-0.5 -0.5 -1 +0 0 -1 +0 0 -1 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +1 + +TEX:PRINT +POSITION: +-0.5 0.5 1 +-0.5 0.5 -1 +0.5 0.5 -1 +0.5 0.5 1 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +0.5 -0.5 1 +0.5 0.5 1 +0.5 0.5 -1 +0.5 -0.5 -1 +UV COORDS: +-0.0214844 -0.0322266 +1.02148 -0.0322266 +1.02148 1.03223 +-0.0214844 1.03223 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +6 + +TEX:SIDE +POSITION: +0.5 -0.5 1 +0.5 -0.5 -1 +-0.5 -0.5 -1 +-0.5 -0.5 1 +UV COORDS: +1.02148 -0.0322266 +1.02148 1.03223 +-0.0214844 1.03223 +-0.0214844 -0.0322266 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.4 -0.64 -0.8 +0.4 -0.64 -0.8 +0.4 -0.5 -0.8 +-0.4 -0.5 -0.8 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.4 -0.64 -0.8 +-0.4 -0.64 -0.2 +0.4 -0.64 -0.2 +0.4 -0.64 -0.8 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.4 -0.64 -0.2 +-0.4 -0.64 -0.2 +-0.4 -0.5 -0.2 +0.4 -0.5 -0.2 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.4 -0.64 -0.8 +0.4 -0.64 -0.2 +0.4 -0.5 -0.2 +0.4 -0.5 -0.8 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.4 -0.64 -0.2 +-0.4 -0.64 -0.8 +-0.4 -0.5 -0.8 +-0.4 -0.5 -0.2 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-0.5 -0.5 -1 +-0.5 0.5 -1 +-0.5 0.5 1 +-0.5 -0.5 1 +UV COORDS: +1.02148 1.03223 +-0.0214844 1.03223 +-0.0214844 -0.0322266 +1.02148 -0.0322266 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/keyboardgate.blb b/bricks/blb/keyboardgate.blb new file mode 100644 index 0000000..97d54e2 --- /dev/null +++ b/bricks/blb/keyboardgate.blb @@ -0,0 +1,12102 @@ +3 1 1 +SPECIAL + +bbb + +1 + +0 0 0 +3 1 1 +COVERAGE: +0 : 99999 +0 : 99999 +0 : 99999 +0 : 99999 +0 : 99999 +0 : 99999 +---------------- TOP QUADS ---------------- +0 +---------------- BOTTOM QUADS ---------------- +0 +---------------- NORTH QUADS ---------------- +0 +---------------- EAST QUADS ---------------- +0 +---------------- SOUTH QUADS ---------------- +0 +---------------- WEST QUADS ---------------- +0 +---------------- OMNI QUADS ---------------- +551 + +TEX:SIDE +POSITION: +-1.499996 -0.500011 -0.35 +-1.499996 -0.500011 0.15 +1.500004 -0.499989 0.15 +1.500004 -0.499989 -0.35 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +0.000007 -1 0 +0.000007 -1 0 +0.000007 -1 0 +0.000007 -1 0 + +TEX:SIDE +POSITION: +-1.499996 -0.500011 -0.35 +1.500004 -0.499989 -0.35 +1.500003 -0.399989 -0.5 +-1.499997 -0.400011 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +0.000004 -0.514496 -0.857493 +0.000004 -0.514496 -0.857493 +0.000004 -0.514496 -0.857493 +0.000004 -0.514496 -0.857493 + +TEX:SIDE +POSITION: +1.500004 -0.499989 0.15 +-1.499996 -0.500011 0.15 +-1.499997 -0.400011 0.325 +1.500003 -0.399989 0.325 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +0.000004 -0.573462 0.819232 +0.000004 -0.573462 0.819232 +0.000004 -0.573462 0.819232 +0.000004 -0.573462 0.819232 + +TEX:SIDE +POSITION: +1.500004 -0.499989 -0.35 +1.500004 -0.499989 0.15 +1.500003 -0.399989 0.325 +1.500003 -0.399989 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +1 0.00001 0 +1 0.00001 0 +1 0.00001 0 +1 0.00001 0 + +TEX:SIDE +POSITION: +-1.499996 -0.500011 0.15 +-1.499996 -0.500011 -0.35 +-1.499997 -0.400011 -0.5 +-1.499997 -0.400011 0.325 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +-1 -0.000007 0 +-1 -0.000007 0 +-1 -0.000007 0 +-1 -0.000007 0 + +TEX:SIDE +POSITION: +1.5 0.5 0.325 +1.500003 0.5 -0.5 +1.500003 -0.399989 -0.5 +1.500003 -0.399989 0.325 +UV COORDS: +0 1 +0 1 +0.5 0.5 +0.5 0.5 +NORMALS: +1 0.000002 0.000004 +1 0.000002 0.000004 +1 0.000002 0.000004 +1 0.000002 0.000004 + +TEX:SIDE +POSITION: +-1.499997 0.5 -0.5 +-1.499997 0.5 0.325 +-1.499997 -0.400011 0.325 +-1.499997 -0.400011 -0.5 +UV COORDS: +0 1 +0 1 +0.5 0.5 +0.5 0.5 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +1.5 0.5 0.325 +-1.499997 0.5 0.325 +-1.499997 0.5 -0.5 +1.500003 0.5 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-1.499997 0.5 0.325 +1.5 0.5 0.325 +1.500003 -0.399989 0.325 +-1.499997 -0.400011 0.325 +UV COORDS: +0 1 +0 1 +0.5 0.5 +0.5 0.5 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.500003 -0.399989 -0.5 +1.500003 0.5 -0.5 +-1.499997 0.5 -0.5 +-1.499997 -0.400011 -0.5 +UV COORDS: +0.5 0.5 +0 1 +0 1 +0.5 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-1.38879 0.044476 0.325433 +-1.37768 0.033368 0.429933 +-1.37768 -0.055499 0.429933 +-1.38879 -0.066607 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.10006 -0.199898 0.325433 +-0.111169 -0.211006 0.429933 +-0.844411 -0.211011 0.429933 +-0.855522 -0.199903 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.011036 0.055595 0.325433 +0.022145 0.066703 0.429933 +0.111023 0.066704 0.429933 +0.122133 0.055596 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.366695 0.055592 0.325433 +-0.377806 0.0667 0.429933 +-0.377806 0.155567 0.429933 +-0.366696 0.166675 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.911072 -0.066603 0.325433 +-0.899962 -0.055495 0.429933 +-0.811084 -0.055494 0.429933 +-0.799974 -0.066602 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.799974 0.044481 0.325433 +-0.811084 0.033373 0.429933 +-0.899962 0.033372 0.429933 +-0.911072 0.04448 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.422244 0.044484 0.325433 +-0.411134 0.033376 0.429933 +-0.411134 -0.055491 0.429933 +-0.422244 -0.066599 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.855522 -0.188794 0.325433 +-0.844413 -0.177686 0.429933 +-0.755535 -0.177686 0.429933 +-0.744425 -0.188793 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.477795 0.411058 0.325433 +-0.488905 0.399949 0.429933 +-0.577783 0.399949 0.429933 +-0.588893 0.411057 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.622072 -0.077701 0.325433 +0.633181 -0.088808 0.429933 +0.633181 -0.177675 0.429933 +0.622073 -0.188784 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 + +TEX:SIDE +POSITION: +1.033128 0.288878 0.325433 +1.022018 0.277769 0.429933 +0.933141 0.277769 0.429933 +0.922031 0.288877 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.04424 0.055603 0.325433 +1.055349 0.066711 0.429933 +1.144229 0.066711 0.429933 +1.15534 0.055603 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922035 -0.310973 0.325433 +0.933145 -0.299865 0.429933 +1.144232 -0.299864 0.429933 +1.155342 -0.310972 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.266559 0.03338 0.429933 +0.25545 0.044488 0.325433 +0.255449 0.16668 0.325433 +0.266558 0.155572 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966453 -0.000007 0.256846 +-0.966453 -0.000007 0.256846 +-0.966453 -0.000007 0.256846 +-0.966453 -0.000007 0.256846 + +TEX:SIDE +POSITION: +0.433205 0.044489 0.325433 +0.422095 0.033381 0.429933 +0.422095 0.155573 0.429933 +0.433204 0.166681 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.96645 0.000004 0.256856 +0.96645 0.000004 0.256856 +0.96645 0.000004 0.256856 +0.96645 0.000004 0.256856 + +TEX:SIDE +POSITION: +0.433204 0.166681 0.325433 +0.422095 0.155573 0.429933 +0.266558 0.155572 0.429933 +0.255449 0.16668 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.266559 0.03338 0.429933 +0.266558 0.155572 0.429933 +0.422095 0.155573 0.429933 +0.422095 0.033381 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.388791 0.166668 0.325433 +-1.377681 0.15556 0.429933 +-1.37768 0.066693 0.429933 +-1.38879 0.055585 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-1.38879 0.055585 0.325433 +-1.37768 0.066693 0.429933 +-1.233251 0.066694 0.429933 +-1.22214 0.055586 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.22214 0.055586 0.325433 +-1.233251 0.066694 0.429933 +-1.233251 0.155561 0.429933 +-1.222141 0.166669 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 + +TEX:SIDE +POSITION: +-1.222141 0.166669 0.325433 +-1.233251 0.155561 0.429933 +-1.377681 0.15556 0.429933 +-1.388791 0.166668 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.233251 0.155561 0.429933 +-1.233251 0.066694 0.429933 +-1.37768 0.066693 0.429933 +-1.377681 0.15556 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.266559 0.03338 0.429933 +0.422095 0.033381 0.429933 +0.422095 -0.055486 0.429933 +0.266559 -0.055487 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.433206 -0.066594 0.325433 +0.422095 -0.055486 0.429933 +0.422095 0.033381 0.429933 +0.433205 0.044489 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.255451 -0.066595 0.325433 +0.266559 -0.055487 0.429933 +0.422095 -0.055486 0.429933 +0.433206 -0.066594 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.17771 0.033369 0.429933 +-1.17771 -0.055498 0.429933 +-1.37768 -0.055499 0.429933 +-1.37768 0.033368 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.1666 0.044478 0.325433 +-1.17771 0.033369 0.429933 +-1.37768 0.033368 0.429933 +-1.38879 0.044476 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.1666 -0.066606 0.325433 +-1.17771 -0.055498 0.429933 +-1.17771 0.033369 0.429933 +-1.1666 0.044478 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.38879 -0.066607 0.325433 +-1.37768 -0.055499 0.429933 +-1.17771 -0.055498 0.429933 +-1.1666 -0.066606 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.188792 -0.066596 0.325433 +0.199901 -0.055487 0.429933 +0.266559 -0.055487 0.429933 +0.255451 -0.066595 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0 -0.966454 0.256838 +-0 -0.966454 0.256838 +-0 -0.966454 0.256838 +-0 -0.966454 0.256838 + +TEX:SIDE +POSITION: +0.266559 0.03338 0.429933 +0.266559 -0.055487 0.429933 +0.199901 -0.055487 0.429933 +0.199901 0.03338 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.199901 0.03338 0.429933 +0.188791 0.044488 0.325433 +0.25545 0.044488 0.325433 +0.266559 0.03338 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0.966456 0.256835 +0 0.966456 0.256835 +0 0.966456 0.256835 +0 0.966456 0.256835 + +TEX:SIDE +POSITION: +0.199901 -0.055487 0.429933 +0.188792 -0.066596 0.325433 +0.188791 0.044488 0.325433 +0.199901 0.03338 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +0.122134 -0.077704 0.325433 +0.133244 -0.088812 0.429933 +0.133244 -0.177679 0.429933 +0.122134 -0.188788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.122134 -0.188788 0.325433 +0.133244 -0.177679 0.429933 +0.422097 -0.177677 0.429933 +0.433206 -0.188786 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +0.433206 -0.188786 0.325433 +0.422097 -0.177677 0.429933 +0.422097 -0.08881 0.429933 +0.433207 -0.077702 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 + +TEX:SIDE +POSITION: +0.433207 -0.077702 0.325433 +0.422097 -0.08881 0.429933 +0.133244 -0.088812 0.429933 +0.122134 -0.077704 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.422097 -0.08881 0.429933 +0.422097 -0.177677 0.429933 +0.133244 -0.177679 0.429933 +0.133244 -0.088812 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.388789 -0.077715 0.325433 +-1.377679 -0.088823 0.429933 +-1.377679 -0.17769 0.429933 +-1.388789 -0.188799 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-1.388789 -0.188799 0.325433 +-1.377679 -0.17769 0.429933 +-1.122159 -0.177688 0.429933 +-1.111049 -0.188797 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-1.111049 -0.188797 0.325433 +-1.122159 -0.177688 0.429933 +-1.122159 -0.088821 0.429933 +-1.111049 -0.077713 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-1.111049 -0.077713 0.325433 +-1.122159 -0.088821 0.429933 +-1.377679 -0.088823 0.429933 +-1.388789 -0.077715 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.122159 -0.088821 0.429933 +-1.122159 -0.177688 0.429933 +-1.377679 -0.17769 0.429933 +-1.377679 -0.088823 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.388792 0.28886 0.325433 +-1.377682 0.277752 0.429933 +-1.377681 0.188885 0.429933 +-1.388791 0.177776 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.388791 0.177776 0.325433 +-1.377681 0.188885 0.429933 +-1.288801 0.188886 0.429933 +-1.277691 0.177777 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 + +TEX:SIDE +POSITION: +-1.277691 0.177777 0.325433 +-1.288801 0.188886 0.429933 +-1.288802 0.277753 0.429933 +-1.277692 0.288861 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-1.277692 0.288861 0.325433 +-1.288802 0.277753 0.429933 +-1.377682 0.277752 0.429933 +-1.388792 0.28886 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.288802 0.277753 0.429933 +-1.288801 0.188886 0.429933 +-1.377681 0.188885 0.429933 +-1.377682 0.277752 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.388789 -0.199907 0.325433 +-1.377678 -0.211015 0.429933 +-1.377678 -0.299882 0.429933 +-1.388788 -0.31099 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.388788 -0.31099 0.325433 +-1.377678 -0.299882 0.429933 +-1.233248 -0.299881 0.429933 +-1.222138 -0.310989 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.222138 -0.310989 0.325433 +-1.233248 -0.299881 0.429933 +-1.233249 -0.211014 0.429933 +-1.222139 -0.199906 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.222139 -0.199906 0.325433 +-1.233249 -0.211014 0.429933 +-1.377678 -0.211015 0.429933 +-1.388789 -0.199907 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.233249 -0.211014 0.429933 +-1.233248 -0.299881 0.429933 +-1.377678 -0.299882 0.429933 +-1.377678 -0.211015 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.855522 -0.199903 0.325433 +-0.844411 -0.211011 0.429933 +-0.844411 -0.28877 0.429933 +-0.855521 -0.310986 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.855521 -0.310986 0.325433 +-0.844411 -0.28877 0.429933 +-0.111169 -0.288765 0.429933 +-0.100059 -0.310981 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.883032 0.469313 +0.000007 -0.883032 0.469313 +0.000007 -0.883032 0.469313 +0.000007 -0.883032 0.469313 + +TEX:SIDE +POSITION: +-0.100059 -0.310981 0.325433 +-0.111169 -0.288765 0.429933 +-0.111169 -0.211006 0.429933 +-0.10006 -0.199898 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256867 +0.966447 0.000006 0.256867 +0.966447 0.000006 0.256867 +0.966447 0.000006 0.256867 + +TEX:SIDE +POSITION: +-0.111169 -0.211006 0.429933 +-0.111169 -0.288765 0.429933 +-0.844411 -0.28877 0.429933 +-0.844411 -0.211011 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.111053 0.399945 0.429933 +-1.111053 0.36662 0.429933 +-1.188813 0.366619 0.429933 +-1.188813 0.399944 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.099943 0.411053 0.325433 +-1.111053 0.399945 0.429933 +-1.188813 0.399944 0.429933 +-1.199923 0.411052 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.099943 0.355512 0.325433 +-1.111053 0.36662 0.429933 +-1.111053 0.399945 0.429933 +-1.099943 0.411053 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.25687 +0.966446 0.000008 0.25687 +0.966446 0.000008 0.25687 +0.966446 0.000008 0.25687 + +TEX:SIDE +POSITION: +-1.199923 0.355511 0.325433 +-1.188813 0.366619 0.429933 +-1.111053 0.36662 0.429933 +-1.099943 0.355512 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.199923 0.411052 0.325433 +-1.188813 0.399944 0.429933 +-1.188813 0.366619 0.429933 +-1.199923 0.355511 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 + +TEX:SIDE +POSITION: +-1.166602 0.277754 0.429933 +-1.166601 0.188887 0.429933 +-1.255472 0.188886 0.429933 +-1.255472 0.277753 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.155492 0.288862 0.325433 +-1.166602 0.277754 0.429933 +-1.255472 0.277753 0.429933 +-1.266582 0.288861 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.155491 0.177778 0.325433 +-1.166601 0.188887 0.429933 +-1.166602 0.277754 0.429933 +-1.155492 0.288862 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-1.266581 0.177777 0.325433 +-1.255472 0.188886 0.429933 +-1.166601 0.188887 0.429933 +-1.155491 0.177778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 +0.000007 -0.966452 0.256848 + +TEX:SIDE +POSITION: +-1.266582 0.288861 0.325433 +-1.255472 0.277753 0.429933 +-1.255472 0.188886 0.429933 +-1.266581 0.177777 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-1.088831 0.16667 0.325433 +-1.077721 0.155562 0.429933 +-1.077721 0.066695 0.429933 +-1.08883 0.055587 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 + +TEX:SIDE +POSITION: +-1.08883 0.055587 0.325433 +-1.077721 0.066695 0.429933 +-0.988841 0.066696 0.429933 +-0.97773 0.055588 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.97773 0.055588 0.325433 +-0.988841 0.066696 0.429933 +-0.988841 0.155563 0.429933 +-0.977731 0.166671 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.977731 0.166671 0.325433 +-0.988841 0.155563 0.429933 +-1.077721 0.155562 0.429933 +-1.088831 0.16667 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.988841 0.155563 0.429933 +-0.988841 0.066696 0.429933 +-1.077721 0.066695 0.429933 +-1.077721 0.155562 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.111051 0.155562 0.429933 +-1.111051 0.066695 0.429933 +-1.199921 0.066694 0.429933 +-1.199921 0.155561 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.099941 0.16667 0.325433 +-1.111051 0.155562 0.429933 +-1.199921 0.155561 0.429933 +-1.211041 0.166669 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.09994 0.055587 0.325433 +-1.111051 0.066695 0.429933 +-1.111051 0.155562 0.429933 +-1.099941 0.16667 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 +0.966446 0.000008 0.256872 + +TEX:SIDE +POSITION: +-1.21104 0.055586 0.325433 +-1.199921 0.066694 0.429933 +-1.111051 0.066695 0.429933 +-1.09994 0.055587 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.211041 0.166669 0.325433 +-1.199921 0.155561 0.429933 +-1.199921 0.066694 0.429933 +-1.21104 0.055586 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.96639 -0.000008 0.257083 +-0.96639 -0.000008 0.257083 +-0.96639 -0.000008 0.257083 +-0.96639 -0.000008 0.257083 + +TEX:SIDE +POSITION: +-1.15549 0.044479 0.325433 +-1.14438 0.03337 0.429933 +-1.14438 -0.055496 0.429933 +-1.15549 -0.066605 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.15549 -0.066605 0.325433 +-1.14438 -0.055496 0.429933 +-1.0555 -0.055496 0.429933 +-1.04439 -0.066605 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-1.04439 -0.066605 0.325433 +-1.0555 -0.055496 0.429933 +-1.0555 0.03337 0.429933 +-1.04439 0.044479 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.04439 0.044479 0.325433 +-1.0555 0.03337 0.429933 +-1.14438 0.03337 0.429933 +-1.15549 0.044479 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-1.0555 0.03337 0.429933 +-1.0555 -0.055496 0.429933 +-1.14438 -0.055496 0.429933 +-1.14438 0.03337 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.933291 0.033371 0.429933 +-0.933291 -0.055495 0.429933 +-1.02217 -0.055496 0.429933 +-1.02217 0.033371 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.922181 0.04448 0.325433 +-0.933291 0.033371 0.429933 +-1.02217 0.033371 0.429933 +-1.03328 0.04448 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.922182 -0.066604 0.325433 +-0.933291 -0.055495 0.429933 +-0.933291 0.033371 0.429933 +-0.922181 0.04448 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.96645 0.000002 0.256856 +0.96645 0.000002 0.256856 +0.96645 0.000002 0.256856 +0.96645 0.000002 0.256856 + +TEX:SIDE +POSITION: +-1.03328 -0.066605 0.325433 +-1.02217 -0.055496 0.429933 +-0.933291 -0.055495 0.429933 +-0.922182 -0.066604 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-1.03328 0.04448 0.325433 +-1.02217 0.033371 0.429933 +-1.02217 -0.055496 0.429933 +-1.03328 -0.066605 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.022172 0.288863 0.325433 +-1.011062 0.277755 0.429933 +-1.011061 0.188888 0.429933 +-1.022171 0.17778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-1.022171 0.17778 0.325433 +-1.011061 0.188888 0.429933 +-0.922183 0.188888 0.429933 +-0.911073 0.17778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.911073 0.17778 0.325433 +-0.922183 0.188888 0.429933 +-0.922184 0.277755 0.429933 +-0.911074 0.288863 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.911074 0.288863 0.325433 +-0.922184 0.277755 0.429933 +-1.011062 0.277755 0.429933 +-1.022172 0.288863 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.922184 0.277755 0.429933 +-0.922183 0.188888 0.429933 +-1.011061 0.188888 0.429933 +-1.011062 0.277755 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.044392 0.277754 0.429933 +-1.044391 0.188887 0.429933 +-1.133272 0.188887 0.429933 +-1.133272 0.277754 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.033282 0.288863 0.325433 +-1.044392 0.277754 0.429933 +-1.133272 0.277754 0.429933 +-1.144382 0.288862 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.033281 0.17778 0.325433 +-1.044391 0.188887 0.429933 +-1.044392 0.277754 0.429933 +-1.033282 0.288863 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-1.144381 0.177779 0.325433 +-1.133272 0.188887 0.429933 +-1.044391 0.188887 0.429933 +-1.033281 0.17778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.144382 0.288862 0.325433 +-1.133272 0.277754 0.429933 +-1.133272 0.188887 0.429933 +-1.144381 0.177779 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.65555 0.288865 0.325433 +-0.64444 0.277757 0.429933 +-0.64444 0.18889 0.429933 +-0.655549 0.177782 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256866 +-0.966447 -0.000006 0.256866 +-0.966447 -0.000006 0.256866 +-0.966447 -0.000006 0.256866 + +TEX:SIDE +POSITION: +-0.655549 0.177782 0.325433 +-0.64444 0.18889 0.429933 +-0.555562 0.188891 0.429933 +-0.544452 0.177783 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.544452 0.177783 0.325433 +-0.555562 0.188891 0.429933 +-0.555563 0.277758 0.429933 +-0.544453 0.288866 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.544453 0.288866 0.325433 +-0.555563 0.277758 0.429933 +-0.64444 0.277757 0.429933 +-0.65555 0.288865 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.555563 0.277758 0.429933 +-0.555562 0.188891 0.429933 +-0.64444 0.18889 0.429933 +-0.64444 0.277757 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.433356 0.277759 0.429933 +-0.433355 0.188892 0.429933 +-0.522232 0.188891 0.429933 +-0.522233 0.277758 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.422246 0.288867 0.325433 +-0.433356 0.277759 0.429933 +-0.522233 0.277758 0.429933 +-0.533343 0.288866 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.422245 0.177784 0.325433 +-0.433355 0.188892 0.429933 +-0.433356 0.277759 0.429933 +-0.422246 0.288867 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.533342 0.177783 0.325433 +-0.522232 0.188891 0.429933 +-0.433355 0.188892 0.429933 +-0.422245 0.177784 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.533343 0.288866 0.325433 +-0.522233 0.277758 0.429933 +-0.522232 0.188891 0.429933 +-0.533342 0.177783 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.777757 0.288864 0.325433 +-0.766647 0.277756 0.429933 +-0.766646 0.188889 0.429933 +-0.777756 0.17778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.777756 0.17778 0.325433 +-0.766646 0.188889 0.429933 +-0.677769 0.18889 0.429933 +-0.666659 0.177781 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.666659 0.177781 0.325433 +-0.677769 0.18889 0.429933 +-0.67777 0.277757 0.429933 +-0.66666 0.288865 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.66666 0.288865 0.325433 +-0.67777 0.277757 0.429933 +-0.766647 0.277756 0.429933 +-0.777757 0.288864 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.67777 0.277757 0.429933 +-0.677769 0.18889 0.429933 +-0.766646 0.188889 0.429933 +-0.766647 0.277756 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.799977 0.277756 0.429933 +-0.799976 0.188889 0.429933 +-0.888853 0.188889 0.429933 +-0.888854 0.277756 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.788867 0.288864 0.325433 +-0.799977 0.277756 0.429933 +-0.888854 0.277756 0.429933 +-0.899964 0.288863 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.788866 0.17778 0.325433 +-0.799976 0.188889 0.429933 +-0.799977 0.277756 0.429933 +-0.788867 0.288864 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.899963 0.177779 0.325433 +-0.888853 0.188889 0.429933 +-0.799976 0.188889 0.429933 +-0.788866 0.17778 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.899964 0.288863 0.325433 +-0.888854 0.277756 0.429933 +-0.888853 0.188889 0.429933 +-0.899963 0.177779 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.411136 0.288867 0.325433 +-0.400026 0.277759 0.429933 +-0.400025 0.188892 0.429933 +-0.411135 0.177783 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.411135 0.177783 0.325433 +-0.400025 0.188892 0.429933 +-0.311147 0.188893 0.429933 +-0.300038 0.177784 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.300038 0.177784 0.325433 +-0.311147 0.188893 0.429933 +-0.311148 0.27776 0.429933 +-0.300039 0.288868 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 + +TEX:SIDE +POSITION: +-0.300039 0.288868 0.325433 +-0.311148 0.27776 0.429933 +-0.400026 0.277759 0.429933 +-0.411136 0.288867 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.311148 0.27776 0.429933 +-0.311147 0.188893 0.429933 +-0.400025 0.188892 0.429933 +-0.400026 0.277759 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.188941 0.277761 0.429933 +-0.18894 0.188894 0.429933 +-0.277818 0.188893 0.429933 +-0.277819 0.27776 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.177832 0.288869 0.325433 +-0.188941 0.277761 0.429933 +-0.277819 0.27776 0.429933 +-0.288929 0.288868 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.177831 0.177785 0.325433 +-0.18894 0.188894 0.429933 +-0.188941 0.277761 0.429933 +-0.177832 0.288869 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.288928 0.177784 0.325433 +-0.277818 0.188893 0.429933 +-0.18894 0.188894 0.429933 +-0.177831 0.177785 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.288929 0.288868 0.325433 +-0.277819 0.27776 0.429933 +-0.277818 0.188893 0.429933 +-0.288928 0.177784 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.044515 0.28887 0.325433 +-0.033405 0.277762 0.429933 +-0.033404 0.188895 0.429933 +-0.044514 0.177787 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.044514 0.177787 0.325433 +-0.033404 0.188895 0.429933 +0.055474 0.188895 0.429933 +0.066583 0.177788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.066583 0.177788 0.325433 +0.055474 0.188895 0.429933 +0.055473 0.277762 0.429933 +0.066582 0.288871 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 + +TEX:SIDE +POSITION: +0.066582 0.288871 0.325433 +0.055473 0.277762 0.429933 +-0.033405 0.277762 0.429933 +-0.044515 0.28887 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.055473 0.277762 0.429933 +0.055474 0.188895 0.429933 +-0.033404 0.188895 0.429933 +-0.033405 0.277762 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.066734 0.277762 0.429933 +-0.066733 0.188895 0.429933 +-0.155611 0.188894 0.429933 +-0.155612 0.277761 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.055625 0.28887 0.325433 +-0.066734 0.277762 0.429933 +-0.155612 0.277761 0.429933 +-0.166722 0.288869 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.055624 0.177787 0.325433 +-0.066733 0.188895 0.429933 +-0.066734 0.277762 0.429933 +-0.055625 0.28887 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.166721 0.177786 0.325433 +-0.155611 0.188894 0.429933 +-0.066733 0.188895 0.429933 +-0.055624 0.177787 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.166722 0.288869 0.325433 +-0.155612 0.277761 0.429933 +-0.155611 0.188894 0.429933 +-0.166721 0.177786 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +0.322106 0.288872 0.325433 +0.333216 0.277764 0.429933 +0.333217 0.188897 0.429933 +0.322107 0.177789 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +0.322107 0.177789 0.325433 +0.333217 0.188897 0.429933 +0.422095 0.188898 0.429933 +0.433204 0.17779 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.433204 0.17779 0.325433 +0.422095 0.188898 0.429933 +0.422094 0.277765 0.429933 +0.433204 0.288873 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 0.000002 0.25686 +0.966449 0.000002 0.25686 +0.966449 0.000002 0.25686 +0.966449 0.000002 0.25686 + +TEX:SIDE +POSITION: +0.433204 0.288873 0.325433 +0.422094 0.277765 0.429933 +0.333216 0.277764 0.429933 +0.322106 0.288872 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.422094 0.277765 0.429933 +0.422095 0.188898 0.429933 +0.333217 0.188897 0.429933 +0.333216 0.277764 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.199899 0.288872 0.325433 +0.211009 0.277764 0.429933 +0.21101 0.188897 0.429933 +0.1999 0.177788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +0.1999 0.177788 0.325433 +0.21101 0.188897 0.429933 +0.299888 0.188897 0.429933 +0.310997 0.177788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +0.310997 0.177788 0.325433 +0.299888 0.188897 0.429933 +0.299887 0.277764 0.429933 +0.310996 0.288872 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 + +TEX:SIDE +POSITION: +0.310996 0.288872 0.325433 +0.299887 0.277764 0.429933 +0.211009 0.277764 0.429933 +0.199899 0.288872 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.299887 0.277764 0.429933 +0.299888 0.188897 0.429933 +0.21101 0.188897 0.429933 +0.211009 0.277764 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.17768 0.277763 0.429933 +0.177681 0.188896 0.429933 +0.088803 0.188896 0.429933 +0.088802 0.277763 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.18879 0.288871 0.325433 +0.17768 0.277763 0.429933 +0.088802 0.277763 0.429933 +0.077692 0.288871 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.18879 0.177787 0.325433 +0.177681 0.188896 0.429933 +0.17768 0.277763 0.429933 +0.18879 0.288871 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 +0.966449 0.000001 0.256857 + +TEX:SIDE +POSITION: +0.077693 0.177787 0.325433 +0.088803 0.188896 0.429933 +0.177681 0.188896 0.429933 +0.18879 0.177787 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +0.077692 0.288871 0.325433 +0.088802 0.277763 0.429933 +0.088803 0.188896 0.429933 +0.077693 0.177787 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.133242 0.166679 0.325433 +0.144352 0.155571 0.429933 +0.144352 0.066704 0.429933 +0.133243 0.055596 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +0.133243 0.055596 0.325433 +0.144352 0.066704 0.429933 +0.233229 0.066705 0.429933 +0.24434 0.055597 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.24434 0.055597 0.325433 +0.233229 0.066705 0.429933 +0.233229 0.155572 0.429933 +0.244339 0.16668 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.244339 0.16668 0.325433 +0.233229 0.155572 0.429933 +0.144352 0.155571 0.429933 +0.133242 0.166679 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.233229 0.155572 0.429933 +0.233229 0.066705 0.429933 +0.144352 0.066704 0.429933 +0.144352 0.155571 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.111172 0.166677 0.325433 +-0.100063 0.155569 0.429933 +-0.100062 0.066702 0.429933 +-0.111172 0.055594 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 + +TEX:SIDE +POSITION: +-0.111172 0.055594 0.325433 +-0.100062 0.066702 0.429933 +-0.011185 0.066703 0.429933 +-0.000074 0.055595 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.000074 0.055595 0.325433 +-0.011185 0.066703 0.429933 +-0.011185 0.15557 0.429933 +-0.000075 0.166678 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.000075 0.166678 0.325433 +-0.011185 0.15557 0.429933 +-0.100063 0.155569 0.429933 +-0.111172 0.166677 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.011185 0.15557 0.429933 +-0.011185 0.066703 0.429933 +-0.100062 0.066702 0.429933 +-0.100063 0.155569 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.111022 0.155571 0.429933 +0.111023 0.066704 0.429933 +0.022145 0.066703 0.429933 +0.022144 0.15557 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.122132 0.166679 0.325433 +0.111022 0.155571 0.429933 +0.022144 0.15557 0.429933 +0.011035 0.166678 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.122133 0.055596 0.325433 +0.111023 0.066704 0.429933 +0.111022 0.155571 0.429933 +0.122132 0.166679 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.011035 0.166678 0.325433 +0.022144 0.15557 0.429933 +0.022145 0.066703 0.429933 +0.011036 0.055595 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.233379 0.166676 0.325433 +-0.22227 0.155568 0.429933 +-0.22227 0.066701 0.429933 +-0.233378 0.055593 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 + +TEX:SIDE +POSITION: +-0.233378 0.055593 0.325433 +-0.22227 0.066701 0.429933 +-0.133391 0.066702 0.429933 +-0.122281 0.055594 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.122281 0.055594 0.325433 +-0.133391 0.066702 0.429933 +-0.133392 0.155569 0.429933 +-0.122282 0.166677 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.122282 0.166677 0.325433 +-0.133392 0.155569 0.429933 +-0.22227 0.155568 0.429933 +-0.233379 0.166676 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.133392 0.155569 0.429933 +-0.133391 0.066702 0.429933 +-0.22227 0.066701 0.429933 +-0.22227 0.155568 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.255599 0.155568 0.429933 +-0.255599 0.066701 0.429933 +-0.344477 0.066701 0.429933 +-0.344477 0.155568 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.244489 0.166676 0.325433 +-0.255599 0.155568 0.429933 +-0.344477 0.155568 0.429933 +-0.355586 0.166675 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.244488 0.055593 0.325433 +-0.255599 0.066701 0.429933 +-0.255599 0.155568 0.429933 +-0.244489 0.166676 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.355586 0.055592 0.325433 +-0.344477 0.066701 0.429933 +-0.255599 0.066701 0.429933 +-0.244488 0.055593 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.355586 0.166675 0.325433 +-0.344477 0.155568 0.429933 +-0.344477 0.066701 0.429933 +-0.355586 0.055592 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 + +TEX:SIDE +POSITION: +-0.844415 0.166672 0.325433 +-0.833305 0.155564 0.429933 +-0.833304 0.066697 0.429933 +-0.844415 0.055589 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.844415 0.055589 0.325433 +-0.833304 0.066697 0.429933 +-0.744427 0.066698 0.429933 +-0.733316 0.05559 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.733316 0.05559 0.325433 +-0.744427 0.066698 0.429933 +-0.744427 0.155565 0.429933 +-0.733317 0.166673 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.733317 0.166673 0.325433 +-0.744427 0.155565 0.429933 +-0.833305 0.155564 0.429933 +-0.844415 0.166672 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.744427 0.155565 0.429933 +-0.744427 0.066698 0.429933 +-0.833304 0.066697 0.429933 +-0.833305 0.155564 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.62222 0.155566 0.429933 +-0.62222 0.066699 0.429933 +-0.711098 0.066698 0.429933 +-0.711098 0.155565 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.61111 0.166674 0.325433 +-0.62222 0.155566 0.429933 +-0.711098 0.155565 0.429933 +-0.722207 0.166673 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.61111 0.055591 0.325433 +-0.62222 0.066699 0.429933 +-0.62222 0.155566 0.429933 +-0.61111 0.166674 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.722207 0.05559 0.325433 +-0.711098 0.066698 0.429933 +-0.62222 0.066699 0.429933 +-0.61111 0.055591 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.722207 0.166673 0.325433 +-0.711098 0.155565 0.429933 +-0.711098 0.066698 0.429933 +-0.722207 0.05559 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966449 -0.000002 0.256857 +-0.966449 -0.000002 0.256857 +-0.966449 -0.000002 0.256857 +-0.966449 -0.000002 0.256857 + +TEX:SIDE +POSITION: +-0.477793 0.166675 0.325433 +-0.466684 0.155567 0.429933 +-0.466684 0.0667 0.429933 +-0.477794 0.055592 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 + +TEX:SIDE +POSITION: +-0.477794 0.055592 0.325433 +-0.466684 0.0667 0.429933 +-0.377806 0.0667 0.429933 +-0.366695 0.055592 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.366696 0.166675 0.325433 +-0.377806 0.155567 0.429933 +-0.466684 0.155567 0.429933 +-0.477793 0.166675 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.377806 0.155567 0.429933 +-0.377806 0.0667 0.429933 +-0.466684 0.0667 0.429933 +-0.466684 0.155567 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.500013 0.155566 0.429933 +-0.500012 0.066699 0.429933 +-0.588891 0.066699 0.429933 +-0.588891 0.155566 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.488903 0.166674 0.325433 +-0.500013 0.155566 0.429933 +-0.588891 0.155566 0.429933 +-0.6 0.166674 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.488902 0.055591 0.325433 +-0.500012 0.066699 0.429933 +-0.500013 0.155566 0.429933 +-0.488903 0.166674 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256867 +0.966447 0.000008 0.256867 +0.966447 0.000008 0.256867 +0.966447 0.000008 0.256867 + +TEX:SIDE +POSITION: +-0.599999 0.055591 0.325433 +-0.588891 0.066699 0.429933 +-0.500012 0.066699 0.429933 +-0.488902 0.055591 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.6 0.166674 0.325433 +-0.588891 0.155566 0.429933 +-0.588891 0.066699 0.429933 +-0.599999 0.055591 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966453 -0.000006 0.256846 +-0.966453 -0.000006 0.256846 +-0.966453 -0.000006 0.256846 +-0.966453 -0.000006 0.256846 + +TEX:SIDE +POSITION: +-0.866634 0.155564 0.429933 +-0.866633 0.066697 0.429933 +-0.955512 0.066696 0.429933 +-0.955512 0.155563 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.855524 0.166672 0.325433 +-0.866634 0.155564 0.429933 +-0.955512 0.155563 0.429933 +-0.966621 0.166671 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.855523 0.055589 0.325433 +-0.866633 0.066697 0.429933 +-0.866634 0.155564 0.429933 +-0.855524 0.166672 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.966621 0.055588 0.325433 +-0.955512 0.066696 0.429933 +-0.866633 0.066697 0.429933 +-0.855523 0.055589 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.966621 0.166671 0.325433 +-0.955512 0.155563 0.429933 +-0.955512 0.066696 0.429933 +-0.966621 0.055588 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 +-0.966449 -0.000002 0.256859 + +TEX:SIDE +POSITION: +-0.911072 0.04448 0.325433 +-0.899962 0.033372 0.429933 +-0.899962 -0.055495 0.429933 +-0.911072 -0.066603 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.799974 -0.066602 0.325433 +-0.811084 -0.055494 0.429933 +-0.811084 0.033373 0.429933 +-0.799974 0.044481 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 0.000003 0.256859 +0.966449 0.000003 0.256859 +0.966449 0.000003 0.256859 +0.966449 0.000003 0.256859 + +TEX:SIDE +POSITION: +-0.811084 0.033373 0.429933 +-0.811084 -0.055494 0.429933 +-0.899962 -0.055495 0.429933 +-0.899962 0.033372 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.544451 0.044483 0.325433 +-0.533341 0.033375 0.429933 +-0.533341 -0.055492 0.429933 +-0.544451 -0.0666 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 +-0.966446 -0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.544451 -0.0666 0.325433 +-0.533341 -0.055492 0.429933 +-0.444463 -0.055491 0.429933 +-0.433354 -0.066599 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.433354 -0.066599 0.325433 +-0.444463 -0.055491 0.429933 +-0.444463 0.033376 0.429933 +-0.433354 0.044484 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256846 +0.966452 0.000008 0.256846 +0.966452 0.000008 0.256846 +0.966452 0.000008 0.256846 + +TEX:SIDE +POSITION: +-0.433354 0.044484 0.325433 +-0.444463 0.033376 0.429933 +-0.533341 0.033375 0.429933 +-0.544451 0.044483 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.444463 0.033376 0.429933 +-0.444463 -0.055491 0.429933 +-0.533341 -0.055492 0.429933 +-0.533341 0.033375 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.322256 0.033377 0.429933 +-0.322256 -0.05549 0.429933 +-0.411134 -0.055491 0.429933 +-0.411134 0.033376 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.311146 0.044485 0.325433 +-0.322256 0.033377 0.429933 +-0.411134 0.033376 0.429933 +-0.422244 0.044484 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.311146 -0.066598 0.325433 +-0.322256 -0.05549 0.429933 +-0.322256 0.033377 0.429933 +-0.311146 0.044485 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.422244 -0.066599 0.325433 +-0.411134 -0.055491 0.429933 +-0.322256 -0.05549 0.429933 +-0.311146 -0.066598 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.666658 0.044482 0.325433 +-0.655548 0.033373 0.429933 +-0.655548 -0.055493 0.429933 +-0.666657 -0.066602 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.666657 -0.066602 0.325433 +-0.655548 -0.055493 0.429933 +-0.56667 -0.055492 0.429933 +-0.55556 -0.066601 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.55556 -0.066601 0.325433 +-0.56667 -0.055492 0.429933 +-0.56667 0.033374 0.429933 +-0.55556 0.044483 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.55556 0.044483 0.325433 +-0.56667 0.033374 0.429933 +-0.655548 0.033373 0.429933 +-0.666658 0.044482 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.56667 0.033374 0.429933 +-0.56667 -0.055492 0.429933 +-0.655548 -0.055493 0.429933 +-0.655548 0.033373 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.688877 0.033373 0.429933 +-0.688877 -0.055493 0.429933 +-0.777755 -0.055494 0.429933 +-0.777755 0.033372 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.677768 0.044482 0.325433 +-0.688877 0.033373 0.429933 +-0.777755 0.033372 0.429933 +-0.788865 0.044481 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.677768 -0.066602 0.325433 +-0.688877 -0.055493 0.429933 +-0.688877 0.033373 0.429933 +-0.677768 0.044482 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000006 0.256848 +0.966452 0.000006 0.256848 +0.966452 0.000006 0.256848 +0.966452 0.000006 0.256848 + +TEX:SIDE +POSITION: +-0.788865 -0.066603 0.325433 +-0.777755 -0.055494 0.429933 +-0.688877 -0.055493 0.429933 +-0.677768 -0.066602 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.788865 0.044481 0.325433 +-0.777755 0.033372 0.429933 +-0.777755 -0.055494 0.429933 +-0.788865 -0.066603 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.300037 0.044485 0.325433 +-0.288927 0.033376 0.429933 +-0.288927 -0.05549 0.429933 +-0.300037 -0.066599 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.300037 -0.066599 0.325433 +-0.288927 -0.05549 0.429933 +-0.200049 -0.05549 0.429933 +-0.188939 -0.066598 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.188939 -0.066598 0.325433 +-0.200049 -0.05549 0.429933 +-0.200049 0.033377 0.429933 +-0.188939 0.044486 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +-0.188939 0.044486 0.325433 +-0.200049 0.033377 0.429933 +-0.288927 0.033376 0.429933 +-0.300037 0.044485 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.200049 0.033377 0.429933 +-0.200049 -0.05549 0.429933 +-0.288927 -0.05549 0.429933 +-0.288927 0.033376 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.077842 0.033377 0.429933 +-0.077842 -0.055489 0.429933 +-0.16672 -0.055489 0.429933 +-0.16672 0.033377 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.066732 0.044487 0.325433 +-0.077842 0.033377 0.429933 +-0.16672 0.033377 0.429933 +-0.17783 0.044486 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.066732 -0.066598 0.325433 +-0.077842 -0.055489 0.429933 +-0.077842 0.033377 0.429933 +-0.066732 0.044487 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.17783 -0.066598 0.325433 +-0.16672 -0.055489 0.429933 +-0.077842 -0.055489 0.429933 +-0.066732 -0.066598 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +-0.17783 0.044486 0.325433 +-0.16672 0.033377 0.429933 +-0.16672 -0.055489 0.429933 +-0.17783 -0.066598 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +0.066584 0.044488 0.325433 +0.077694 0.03338 0.429933 +0.077694 -0.055487 0.429933 +0.066585 -0.066596 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.066585 -0.066596 0.325433 +0.077694 -0.055487 0.429933 +0.166572 -0.055487 0.429933 +0.177682 -0.066595 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.177682 -0.066595 0.325433 +0.166572 -0.055487 0.429933 +0.166572 0.03338 0.429933 +0.177682 0.044488 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +0.177682 0.044488 0.325433 +0.166572 0.03338 0.429933 +0.077694 0.03338 0.429933 +0.066584 0.044488 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.166572 0.03338 0.429933 +0.166572 -0.055487 0.429933 +0.077694 -0.055487 0.429933 +0.077694 0.03338 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.044365 0.033379 0.429933 +0.044365 -0.055488 0.429933 +-0.044513 -0.055488 0.429933 +-0.044513 0.033379 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.055475 0.044487 0.325433 +0.044365 0.033379 0.429933 +-0.044513 0.033379 0.429933 +-0.055623 0.044487 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.055476 -0.066596 0.325433 +0.044365 -0.055488 0.429933 +0.044365 0.033379 0.429933 +0.055475 0.044487 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.055623 -0.066596 0.325433 +-0.044513 -0.055488 0.429933 +0.044365 -0.055488 0.429933 +0.055476 -0.066596 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.055623 0.044487 0.325433 +-0.044513 0.033379 0.429933 +-0.044513 -0.055488 0.429933 +-0.055623 -0.066596 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.011183 -0.188788 0.325433 +-0.022292 -0.17768 0.429933 +-0.022292 -0.088813 0.429933 +-0.011184 -0.077705 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.011184 -0.077705 0.325433 +-0.022292 -0.088813 0.429933 +-0.11117 -0.088814 0.429933 +-0.12228 -0.077706 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.022292 -0.088813 0.429933 +-0.022292 -0.17768 0.429933 +-0.11117 -0.177681 0.429933 +-0.11117 -0.088814 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.111024 -0.077704 0.325433 +0.099915 -0.088812 0.429933 +0.011037 -0.088813 0.429933 +-0.000073 -0.077705 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.111024 -0.188787 0.325433 +0.099915 -0.177679 0.429933 +0.099915 -0.088812 0.429933 +0.111024 -0.077704 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 +0.966451 0.000007 0.25685 + +TEX:SIDE +POSITION: +-0.244487 -0.077707 0.325433 +-0.233377 -0.088815 0.429933 +-0.233377 -0.177682 0.429933 +-0.244487 -0.18879 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.244487 -0.18879 0.325433 +-0.233377 -0.177682 0.429933 +-0.144499 -0.177681 0.429933 +-0.13339 -0.188789 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.13339 -0.077706 0.325433 +-0.144499 -0.088814 0.429933 +-0.233377 -0.088815 0.429933 +-0.244487 -0.077707 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.266706 -0.088815 0.429933 +-0.266706 -0.177682 0.429933 +-0.355584 -0.177683 0.429933 +-0.355584 -0.088816 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.255597 -0.18879 0.325433 +-0.266706 -0.177682 0.429933 +-0.266706 -0.088815 0.429933 +-0.255598 -0.077707 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 +0.966452 0.000007 0.256847 + +TEX:SIDE +POSITION: +-0.366695 -0.077708 0.325433 +-0.355584 -0.088816 0.429933 +-0.355584 -0.177683 0.429933 +-0.366694 -0.188791 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 +-0.966446 -0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.744425 -0.188793 0.325433 +-0.755535 -0.177686 0.429933 +-0.755535 -0.088819 0.429933 +-0.744425 -0.07771 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.755535 -0.088819 0.429933 +-0.755535 -0.177686 0.429933 +-0.844413 -0.177686 0.429933 +-0.844413 -0.088819 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.633328 -0.088818 0.429933 +-0.633328 -0.177685 0.429933 +-0.722206 -0.177685 0.429933 +-0.722206 -0.088818 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.622218 -0.07771 0.325433 +-0.633328 -0.088818 0.429933 +-0.722206 -0.088818 0.429933 +-0.733316 -0.07771 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.377804 -0.077708 0.325433 +-0.388914 -0.088816 0.429933 +-0.477792 -0.088817 0.429933 +-0.488901 -0.077709 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.388914 -0.088816 0.429933 +-0.388914 -0.177683 0.429933 +-0.477792 -0.177684 0.429933 +-0.477792 -0.088817 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.511121 -0.088817 0.429933 +-0.511121 -0.177684 0.429933 +-0.599998 -0.177684 0.429933 +-0.599998 -0.088817 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.500011 -0.077709 0.325433 +-0.511121 -0.088817 0.429933 +-0.599998 -0.088817 0.429933 +-0.611108 -0.07771 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.500011 -0.188792 0.325433 +-0.511121 -0.177684 0.429933 +-0.511121 -0.088817 0.429933 +-0.500011 -0.077709 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.611108 -0.07771 0.325433 +-0.599998 -0.088817 0.429933 +-0.599998 -0.177684 0.429933 +-0.611108 -0.188793 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.866633 -0.077711 0.325433 +-0.877742 -0.088819 0.429933 +-0.966619 -0.08882 0.429933 +-0.977729 -0.077712 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.866632 -0.188794 0.325433 +-0.877742 -0.177686 0.429933 +-0.877742 -0.088819 0.429933 +-0.866633 -0.077711 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +-0.977729 -0.188795 0.325433 +-0.966619 -0.177687 0.429933 +-0.877742 -0.177686 0.429933 +-0.866632 -0.188794 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.977729 -0.077712 0.325433 +-0.966619 -0.08882 0.429933 +-0.966619 -0.177687 0.429933 +-0.977729 -0.188795 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256867 +-0.966447 -0.000006 0.256867 +-0.966447 -0.000006 0.256867 +-0.966447 -0.000006 0.256867 + +TEX:SIDE +POSITION: +-0.877742 -0.088819 0.429933 +-0.877742 -0.177686 0.429933 +-0.966619 -0.177687 0.429933 +-0.966619 -0.08882 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.611108 -0.188793 0.325433 +-0.599998 -0.177684 0.429933 +-0.511121 -0.177684 0.429933 +-0.500011 -0.188792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.377804 -0.188791 0.325433 +-0.388914 -0.177683 0.429933 +-0.388914 -0.088816 0.429933 +-0.377804 -0.077708 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 +0.966446 0.000008 0.256869 + +TEX:SIDE +POSITION: +-0.488901 -0.188792 0.325433 +-0.477792 -0.177684 0.429933 +-0.388914 -0.177683 0.429933 +-0.377804 -0.188791 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.488901 -0.077709 0.325433 +-0.477792 -0.088817 0.429933 +-0.477792 -0.177684 0.429933 +-0.488901 -0.188792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 +-0.966452 -0.000007 0.256847 + +TEX:SIDE +POSITION: +-0.733316 -0.07771 0.325433 +-0.722206 -0.088818 0.429933 +-0.722206 -0.177685 0.429933 +-0.733315 -0.188793 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 +-0.966452 -0.000008 0.256848 + +TEX:SIDE +POSITION: +-0.733315 -0.188793 0.325433 +-0.722206 -0.177685 0.429933 +-0.633328 -0.177685 0.429933 +-0.622218 -0.188793 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.622218 -0.188793 0.325433 +-0.633328 -0.177685 0.429933 +-0.633328 -0.088818 0.429933 +-0.622218 -0.07771 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.744425 -0.07771 0.325433 +-0.755535 -0.088819 0.429933 +-0.844413 -0.088819 0.429933 +-0.855522 -0.077711 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.855522 -0.077711 0.325433 +-0.844413 -0.088819 0.429933 +-0.844413 -0.177686 0.429933 +-0.855522 -0.188794 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000006 0.256848 +-0.966452 -0.000006 0.256848 +-0.966452 -0.000006 0.256848 +-0.966452 -0.000006 0.256848 + +TEX:SIDE +POSITION: +-0.366694 -0.188791 0.325433 +-0.355584 -0.177683 0.429933 +-0.266706 -0.177682 0.429933 +-0.255597 -0.18879 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.255598 -0.077707 0.325433 +-0.266706 -0.088815 0.429933 +-0.355584 -0.088816 0.429933 +-0.366695 -0.077708 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.144499 -0.088814 0.429933 +-0.144499 -0.177681 0.429933 +-0.233377 -0.177682 0.429933 +-0.233377 -0.088815 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.13339 -0.188789 0.325433 +-0.144499 -0.177681 0.429933 +-0.144499 -0.088814 0.429933 +-0.13339 -0.077706 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000006 0.256847 +0.966452 0.000006 0.256847 +0.966452 0.000006 0.256847 +0.966452 0.000006 0.256847 + +TEX:SIDE +POSITION: +-0.000073 -0.077705 0.325433 +0.011037 -0.088813 0.429933 +0.011037 -0.17768 0.429933 +-0.000073 -0.188788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-0.000073 -0.188788 0.325433 +0.011037 -0.17768 0.429933 +0.099915 -0.177679 0.429933 +0.111024 -0.188787 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.099915 -0.088812 0.429933 +0.099915 -0.177679 0.429933 +0.011037 -0.17768 0.429933 +0.011037 -0.088813 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.12228 -0.188789 0.325433 +-0.11117 -0.177681 0.429933 +-0.022292 -0.17768 0.429933 +-0.011183 -0.188788 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.12228 -0.077706 0.325433 +-0.11117 -0.088814 0.429933 +-0.11117 -0.177681 0.429933 +-0.12228 -0.188789 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +-1.099939 -0.077713 0.325433 +-1.088829 -0.088821 0.429933 +-1.088829 -0.177688 0.429933 +-1.099939 -0.188796 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 +-0.966447 -0.000008 0.256867 + +TEX:SIDE +POSITION: +-1.099939 -0.188796 0.325433 +-1.088829 -0.177688 0.429933 +-0.999949 -0.177687 0.429933 +-0.988839 -0.188795 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.988839 -0.188795 0.325433 +-0.999949 -0.177687 0.429933 +-0.999949 -0.08882 0.429933 +-0.988839 -0.077712 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.988839 -0.077712 0.325433 +-0.999949 -0.08882 0.429933 +-1.088829 -0.088821 0.429933 +-1.099939 -0.077713 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.999949 -0.08882 0.429933 +-0.999949 -0.177687 0.429933 +-1.088829 -0.177688 0.429933 +-1.088829 -0.088821 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.055499 -0.211013 0.429933 +-1.055498 -0.29988 0.429933 +-1.199918 -0.299881 0.429933 +-1.199919 -0.211014 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.044389 -0.199905 0.325433 +-1.055499 -0.211013 0.429933 +-1.199919 -0.211014 0.429933 +-1.211039 -0.199906 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.044388 -0.310988 0.325433 +-1.055498 -0.29988 0.429933 +-1.055499 -0.211013 0.429933 +-1.044389 -0.199905 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.211038 -0.310989 0.325433 +-1.199918 -0.299881 0.429933 +-1.055498 -0.29988 0.429933 +-1.044388 -0.310988 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.211039 -0.199906 0.325433 +-1.199919 -0.211014 0.429933 +-1.199918 -0.299881 0.429933 +-1.211038 -0.310989 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966389 -0.000007 0.257084 +-0.966389 -0.000007 0.257084 +-0.966389 -0.000007 0.257084 +-0.966389 -0.000007 0.257084 + +TEX:SIDE +POSITION: +-1.033279 -0.199905 0.325433 +-1.022168 -0.211013 0.429933 +-1.022168 -0.29988 0.429933 +-1.033278 -0.310988 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +-1.033278 -0.310988 0.325433 +-1.022168 -0.29988 0.429933 +-0.877741 -0.299878 0.429933 +-0.866631 -0.310986 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.866631 -0.310986 0.325433 +-0.877741 -0.299878 0.429933 +-0.877742 -0.211011 0.429933 +-0.866632 -0.199903 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 +0.966446 0.000006 0.256869 + +TEX:SIDE +POSITION: +-0.866632 -0.199903 0.325433 +-0.877742 -0.211011 0.429933 +-1.022168 -0.211013 0.429933 +-1.033279 -0.199905 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.877742 -0.211011 0.429933 +-0.877741 -0.299878 0.429933 +-1.022168 -0.29988 0.429933 +-1.022168 -0.211013 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.422098 -0.211002 0.429933 +0.422098 -0.299869 0.429933 +0.277671 -0.29987 0.429933 +0.277671 -0.211003 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.433208 -0.199894 0.325433 +0.422098 -0.211002 0.429933 +0.277671 -0.211003 0.429933 +0.266562 -0.199895 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.433208 -0.310977 0.325433 +0.422098 -0.299869 0.429933 +0.422098 -0.211002 0.429933 +0.433208 -0.199894 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +0.266562 -0.310978 0.325433 +0.277671 -0.29987 0.429933 +0.422098 -0.299869 0.429933 +0.433208 -0.310977 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.266562 -0.199895 0.325433 +0.277671 -0.211003 0.429933 +0.277671 -0.29987 0.429933 +0.266562 -0.310978 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 + +TEX:SIDE +POSITION: +0.088805 -0.199896 0.325433 +0.099916 -0.211004 0.429933 +0.099916 -0.299871 0.429933 +0.088806 -0.310979 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +0.088806 -0.310979 0.325433 +0.099916 -0.299871 0.429933 +0.244342 -0.29987 0.429933 +0.255452 -0.310978 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.255452 -0.310978 0.325433 +0.244342 -0.29987 0.429933 +0.244342 -0.211003 0.429933 +0.255451 -0.199895 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +0.255451 -0.199895 0.325433 +0.244342 -0.211003 0.429933 +0.099916 -0.211004 0.429933 +0.088805 -0.199896 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.244342 -0.211003 0.429933 +0.244342 -0.29987 0.429933 +0.099916 -0.299871 0.429933 +0.099916 -0.211004 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.066586 -0.211005 0.429933 +0.066586 -0.299872 0.429933 +-0.07784 -0.299873 0.429933 +-0.077841 -0.211006 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.077695 -0.199896 0.325433 +0.066586 -0.211005 0.429933 +-0.077841 -0.211006 0.429933 +-0.088951 -0.199898 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.077696 -0.310979 0.325433 +0.066586 -0.299872 0.429933 +0.066586 -0.211005 0.429933 +0.077695 -0.199896 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.08895 -0.310981 0.325433 +-0.07784 -0.299873 0.429933 +0.066586 -0.299872 0.429933 +0.077696 -0.310979 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.088951 -0.199898 0.325433 +-0.077841 -0.211006 0.429933 +-0.07784 -0.299873 0.429933 +-0.08895 -0.310981 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +-1.088833 0.411053 0.325433 +-1.077723 0.399945 0.429933 +-1.077723 0.36662 0.429933 +-1.088833 0.355512 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +-1.088833 0.355512 0.325433 +-1.077723 0.36662 0.429933 +-0.988843 0.366621 0.429933 +-0.977733 0.355513 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.977733 0.355513 0.325433 +-0.988843 0.366621 0.429933 +-0.988843 0.399946 0.429933 +-0.977733 0.411054 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 + +TEX:SIDE +POSITION: +-0.977733 0.411054 0.325433 +-0.988843 0.399946 0.429933 +-1.077723 0.399945 0.429933 +-1.088833 0.411053 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.988843 0.399946 0.429933 +-0.988843 0.366621 0.429933 +-1.077723 0.36662 0.429933 +-1.077723 0.399945 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.866636 0.399947 0.429933 +-0.866636 0.366622 0.429933 +-0.955514 0.366621 0.429933 +-0.955514 0.399946 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.855526 0.411055 0.325433 +-0.866636 0.399947 0.429933 +-0.955514 0.399946 0.429933 +-0.966623 0.411054 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.855526 0.355514 0.325433 +-0.866636 0.366622 0.429933 +-0.866636 0.399947 0.429933 +-0.855526 0.411055 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 + +TEX:SIDE +POSITION: +-0.966623 0.355513 0.325433 +-0.955514 0.366621 0.429933 +-0.866636 0.366622 0.429933 +-0.855526 0.355514 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.966623 0.411054 0.325433 +-0.955514 0.399946 0.429933 +-0.955514 0.366621 0.429933 +-0.966623 0.355513 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.844417 0.411055 0.325433 +-0.833307 0.399947 0.429933 +-0.833307 0.366622 0.429933 +-0.844417 0.355514 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.256869 +-0.966446 -0.000007 0.256869 +-0.966446 -0.000007 0.256869 +-0.966446 -0.000007 0.256869 + +TEX:SIDE +POSITION: +-0.844417 0.355514 0.325433 +-0.833307 0.366622 0.429933 +-0.744429 0.366623 0.429933 +-0.733319 0.355515 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.733319 0.355515 0.325433 +-0.744429 0.366623 0.429933 +-0.744429 0.399948 0.429933 +-0.733319 0.411056 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.733319 0.411056 0.325433 +-0.744429 0.399948 0.429933 +-0.833307 0.399947 0.429933 +-0.844417 0.411055 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.744429 0.399948 0.429933 +-0.744429 0.366623 0.429933 +-0.833307 0.366622 0.429933 +-0.833307 0.399947 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.122284 0.399952 0.429933 +-0.122284 0.366627 0.429933 +-0.211162 0.366626 0.429933 +-0.211162 0.399952 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.111174 0.41106 0.325433 +-0.122284 0.399952 0.429933 +-0.211162 0.399952 0.429933 +-0.222271 0.411059 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.111174 0.355519 0.325433 +-0.122284 0.366627 0.429933 +-0.122284 0.399952 0.429933 +-0.111174 0.41106 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.222272 0.355518 0.325433 +-0.211162 0.366626 0.429933 +-0.122284 0.366627 0.429933 +-0.111174 0.355519 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.222271 0.411059 0.325433 +-0.211162 0.399952 0.429933 +-0.211162 0.366626 0.429933 +-0.222272 0.355518 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966449 0.000004 0.256859 +-0.966449 0.000004 0.256859 +-0.966449 0.000004 0.256859 +-0.966449 0.000004 0.256859 + +TEX:SIDE +POSITION: +-0.344479 0.411059 0.325433 +-0.333369 0.399951 0.429933 +-0.333369 0.366626 0.429933 +-0.344479 0.355518 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 + +TEX:SIDE +POSITION: +-0.344479 0.355518 0.325433 +-0.333369 0.366626 0.429933 +-0.244491 0.366626 0.429933 +-0.233381 0.355518 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.233381 0.355518 0.325433 +-0.244491 0.366626 0.429933 +-0.244491 0.399951 0.429933 +-0.233381 0.411059 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.233381 0.411059 0.325433 +-0.244491 0.399951 0.429933 +-0.333369 0.399951 0.429933 +-0.344479 0.411059 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.244491 0.399951 0.429933 +-0.244491 0.366626 0.429933 +-0.333369 0.366626 0.429933 +-0.333369 0.399951 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.366698 0.39995 0.429933 +-0.366698 0.366625 0.429933 +-0.455576 0.366625 0.429933 +-0.455576 0.39995 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.355588 0.411058 0.325433 +-0.366698 0.39995 0.429933 +-0.455576 0.39995 0.429933 +-0.466686 0.411058 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.355588 0.355517 0.325433 +-0.366698 0.366625 0.429933 +-0.366698 0.39995 0.429933 +-0.355588 0.411058 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 + +TEX:SIDE +POSITION: +-0.466686 0.355517 0.325433 +-0.455576 0.366625 0.429933 +-0.366698 0.366625 0.429933 +-0.355588 0.355517 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.466686 0.411058 0.325433 +-0.455576 0.39995 0.429933 +-0.455576 0.366625 0.429933 +-0.466686 0.355517 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +-0.588893 0.411057 0.325433 +-0.577783 0.399949 0.429933 +-0.577783 0.366624 0.429933 +-0.588893 0.355516 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 + +TEX:SIDE +POSITION: +-0.588893 0.355516 0.325433 +-0.577783 0.366624 0.429933 +-0.488905 0.366624 0.429933 +-0.477795 0.355517 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-0.477795 0.355517 0.325433 +-0.488905 0.366624 0.429933 +-0.488905 0.399949 0.429933 +-0.477795 0.411058 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 +0.966446 0.000007 0.256869 + +TEX:SIDE +POSITION: +-0.488905 0.399949 0.429933 +-0.488905 0.366624 0.429933 +-0.577783 0.366624 0.429933 +-0.577783 0.399949 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.055472 0.399953 0.429933 +0.055472 0.366628 0.429933 +-0.033406 0.366628 0.429933 +-0.033406 0.399953 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.066581 0.411062 0.325433 +0.055472 0.399953 0.429933 +-0.033406 0.399953 0.429933 +-0.044516 0.411061 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.066582 0.355521 0.325433 +0.055472 0.366628 0.429933 +0.055472 0.399953 0.429933 +0.066581 0.411062 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 +0.966452 0.000008 0.256847 + +TEX:SIDE +POSITION: +-0.044516 0.35552 0.325433 +-0.033406 0.366628 0.429933 +0.055472 0.366628 0.429933 +0.066582 0.355521 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +-0.044516 0.411061 0.325433 +-0.033406 0.399953 0.429933 +-0.033406 0.366628 0.429933 +-0.044516 0.35552 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.077691 0.411062 0.325433 +0.088801 0.399954 0.429933 +0.088801 0.366629 0.429933 +0.077691 0.355521 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 +-0.966446 -0.000005 0.25687 + +TEX:SIDE +POSITION: +0.077691 0.355521 0.325433 +0.088801 0.366629 0.429933 +0.177679 0.366629 0.429933 +0.188788 0.355521 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.188788 0.355521 0.325433 +0.177679 0.366629 0.429933 +0.177679 0.399954 0.429933 +0.188789 0.411062 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 + +TEX:SIDE +POSITION: +0.188789 0.411062 0.325433 +0.177679 0.399954 0.429933 +0.088801 0.399954 0.429933 +0.077691 0.411062 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.177679 0.399954 0.429933 +0.177679 0.366629 0.429933 +0.088801 0.366629 0.429933 +0.088801 0.399954 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.299886 0.399955 0.429933 +0.299886 0.36663 0.429933 +0.211008 0.36663 0.429933 +0.211008 0.399955 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.310995 0.411063 0.325433 +0.299886 0.399955 0.429933 +0.211008 0.399955 0.429933 +0.199898 0.411062 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.310995 0.355522 0.325433 +0.299886 0.36663 0.429933 +0.299886 0.399955 0.429933 +0.310995 0.411063 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966451 0.000005 0.25685 +0.966451 0.000005 0.25685 +0.966451 0.000005 0.25685 +0.966451 0.000005 0.25685 + +TEX:SIDE +POSITION: +0.199899 0.355522 0.325433 +0.211008 0.36663 0.429933 +0.299886 0.36663 0.429933 +0.310995 0.355522 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.199898 0.411062 0.325433 +0.211008 0.399955 0.429933 +0.211008 0.36663 0.429933 +0.199899 0.355522 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.322105 0.411063 0.325433 +0.333215 0.399956 0.429933 +0.333215 0.36663 0.429933 +0.322105 0.355522 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +0.322105 0.355522 0.325433 +0.333215 0.36663 0.429933 +0.422093 0.366631 0.429933 +0.433203 0.355523 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.433203 0.355523 0.325433 +0.422093 0.366631 0.429933 +0.422093 0.399956 0.429933 +0.433203 0.411064 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 +0.966449 -0.000003 0.256857 + +TEX:SIDE +POSITION: +0.433203 0.411064 0.325433 +0.422093 0.399956 0.429933 +0.333215 0.399956 0.429933 +0.322105 0.411063 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.422093 0.399956 0.429933 +0.422093 0.366631 0.429933 +0.333215 0.36663 0.429933 +0.333215 0.399956 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-1.388793 0.411051 0.325433 +-1.377683 0.399943 0.429933 +-1.377683 0.366618 0.429933 +-1.388793 0.35551 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 +-0.966446 -0.000008 0.25687 + +TEX:SIDE +POSITION: +-1.388793 0.35551 0.325433 +-1.377683 0.366618 0.429933 +-1.288803 0.366619 0.429933 +-1.277693 0.355511 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +-1.277693 0.355511 0.325433 +-1.288803 0.366619 0.429933 +-1.288803 0.399944 0.429933 +-1.277693 0.411052 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +-1.277693 0.411052 0.325433 +-1.288803 0.399944 0.429933 +-1.377683 0.399943 0.429933 +-1.388793 0.411051 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +-1.288803 0.399944 0.429933 +-1.288803 0.366619 0.429933 +-1.377683 0.366618 0.429933 +-1.377683 0.399943 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.855377 -0.310974 0.325433 +0.844267 -0.299865 0.429933 +0.844266 -0.210998 0.429933 +0.855377 -0.19989 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.622073 -0.199893 0.325433 +0.633182 -0.211 0.429933 +0.633182 -0.299867 0.429933 +0.622073 -0.310976 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 + +TEX:SIDE +POSITION: +0.622073 -0.310976 0.325433 +0.633182 -0.299867 0.429933 +0.72206 -0.299867 0.429933 +0.73317 -0.310975 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.73317 -0.310975 0.325433 +0.72206 -0.299867 0.429933 +0.72206 -0.211 0.429933 +0.73317 -0.199892 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.73317 -0.199892 0.325433 +0.72206 -0.211 0.429933 +0.633182 -0.211 0.429933 +0.622073 -0.199893 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.72206 -0.211 0.429933 +0.72206 -0.299867 0.429933 +0.633182 -0.299867 0.429933 +0.633182 -0.211 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.599853 -0.211001 0.429933 +0.599853 -0.299868 0.429933 +0.510975 -0.299868 0.429933 +0.510974 -0.211001 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.499866 -0.199893 0.325433 +0.510974 -0.211001 0.429933 +0.510975 -0.299868 0.429933 +0.499866 -0.310976 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 + +TEX:SIDE +POSITION: +0.499866 -0.310976 0.325433 +0.510975 -0.299868 0.429933 +0.599853 -0.299868 0.429933 +0.610963 -0.310976 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.610963 -0.310976 0.325433 +0.599853 -0.299868 0.429933 +0.599853 -0.211001 0.429933 +0.610962 -0.199893 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +0.610962 -0.199893 0.325433 +0.599853 -0.211001 0.429933 +0.510974 -0.211001 0.429933 +0.499866 -0.199893 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.844266 -0.210998 0.429933 +0.844267 -0.299865 0.429933 +0.755389 -0.299866 0.429933 +0.755389 -0.210999 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.855377 -0.19989 0.325433 +0.844266 -0.210998 0.429933 +0.755389 -0.210999 0.429933 +0.744279 -0.199891 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.74428 -0.310975 0.325433 +0.755389 -0.299866 0.429933 +0.844267 -0.299865 0.429933 +0.855377 -0.310974 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +0.744279 -0.199891 0.325433 +0.755389 -0.210999 0.429933 +0.755389 -0.299866 0.429933 +0.74428 -0.310975 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +0.622073 -0.188784 0.325433 +0.633181 -0.177675 0.429933 +0.722059 -0.177675 0.429933 +0.733169 -0.188783 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.733169 -0.0777 0.325433 +0.722059 -0.088808 0.429933 +0.633181 -0.088808 0.429933 +0.622072 -0.077701 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.722059 -0.088808 0.429933 +0.722059 -0.177675 0.429933 +0.633181 -0.177675 0.429933 +0.633181 -0.088808 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.733169 -0.188783 0.325433 +0.722059 -0.177675 0.429933 +0.722059 -0.088808 0.429933 +0.733169 -0.0777 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +0.62207 0.177792 0.325433 +0.633179 0.1889 0.429933 +0.722057 0.1889 0.429933 +0.733167 0.177792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.733167 0.177792 0.325433 +0.722057 0.1889 0.429933 +0.722056 0.277767 0.429933 +0.733166 0.288875 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.733166 0.288875 0.325433 +0.722056 0.277767 0.429933 +0.633178 0.277767 0.429933 +0.622069 0.288875 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.722056 0.277767 0.429933 +0.722057 0.1889 0.429933 +0.633179 0.1889 0.429933 +0.633178 0.277767 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.622069 0.288875 0.325433 +0.633178 0.277767 0.429933 +0.633179 0.1889 0.429933 +0.62207 0.177792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +0.744277 0.166684 0.325433 +0.755386 0.155577 0.429933 +0.755387 0.06671 0.429933 +0.744278 0.0556 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 + +TEX:SIDE +POSITION: +0.744278 0.0556 0.325433 +0.755387 0.06671 0.429933 +0.844265 0.06671 0.429933 +0.855375 0.055601 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +0.844264 0.155577 0.429933 +0.844265 0.06671 0.429933 +0.755387 0.06671 0.429933 +0.755386 0.155577 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.62207 0.166683 0.325433 +0.633179 0.155575 0.429933 +0.63318 0.066708 0.429933 +0.622071 0.0556 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 +-0.966451 -0.000007 0.25685 + +TEX:SIDE +POSITION: +0.622071 0.0556 0.325433 +0.63318 0.066708 0.429933 +0.722058 0.066708 0.429933 +0.733168 0.0556 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.733168 0.0556 0.325433 +0.722058 0.066708 0.429933 +0.722057 0.155575 0.429933 +0.733167 0.166683 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +0.61096 0.166683 0.325433 +0.59985 0.155574 0.429933 +0.510972 0.155574 0.429933 +0.499863 0.166682 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.610961 0.0556 0.325433 +0.599851 0.066707 0.429933 +0.59985 0.155574 0.429933 +0.61096 0.166683 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 + +TEX:SIDE +POSITION: +0.499864 0.055599 0.325433 +0.510973 0.066707 0.429933 +0.599851 0.066707 0.429933 +0.610961 0.0556 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.499863 0.166682 0.325433 +0.510972 0.155574 0.429933 +0.510973 0.066707 0.429933 +0.499864 0.055599 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +0.59985 0.155574 0.429933 +0.599851 0.066707 0.429933 +0.510973 0.066707 0.429933 +0.510972 0.155574 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.722057 0.155575 0.429933 +0.722058 0.066708 0.429933 +0.63318 0.066708 0.429933 +0.633179 0.155575 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.733167 0.166683 0.325433 +0.722057 0.155575 0.429933 +0.633179 0.155575 0.429933 +0.62207 0.166683 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.855374 0.166685 0.325433 +0.844264 0.155577 0.429933 +0.755386 0.155577 0.429933 +0.744277 0.166684 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.855375 0.055601 0.325433 +0.844265 0.06671 0.429933 +0.844264 0.155577 0.429933 +0.855374 0.166685 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.744277 0.177792 0.325433 +0.755386 0.188901 0.429933 +0.844264 0.188901 0.429933 +0.855374 0.177793 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.855374 0.177793 0.325433 +0.844264 0.188901 0.429933 +0.844263 0.277768 0.429933 +0.855373 0.288876 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +0.599849 0.277766 0.429933 +0.59985 0.188899 0.429933 +0.510972 0.188899 0.429933 +0.510971 0.277766 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.610959 0.288875 0.325433 +0.599849 0.277766 0.429933 +0.510971 0.277766 0.429933 +0.499862 0.288874 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.499862 0.288874 0.325433 +0.510971 0.277766 0.429933 +0.510972 0.188899 0.429933 +0.499863 0.177791 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 +-0.966452 -0.000006 0.256847 + +TEX:SIDE +POSITION: +0.499863 0.177791 0.325433 +0.510972 0.188899 0.429933 +0.59985 0.188899 0.429933 +0.61096 0.177792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.61096 0.177792 0.325433 +0.59985 0.188899 0.429933 +0.599849 0.277766 0.429933 +0.610959 0.288875 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.844263 0.277768 0.429933 +0.844264 0.188901 0.429933 +0.755386 0.188901 0.429933 +0.755385 0.277768 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.855373 0.288876 0.325433 +0.844263 0.277768 0.429933 +0.755385 0.277768 0.429933 +0.744276 0.288875 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.744276 0.288875 0.325433 +0.755385 0.277768 0.429933 +0.755386 0.188901 0.429933 +0.744277 0.177792 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 +-0.966453 -0.000007 0.256845 + +TEX:SIDE +POSITION: +0.844262 0.399959 0.429933 +0.844262 0.366634 0.429933 +0.755384 0.366634 0.429933 +0.755384 0.399959 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.855372 0.411067 0.325433 +0.844262 0.399959 0.429933 +0.755384 0.399959 0.429933 +0.744275 0.411066 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 +-0.000007 0.966458 0.256825 + +TEX:SIDE +POSITION: +0.855372 0.355526 0.325433 +0.844262 0.366634 0.429933 +0.844262 0.399959 0.429933 +0.855372 0.411067 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +0.744275 0.355525 0.325433 +0.755384 0.366634 0.429933 +0.844262 0.366634 0.429933 +0.855372 0.355526 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.744275 0.411066 0.325433 +0.755384 0.399959 0.429933 +0.755384 0.366634 0.429933 +0.744275 0.355525 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +0.622068 0.411067 0.325433 +0.633177 0.399958 0.429933 +0.633177 0.366633 0.429933 +0.622068 0.355525 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +0.622068 0.355525 0.325433 +0.633177 0.366633 0.429933 +0.722055 0.366633 0.429933 +0.733165 0.355525 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.733165 0.355525 0.325433 +0.722055 0.366633 0.429933 +0.722055 0.399958 0.429933 +0.733165 0.411066 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 +0.966447 0.000008 0.256868 + +TEX:SIDE +POSITION: +0.733165 0.411066 0.325433 +0.722055 0.399958 0.429933 +0.633177 0.399958 0.429933 +0.622068 0.411067 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000002 0.966455 0.256836 +-0.000002 0.966455 0.256836 +-0.000002 0.966455 0.256836 +-0.000002 0.966455 0.256836 + +TEX:SIDE +POSITION: +0.722055 0.399958 0.429933 +0.722055 0.366633 0.429933 +0.633177 0.366633 0.429933 +0.633177 0.399958 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.599848 0.399957 0.429933 +0.599848 0.366632 0.429933 +0.51097 0.366632 0.429933 +0.51097 0.399957 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.610958 0.411067 0.325433 +0.599848 0.399957 0.429933 +0.51097 0.399957 0.429933 +0.499861 0.411066 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 +-0.000007 0.966452 0.256847 + +TEX:SIDE +POSITION: +0.610958 0.355525 0.325433 +0.599848 0.366632 0.429933 +0.599848 0.399957 0.429933 +0.610958 0.411067 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 +0.966446 0.000005 0.25687 + +TEX:SIDE +POSITION: +0.499862 0.355524 0.325433 +0.51097 0.366632 0.429933 +0.599848 0.366632 0.429933 +0.610958 0.355525 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +0.499861 0.411066 0.325433 +0.51097 0.399957 0.429933 +0.51097 0.366632 0.429933 +0.499862 0.355524 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 +-0.966452 -0.000008 0.256847 + +TEX:SIDE +POSITION: +1.166448 0.288879 0.325433 +1.177558 0.277771 0.429933 +1.177558 0.188904 0.429933 +1.166449 0.177796 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +1.166449 0.177796 0.325433 +1.177558 0.188904 0.429933 +1.266439 0.188904 0.429933 +1.277539 0.177796 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.277539 0.177796 0.325433 +1.266439 0.188904 0.429933 +1.266438 0.277771 0.429933 +1.277538 0.288879 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 + +TEX:SIDE +POSITION: +1.022018 0.277769 0.429933 +1.022018 0.188903 0.429933 +0.933142 0.188902 0.429933 +0.933141 0.277769 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.033129 0.177795 0.325433 +1.022018 0.188903 0.429933 +1.022018 0.277769 0.429933 +1.033128 0.288878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.922032 0.177794 0.325433 +0.933142 0.188902 0.429933 +1.022018 0.188903 0.429933 +1.033129 0.177795 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922031 0.288877 0.325433 +0.933141 0.277769 0.429933 +0.933142 0.188902 0.429933 +0.922032 0.177794 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +1.266438 0.277771 0.429933 +1.266439 0.188904 0.429933 +1.177558 0.188904 0.429933 +1.177558 0.277771 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.277538 0.288879 0.325433 +1.266438 0.277771 0.429933 +1.177558 0.277771 0.429933 +1.166448 0.288879 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.27754 0.055604 0.325433 +1.266439 0.066713 0.429933 +1.266439 0.15558 0.429933 +1.277539 0.166688 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 + +TEX:SIDE +POSITION: +1.266439 0.15558 0.429933 +1.266439 0.066713 0.429933 +1.177559 0.066713 0.429933 +1.177559 0.15558 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.044239 0.166686 0.325433 +1.055349 0.155578 0.429933 +1.055349 0.066711 0.429933 +1.04424 0.055603 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +1.155339 0.166686 0.325433 +1.144229 0.155578 0.429933 +1.055349 0.155578 0.429933 +1.044239 0.166686 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.144229 0.155578 0.429933 +1.144229 0.066711 0.429933 +1.055349 0.066711 0.429933 +1.055349 0.155578 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.022019 0.155578 0.429933 +1.022019 0.066711 0.429933 +0.933143 0.06671 0.429933 +0.933142 0.155577 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +0.922032 0.166685 0.325433 +0.933142 0.155577 0.429933 +0.933143 0.06671 0.429933 +0.922033 0.055602 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +0.922033 0.055602 0.325433 +0.933143 0.06671 0.429933 +1.022019 0.066711 0.429933 +1.03313 0.055603 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.03313 0.055603 0.325433 +1.022019 0.066711 0.429933 +1.022019 0.155578 0.429933 +1.033129 0.166686 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +1.033129 0.166686 0.325433 +1.022019 0.155578 0.429933 +0.933142 0.155577 0.429933 +0.922032 0.166685 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.15534 0.055603 0.325433 +1.144229 0.066711 0.429933 +1.144229 0.155578 0.429933 +1.155339 0.166686 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +1.277539 0.166688 0.325433 +1.266439 0.15558 0.429933 +1.177559 0.15558 0.429933 +1.166449 0.166688 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.16645 0.055604 0.325433 +1.177559 0.066713 0.429933 +1.266439 0.066713 0.429933 +1.27754 0.055604 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +1.166449 0.166688 0.325433 +1.177559 0.15558 0.429933 +1.177559 0.066713 0.429933 +1.16645 0.055604 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +1.044239 0.177795 0.325433 +1.055348 0.188903 0.429933 +1.144229 0.188903 0.429933 +1.155339 0.177795 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.155339 0.177795 0.325433 +1.144229 0.188903 0.429933 +1.144228 0.27777 0.429933 +1.155338 0.288878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +1.144228 0.27777 0.429933 +1.144229 0.188903 0.429933 +1.055348 0.188903 0.429933 +1.055348 0.27777 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.155338 0.288878 0.325433 +1.144228 0.27777 0.429933 +1.055348 0.27777 0.429933 +1.044238 0.288878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.044238 0.288878 0.325433 +1.055348 0.27777 0.429933 +1.055348 0.188903 0.429933 +1.044239 0.177795 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +1.16645 0.044496 0.325433 +1.17756 0.033388 0.429933 +1.17756 -0.055479 0.429933 +1.166451 -0.066588 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +1.27754 -0.066587 0.325433 +1.26644 -0.055479 0.429933 +1.26644 0.033388 0.429933 +1.27754 0.044496 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966504 0.000006 0.256652 +0.966504 0.000006 0.256652 +0.966504 0.000006 0.256652 +0.966504 0.000006 0.256652 + +TEX:SIDE +POSITION: +1.26644 0.033388 0.429933 +1.26644 -0.055479 0.429933 +1.17756 -0.055479 0.429933 +1.17756 0.033388 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.04424 0.044495 0.325433 +1.05535 0.033387 0.429933 +1.05535 -0.05548 0.429933 +1.044241 -0.066588 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +1.044241 -0.066588 0.325433 +1.05535 -0.05548 0.429933 +1.14423 -0.05548 0.429933 +1.15534 -0.066588 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.14423 0.033387 0.429933 +1.14423 -0.05548 0.429933 +1.05535 -0.05548 0.429933 +1.05535 0.033387 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.03313 0.044495 0.325433 +1.02202 0.033387 0.429933 +0.933143 0.033386 0.429933 +0.922033 0.044494 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.033131 -0.066589 0.325433 +1.02202 -0.055481 0.429933 +1.02202 0.033387 0.429933 +1.03313 0.044495 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +0.922034 -0.066589 0.325433 +0.933143 -0.055481 0.429933 +1.02202 -0.055481 0.429933 +1.033131 -0.066589 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922033 0.044494 0.325433 +0.933143 0.033386 0.429933 +0.933143 -0.055481 0.429933 +0.922034 -0.066589 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256865 +-0.966447 -0.000007 0.256865 +-0.966447 -0.000007 0.256865 +-0.966447 -0.000007 0.256865 + +TEX:SIDE +POSITION: +1.02202 0.033387 0.429933 +1.02202 -0.055481 0.429933 +0.933143 -0.055481 0.429933 +0.933143 0.033386 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.15534 0.044495 0.325433 +1.14423 0.033387 0.429933 +1.05535 0.033387 0.429933 +1.04424 0.044495 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.15534 -0.066588 0.325433 +1.14423 -0.05548 0.429933 +1.14423 0.033387 0.429933 +1.15534 0.044495 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 +0.966447 0.000006 0.256868 + +TEX:SIDE +POSITION: +1.27754 0.044496 0.325433 +1.26644 0.033388 0.429933 +1.17756 0.033388 0.429933 +1.16645 0.044496 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.166451 -0.066588 0.325433 +1.17756 -0.055479 0.429933 +1.26644 -0.055479 0.429933 +1.27754 -0.066587 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922034 -0.188781 0.325433 +0.933144 -0.177673 0.429933 +1.022021 -0.177673 0.429933 +1.033132 -0.188781 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.033132 -0.188781 0.325433 +1.022021 -0.177673 0.429933 +1.022021 -0.088806 0.429933 +1.033131 -0.077698 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966445 0.000008 0.256873 +0.966445 0.000008 0.256873 +0.966445 0.000008 0.256873 +0.966445 0.000008 0.256873 + +TEX:SIDE +POSITION: +1.022021 -0.088806 0.429933 +1.022021 -0.177673 0.429933 +0.933144 -0.177673 0.429933 +0.933144 -0.088806 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.033131 -0.077698 0.325433 +1.022021 -0.088806 0.429933 +0.933144 -0.088806 0.429933 +0.922034 -0.077698 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922034 -0.077698 0.325433 +0.933144 -0.088806 0.429933 +0.933144 -0.177673 0.429933 +0.922034 -0.188781 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +1.044241 -0.18878 0.325433 +1.055351 -0.177672 0.429933 +1.144231 -0.177672 0.429933 +1.155341 -0.18878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.155341 -0.077697 0.325433 +1.144231 -0.088805 0.429933 +1.055351 -0.088805 0.429933 +1.044241 -0.077697 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.144231 -0.088805 0.429933 +1.144231 -0.177672 0.429933 +1.055351 -0.177672 0.429933 +1.055351 -0.088805 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.155341 -0.18878 0.325433 +1.144231 -0.177672 0.429933 +1.144231 -0.088805 0.429933 +1.155341 -0.077697 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +1.044241 -0.077697 0.325433 +1.055351 -0.088805 0.429933 +1.055351 -0.177672 0.429933 +1.044241 -0.18878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +1.277541 -0.077696 0.325433 +1.266441 -0.088804 0.429933 +1.177561 -0.088804 0.429933 +1.166451 -0.077697 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.266441 -0.088804 0.429933 +1.266441 -0.177671 0.429933 +1.177561 -0.177671 0.429933 +1.177561 -0.088804 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.277541 -0.188779 0.325433 +1.266441 -0.177671 0.429933 +1.266441 -0.088804 0.429933 +1.277541 -0.077696 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 +0.966503 0.000007 0.256654 + +TEX:SIDE +POSITION: +1.166452 -0.18878 0.325433 +1.177561 -0.177671 0.429933 +1.266441 -0.177671 0.429933 +1.277541 -0.188779 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.166451 -0.077697 0.325433 +1.177561 -0.088804 0.429933 +1.177561 -0.177671 0.429933 +1.166452 -0.18878 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +1.266442 -0.210996 0.429933 +1.266442 -0.299863 0.429933 +1.177562 -0.299863 0.429933 +1.177562 -0.210996 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.277541 -0.199888 0.325433 +1.266442 -0.210996 0.429933 +1.177562 -0.210996 0.429933 +1.166452 -0.199889 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.277542 -0.310971 0.325433 +1.266442 -0.299863 0.429933 +1.266442 -0.210996 0.429933 +1.277541 -0.199888 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966505 0.000007 0.256649 +0.966505 0.000007 0.256649 +0.966505 0.000007 0.256649 +0.966505 0.000007 0.256649 + +TEX:SIDE +POSITION: +1.166452 -0.310972 0.325433 +1.177562 -0.299863 0.429933 +1.266442 -0.299863 0.429933 +1.277542 -0.310971 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 +0.000007 -0.966458 0.256825 + +TEX:SIDE +POSITION: +1.166452 -0.199889 0.325433 +1.177562 -0.210996 0.429933 +1.177562 -0.299863 0.429933 +1.166452 -0.310972 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +1.288649 0.177796 0.325433 +1.299758 0.188905 0.429933 +1.388639 0.188905 0.429933 +1.399749 0.177797 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.399749 0.177797 0.325433 +1.388639 0.188905 0.429933 +1.388638 0.277772 0.429933 +1.399748 0.28888 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 +0.966446 0.000007 0.25687 + +TEX:SIDE +POSITION: +1.399748 0.28888 0.325433 +1.388638 0.277772 0.429933 +1.299758 0.277772 0.429933 +1.288648 0.288879 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.388638 0.277772 0.429933 +1.388639 0.188905 0.429933 +1.299758 0.188905 0.429933 +1.299758 0.277772 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.288648 0.288879 0.325433 +1.299758 0.277772 0.429933 +1.299758 0.188905 0.429933 +1.288649 0.177796 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 +-0.966447 -0.000006 0.256868 + +TEX:SIDE +POSITION: +1.388639 0.155581 0.429933 +1.38864 -0.055478 0.429933 +1.29976 -0.055479 0.429933 +1.299759 0.155581 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.399749 0.166689 0.325433 +1.388639 0.155581 0.429933 +1.299759 0.155581 0.429933 +1.288649 0.166688 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.399751 -0.066586 0.325433 +1.38864 -0.055478 0.429933 +1.388639 0.155581 0.429933 +1.399749 0.166689 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +1.288651 -0.066587 0.325433 +1.29976 -0.055479 0.429933 +1.38864 -0.055478 0.429933 +1.399751 -0.066586 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 +0.000007 -0.966458 0.256826 + +TEX:SIDE +POSITION: +1.288649 0.166688 0.325433 +1.299759 0.155581 0.429933 +1.29976 -0.055479 0.429933 +1.288651 -0.066587 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 +-0.966447 -0.000007 0.256868 + +TEX:SIDE +POSITION: +1.399752 -0.31097 0.325433 +1.388642 -0.299861 0.429933 +1.388641 -0.088803 0.429933 +1.399751 -0.077695 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 +0.966447 0.000007 0.256868 + +TEX:SIDE +POSITION: +1.399751 -0.077695 0.325433 +1.388641 -0.088803 0.429933 +1.299761 -0.088804 0.429933 +1.288651 -0.077696 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +1.388641 -0.088803 0.429933 +1.388642 -0.299861 0.429933 +1.299762 -0.299862 0.429933 +1.299761 -0.088804 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.288652 -0.310971 0.325433 +1.299762 -0.299862 0.429933 +1.388642 -0.299861 0.429933 +1.399752 -0.31097 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 +0.000007 -0.966452 0.256847 + +TEX:SIDE +POSITION: +1.288651 -0.077696 0.325433 +1.299761 -0.088804 0.429933 +1.299762 -0.299862 0.429933 +1.288652 -0.310971 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 +-0.966447 -0.000008 0.256868 + +TEX:SIDE +POSITION: +1.155341 -0.199889 0.325433 +1.144232 -0.210997 0.429933 +0.933145 -0.210998 0.429933 +0.922035 -0.19989 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 +-0.000007 0.966458 0.256826 + +TEX:SIDE +POSITION: +0.922035 -0.19989 0.325433 +0.933145 -0.210998 0.429933 +0.933145 -0.299865 0.429933 +0.922035 -0.310973 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 +-0.966446 -0.000007 0.25687 + +TEX:SIDE +POSITION: +1.155342 -0.310972 0.325433 +1.144232 -0.299864 0.429933 +1.144232 -0.210997 0.429933 +1.155341 -0.199889 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 +0.966447 0.000007 0.256865 + +TEX:SIDE +POSITION: +1.144232 -0.299864 0.429933 +0.933145 -0.299865 0.429933 +0.933145 -0.210998 0.429933 +1.144232 -0.210997 0.429933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.066457 0.41107 0.325433 +1.077567 0.399961 0.374933 +1.077567 0.366636 0.374933 +1.066457 0.355528 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 + +TEX:SIDE +POSITION: +1.066457 0.355528 0.325433 +1.077567 0.366636 0.374933 +1.122007 0.366636 0.374933 +1.133117 0.355528 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 + +TEX:SIDE +POSITION: +1.133117 0.355528 0.325433 +1.122007 0.366636 0.374933 +1.122007 0.399961 0.374933 +1.133117 0.41107 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 + +TEX:SIDE +POSITION: +1.133117 0.41107 0.325433 +1.122007 0.399961 0.374933 +1.077567 0.399961 0.374933 +1.066457 0.41107 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 + +TEX:SIDE +POSITION: +1.122007 0.399961 0.374933 +1.122007 0.366636 0.374933 +1.077567 0.366636 0.374933 +1.077567 0.399961 0.374933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.244217 0.399962 0.374933 +1.244217 0.366637 0.374933 +1.199777 0.366637 0.374933 +1.199777 0.399962 0.374933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.255317 0.411071 0.325433 +1.244217 0.399962 0.374933 +1.199777 0.399962 0.374933 +1.188667 0.411071 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 + +TEX:SIDE +POSITION: +1.255317 0.355529 0.325433 +1.244217 0.366637 0.374933 +1.244217 0.399962 0.374933 +1.255317 0.411071 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.872286 0.000007 0.488996 +0.872286 0.000007 0.488996 +0.872286 0.000007 0.488996 +0.872286 0.000007 0.488996 + +TEX:SIDE +POSITION: +1.188667 0.355529 0.325433 +1.199777 0.366637 0.374933 +1.244217 0.366637 0.374933 +1.255317 0.355529 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 + +TEX:SIDE +POSITION: +1.188667 0.411071 0.325433 +1.199777 0.399962 0.374933 +1.199777 0.366637 0.374933 +1.188667 0.355529 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 + +TEX:SIDE +POSITION: +1.310867 0.411072 0.325433 +1.321977 0.399963 0.374933 +1.321977 0.366638 0.374933 +1.310867 0.35553 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 +-0.872096 -0.000005 0.489336 + +TEX:SIDE +POSITION: +1.310867 0.35553 0.325433 +1.321977 0.366638 0.374933 +1.366417 0.366638 0.374933 +1.377527 0.35553 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 +0.000007 -0.872135 0.489266 + +TEX:SIDE +POSITION: +1.377527 0.35553 0.325433 +1.366417 0.366638 0.374933 +1.366417 0.399963 0.374933 +1.377527 0.411072 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 +0.872098 0.000007 0.489332 + +TEX:SIDE +POSITION: +1.377527 0.411072 0.325433 +1.366417 0.399963 0.374933 +1.321977 0.399963 0.374933 +1.310867 0.411072 0.325433 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 +-0.000007 0.872116 0.4893 + +TEX:SIDE +POSITION: +1.366417 0.399963 0.374933 +1.366417 0.366638 0.374933 +1.321977 0.366638 0.374933 +1.321977 0.399963 0.374933 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +-0.2 -0.2 -0.2 -1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +1.319999 0.750002 -0.24 +1.400001 0.500003 -0.3 +1.400001 0.500003 0.3 +1.319999 0.750002 0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952422 0.304783 0 +0.952422 0.304783 0 +0.952422 0.304783 0 +0.952422 0.304783 0 + +TEX:SIDE +POSITION: +0.679999 0.749998 0.24 +0.600001 0.499997 0.3 +0.600001 0.499997 -0.3 +0.679999 0.749998 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952426 0.30477 0 +-0.952426 0.30477 0 +-0.952426 0.30477 0 +-0.952426 0.30477 0 + +TEX:SIDE +POSITION: +1.319999 0.750002 0.24 +1.400001 0.500003 0.3 +0.600001 0.499997 0.3 +0.679999 0.749998 0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.000001 0.095561 0.995424 +-0.000001 0.095561 0.995424 +-0.000001 0.095561 0.995424 +-0.000001 0.095561 0.995424 + +TEX:SIDE +POSITION: +1.319999 0.750002 0.24 +0.679999 0.749998 0.24 +0.679999 0.749998 -0.24 +1.319999 0.750002 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.000007 1 0 +-0.000007 1 0 +-0.000007 1 0 +-0.000007 1 0 + +TEX:SIDE +POSITION: +0.679999 0.749998 -0.24 +0.600001 0.499997 -0.3 +1.400001 0.500003 -0.3 +1.319999 0.750002 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.000001 0.095561 -0.995424 +-0.000001 0.095561 -0.995424 +-0.000001 0.095561 -0.995424 +-0.000001 0.095561 -0.995424 diff --git a/bricks/blb/pixels/HPixel.blb b/bricks/blb/pixels/HPixel.blb new file mode 100644 index 0000000..a2761e9 --- /dev/null +++ b/bricks/blb/pixels/HPixel.blb @@ -0,0 +1,532 @@ +2 2 1 +SPECIAL + +bb + +bb + +1 + +0 0 0 +2 2 1 +COVERAGE: +1 : 4 +1 : 4 +1 : 2 +1 : 2 +1 : 2 +1 : 2 +----------------top quads: +1 + +TEX:PRINT +POSITION: +1 1 0.5 +1 -1 0.5 +-1 -1 0.5 +-1 1 0.5 +UV COORDS: +0 1 +0 0 +1 0 +1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +20 + +TEX:BOTTOMLOOP +POSITION: +0.5 -0.5 -0.5 +0.5 0.5 -0.5 +-0.5 0.5 -0.5 +-0.5 -0.5 -0.5 +UV COORDS: +0 0 +0 1 +1 1 +1 0 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-1 -1 -0.5 +1 -1 -0.5 +0.5 -0.5 -0.5 +-0.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 1 -0.5 +-1 1 -0.5 +-0.5 0.5 -0.5 +0.5 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 -1 -0.5 +1 1 -0.5 +0.5 0.5 -0.5 +0.5 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-1 1 -0.5 +-1 -1 -0.5 +-0.5 -0.5 -0.5 +-0.5 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.1 0.1 -0.75 +-0.9 0.1 -0.75 +-0.9 0.1 -0.5 +-0.1 0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 0.1 -0.75 +-0.1 0.9 -0.75 +-0.9 0.9 -0.75 +-0.9 0.1 -0.75 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 0.9 -0.75 +-0.1 0.9 -0.75 +-0.1 0.9 -0.5 +-0.9 0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.1 0.9 -0.75 +-0.1 0.1 -0.75 +-0.1 0.1 -0.5 +-0.1 0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 0.1 -0.75 +-0.9 0.9 -0.75 +-0.9 0.9 -0.5 +-0.9 0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 -0 +-1 0 -0 +-1 0 -0 +-1 0 -0 + +TEX:SIDE +POSITION: +-0.1 -0.9 -0.75 +-0.9 -0.9 -0.75 +-0.9 -0.9 -0.5 +-0.1 -0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.9 -0.75 +-0.1 -0.1 -0.75 +-0.9 -0.1 -0.75 +-0.9 -0.9 -0.75 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.1 -0.75 +-0.1 -0.1 -0.75 +-0.1 -0.1 -0.5 +-0.9 -0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.1 -0.1 -0.75 +-0.1 -0.9 -0.75 +-0.1 -0.9 -0.5 +-0.1 -0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.9 -0.75 +-0.9 -0.1 -0.75 +-0.9 -0.1 -0.5 +-0.9 -0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 -0 +-1 0 -0 +-1 0 -0 +-1 0 -0 + +TEX:SIDE +POSITION: +0.9 -0.9 -0.75 +0.1 -0.9 -0.75 +0.1 -0.9 -0.5 +0.9 -0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.9 -0.9 -0.75 +0.9 -0.1 -0.75 +0.1 -0.1 -0.75 +0.1 -0.9 -0.75 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +0.1 -0.1 -0.75 +0.9 -0.1 -0.75 +0.9 -0.1 -0.5 +0.1 -0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.9 -0.1 -0.75 +0.9 -0.9 -0.75 +0.9 -0.9 -0.5 +0.9 -0.1 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +0.1 -0.9 -0.75 +0.1 -0.1 -0.75 +0.1 -0.1 -0.5 +0.1 -0.9 -0.5 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 -0 +-1 0 -0 +-1 0 -0 +-1 0 -0 +----------------north quads: +1 + +TEX:SIDE +POSITION: +-1 1 0.5 +-1 1 -0.5 +1 1 -0.5 +1 1 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +1 -1 0.5 +1 1 0.5 +1 1 -0.5 +1 -1 -0.5 +UV COORDS: +0 -0.0859375 +1 -0.0859375 +1 1.08594 +0 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +1 + +TEX:SIDE +POSITION: +1 -1 0.5 +1 -1 -0.5 +-1 -1 -0.5 +-1 -1 0.5 +UV COORDS: +1 -0.0859375 +1 1.08594 +0 1.08594 +0 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-1 -1 -0.5 +-1 1 -0.5 +-1 1 0.5 +-1 -1 0.5 +UV COORDS: +1 1.08594 +0 1.08594 +0 -0.0859375 +1 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/pixels/pixel.blb b/bricks/blb/pixels/pixel.blb new file mode 100644 index 0000000..fe56cba --- /dev/null +++ b/bricks/blb/pixels/pixel.blb @@ -0,0 +1,517 @@ +2 1 5 +SPECIAL + +uu +XX +XX +XX +dd + +1 + +0 0 0 +2 1 5 +COVERAGE: +1 : 2 +1 : 2 +1 : 10 +1 : 5 +1 : 10 +1 : 5 +----------------top quads: +1 + +TEX:TOP +POSITION: +1 0.5 2.5 +1 -0.5 2.5 +-1 -0.5 2.5 +-1 0.5 2.5 +UV COORDS: +0 1 +0 0 +2 0 +2 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-1 -0.5 -2.5 +1 -0.5 -2.5 +0.5 0 -2.5 +-0.5 0 -2.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 0.5 -2.5 +-1 0.5 -2.5 +-0.5 0 -2.5 +0.5 0 -2.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +1 -0.5 -2.5 +1 0.5 -2.5 +0.5 0 -2.5 +0.5 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-1 0.5 -2.5 +-1 -0.5 -2.5 +-0.5 0 -2.5 +-0.5 0 -2.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +1 + +TEX:PRINT +POSITION: +-1 0.5 2.5 +-1 0.5 -2.5 +1 0.5 -2.5 +1 0.5 2.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +1 -0.5 2.5 +1 0.5 2.5 +1 0.5 -2.5 +1 -0.5 -2.5 +UV COORDS: +-0.0214844 0 +1.02148 0 +1.02148 1 +-0.0214844 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +16 + +TEX:SIDE +POSITION: +1 -0.5 2.5 +1 -0.5 -2.5 +-1 -0.5 -2.5 +-1 -0.5 2.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -2.3 +-0.1 -0.64 -2.3 +-0.1 -0.5 -2.3 +-0.9 -0.5 -2.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 -2.3 +-0.9 -0.64 -1.7 +-0.1 -0.64 -1.7 +-0.1 -0.64 -2.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 -1.7 +-0.9 -0.64 -1.7 +-0.9 -0.5 -1.7 +-0.1 -0.5 -1.7 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 -2.3 +-0.1 -0.64 -1.7 +-0.1 -0.5 -1.7 +-0.1 -0.5 -2.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -1.7 +-0.9 -0.64 -2.3 +-0.9 -0.5 -2.3 +-0.9 -0.5 -1.7 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.1 -0.64 -0.3 +-0.1 -0.5 -0.3 +-0.9 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 -0.3 +-0.9 -0.64 0.3 +-0.1 -0.64 0.3 +-0.1 -0.64 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 0.3 +-0.9 -0.64 0.3 +-0.9 -0.5 0.3 +-0.1 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 -0.3 +-0.1 -0.64 0.3 +-0.1 -0.5 0.3 +-0.1 -0.5 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 0.3 +-0.9 -0.64 -0.3 +-0.9 -0.5 -0.3 +-0.9 -0.5 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 1.7 +-0.1 -0.64 1.7 +-0.1 -0.5 1.7 +-0.9 -0.5 1.7 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:SIDE +POSITION: +-0.9 -0.64 1.7 +-0.9 -0.64 2.3 +-0.1 -0.64 2.3 +-0.1 -0.64 1.7 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.1 -0.64 2.3 +-0.9 -0.64 2.3 +-0.9 -0.5 2.3 +-0.1 -0.5 2.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 + +TEX:SIDE +POSITION: +-0.1 -0.64 1.7 +-0.1 -0.64 2.3 +-0.1 -0.5 2.3 +-0.1 -0.5 1.7 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 + +TEX:SIDE +POSITION: +-0.9 -0.64 2.3 +-0.9 -0.64 1.7 +-0.9 -0.5 1.7 +-0.9 -0.5 2.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-1 -0.5 -2.5 +-1 0.5 -2.5 +-1 0.5 2.5 +-1 -0.5 2.5 +UV COORDS: +1.02148 1 +-0.0214844 1 +-0.0214844 0 +1.02148 0 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/switch.blb b/bricks/blb/switch.blb new file mode 100644 index 0000000..6345c02 --- /dev/null +++ b/bricks/blb/switch.blb @@ -0,0 +1,405 @@ +1 2 1 +SPECIAL + +b + +b + +1 + +0 0 0 +1 2 1 +COVERAGE: +1 : 2 +1 : 2 +1 : 1 +1 : 2 +1 : 1 +1 : 2 +----------------top quads: +1 + +TEX:PRINT +POSITION: +0.5 1 0.5 +0.5 -1 0.5 +-0.5 -1 0.5 +-0.5 1 0.5 +UV COORDS: +1 0 +1 1 +0 1 +0 0 +NORMALS: +0 0 1 +0 0 1 +0 0 1 +0 0 1 +----------------bottom quads: +4 + +TEX:BOTTOMEDGE +POSITION: +-0.5 -1 -0.5 +0.5 -1 -0.5 +0 -0.5 -0.5 +0 -0.5 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 1 -0.5 +-0.5 1 -0.5 +0 0.5 -0.5 +0 0.5 -0.5 +UV COORDS: +-0.5 0 +0.5 0 +0 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +0.5 -1 -0.5 +0.5 1 -0.5 +0 0.5 -0.5 +0 -0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 + +TEX:BOTTOMEDGE +POSITION: +-0.5 1 -0.5 +-0.5 -1 -0.5 +0 -0.5 -0.5 +0 0.5 -0.5 +UV COORDS: +-0.5 0 +1.5 0 +1 0.5 +0 0.5 +NORMALS: +0 0 -1 +0 0 -1 +0 0 -1 +0 0 -1 +----------------north quads: +6 + +TEX:SIDE +POSITION: +-0.5 1 0.5 +-0.5 1 -0.5 +0.5 1 -0.5 +0.5 1 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +0.32 1.25 -0.24 +-0.32 1.25 -0.24 +-0.4 1 -0.3 +0.4 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 +-0 0.095561 -0.995424 + +TEX:SIDE +POSITION: +0.32 1.25 -0.24 +0.32 1.25 0.24 +-0.32 1.25 0.24 +-0.32 1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 1 0 +0 1 0 +0 1 0 +0 1 0 + +TEX:SIDE +POSITION: +-0.32 1.25 0.24 +0.32 1.25 0.24 +0.4 1 0.3 +-0.4 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 +-0 0.095561 0.995424 + +TEX:SIDE +POSITION: +-0.32 1.25 -0.24 +-0.32 1.25 0.24 +-0.4 1 0.3 +-0.4 1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 +-0.952424 0.304776 0 + +TEX:SIDE +POSITION: +0.32 1.25 0.24 +0.32 1.25 -0.24 +0.4 1 -0.3 +0.4 1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +0.952424 0.304776 0 +----------------east quads: +1 + +TEX:SIDE +POSITION: +0.5 -1 0.5 +0.5 1 0.5 +0.5 1 -0.5 +0.5 -1 -0.5 +UV COORDS: +0 -0.0859375 +1 -0.0859375 +1 1.08594 +0 1.08594 +NORMALS: +1 0 0 +1 0 0 +1 0 0 +1 0 0 +----------------south quads: +6 + +TEX:SIDE +POSITION: +0.5 -1 0.5 +0.5 -1 -0.5 +-0.5 -1 -0.5 +-0.5 -1 0.5 +UV COORDS: +1.02148 -0.0859375 +1.02148 1.08594 +-0.0214844 1.08594 +-0.0214844 -0.0859375 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +-0.32 -1.25 -0.24 +0.32 -1.25 -0.24 +0.4 -1 -0.3 +-0.4 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -0.095561 -0.995424 +0 -0.095561 -0.995424 +0 -0.095561 -0.995424 +0 -0.095561 -0.995424 + +TEX:SIDE +POSITION: +-0.32 -1.25 -0.24 +-0.32 -1.25 0.24 +0.32 -1.25 0.24 +0.32 -1.25 -0.24 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -1 0 +0 -1 0 +0 -1 0 +0 -1 0 + +TEX:SIDE +POSITION: +0.32 -1.25 0.24 +-0.32 -1.25 0.24 +-0.4 -1 0.3 +0.4 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0 -0.095561 0.995424 +0 -0.095561 0.995424 +0 -0.095561 0.995424 +0 -0.095561 0.995424 + +TEX:SIDE +POSITION: +0.32 -1.25 -0.24 +0.32 -1.25 0.24 +0.4 -1 0.3 +0.4 -1 -0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +0.952424 -0.304776 0 +0.952424 -0.304776 0 +0.952424 -0.304776 0 +0.952424 -0.304776 0 + +TEX:SIDE +POSITION: +-0.32 -1.25 0.24 +-0.32 -1.25 -0.24 +-0.4 -1 -0.3 +-0.4 -1 0.3 +UV COORDS: +0.5 0.5 +0.5 0.5 +0.5 0.5 +0.5 0.5 +COLORS: +1 1 1 1 +1 1 1 1 +1 1 1 1 +1 1 1 1 +NORMALS: +-0.952424 -0.304775 0 +-0.952424 -0.304775 0 +-0.952424 -0.304775 0 +-0.952424 -0.304775 0 +----------------west quads: +1 + +TEX:SIDE +POSITION: +-0.5 -1 -0.5 +-0.5 1 -0.5 +-0.5 1 0.5 +-0.5 -1 0.5 +UV COORDS: +1 1.08594 +0 1.08594 +0 -0.0859375 +1 -0.0859375 +NORMALS: +-1 0 0 +-1 0 0 +-1 0 0 +-1 0 0 +----------------omni quads: +0 diff --git a/bricks/blb/wires/1x11f.blb b/bricks/blb/wires/1x11f.blb new file mode 100644 index 0000000..8c8e078 --- /dev/null +++ b/bricks/blb/wires/1x11f.blb @@ -0,0 +1,2 @@ +1 11 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x13f.blb b/bricks/blb/wires/1x13f.blb new file mode 100644 index 0000000..a658a69 --- /dev/null +++ b/bricks/blb/wires/1x13f.blb @@ -0,0 +1,2 @@ +1 13 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x14f.blb b/bricks/blb/wires/1x14f.blb new file mode 100644 index 0000000..58f5f1f --- /dev/null +++ b/bricks/blb/wires/1x14f.blb @@ -0,0 +1,2 @@ +1 14 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x15f.blb b/bricks/blb/wires/1x15f.blb new file mode 100644 index 0000000..7983c1c --- /dev/null +++ b/bricks/blb/wires/1x15f.blb @@ -0,0 +1,2 @@ +1 15 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x10.blb b/bricks/blb/wires/1x1x10.blb new file mode 100644 index 0000000..07189f5 --- /dev/null +++ b/bricks/blb/wires/1x1x10.blb @@ -0,0 +1,2 @@ +1 1 10 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x11.blb b/bricks/blb/wires/1x1x11.blb new file mode 100644 index 0000000..b99c870 --- /dev/null +++ b/bricks/blb/wires/1x1x11.blb @@ -0,0 +1,2 @@ +1 1 11 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x12.blb b/bricks/blb/wires/1x1x12.blb new file mode 100644 index 0000000..93128d6 --- /dev/null +++ b/bricks/blb/wires/1x1x12.blb @@ -0,0 +1,2 @@ +1 1 12 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x128.blb b/bricks/blb/wires/1x1x128.blb new file mode 100644 index 0000000..1e10dbe --- /dev/null +++ b/bricks/blb/wires/1x1x128.blb @@ -0,0 +1,2 @@ +1 1 128 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x13.blb b/bricks/blb/wires/1x1x13.blb new file mode 100644 index 0000000..8bd614a --- /dev/null +++ b/bricks/blb/wires/1x1x13.blb @@ -0,0 +1,2 @@ +1 1 13 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x14.blb b/bricks/blb/wires/1x1x14.blb new file mode 100644 index 0000000..29cc05f --- /dev/null +++ b/bricks/blb/wires/1x1x14.blb @@ -0,0 +1,2 @@ +1 1 14 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x16.blb b/bricks/blb/wires/1x1x16.blb new file mode 100644 index 0000000..5439242 --- /dev/null +++ b/bricks/blb/wires/1x1x16.blb @@ -0,0 +1,2 @@ +1 1 16 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x17.blb b/bricks/blb/wires/1x1x17.blb new file mode 100644 index 0000000..2de32a1 --- /dev/null +++ b/bricks/blb/wires/1x1x17.blb @@ -0,0 +1,2 @@ +1 1 17 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x2.blb b/bricks/blb/wires/1x1x2.blb new file mode 100644 index 0000000..7cce91b --- /dev/null +++ b/bricks/blb/wires/1x1x2.blb @@ -0,0 +1,2 @@ +1 1 2 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x4.blb b/bricks/blb/wires/1x1x4.blb new file mode 100644 index 0000000..cbee1c8 --- /dev/null +++ b/bricks/blb/wires/1x1x4.blb @@ -0,0 +1,2 @@ +1 1 4 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x5.blb b/bricks/blb/wires/1x1x5.blb new file mode 100644 index 0000000..c489d32 --- /dev/null +++ b/bricks/blb/wires/1x1x5.blb @@ -0,0 +1,2 @@ +1 1 5 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x6.blb b/bricks/blb/wires/1x1x6.blb new file mode 100644 index 0000000..4bfc90a --- /dev/null +++ b/bricks/blb/wires/1x1x6.blb @@ -0,0 +1,2 @@ +1 1 6 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x7.blb b/bricks/blb/wires/1x1x7.blb new file mode 100644 index 0000000..20f4391 --- /dev/null +++ b/bricks/blb/wires/1x1x7.blb @@ -0,0 +1,2 @@ +1 1 7 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x8.blb b/bricks/blb/wires/1x1x8.blb new file mode 100644 index 0000000..63d3663 --- /dev/null +++ b/bricks/blb/wires/1x1x8.blb @@ -0,0 +1,2 @@ +1 1 8 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x1x9.blb b/bricks/blb/wires/1x1x9.blb new file mode 100644 index 0000000..52c8078 --- /dev/null +++ b/bricks/blb/wires/1x1x9.blb @@ -0,0 +1,2 @@ +1 1 9 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x2x5.blb b/bricks/blb/wires/1x2x5.blb new file mode 100644 index 0000000..46bc3ae --- /dev/null +++ b/bricks/blb/wires/1x2x5.blb @@ -0,0 +1,2 @@ +1 2 5 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x32f.blb b/bricks/blb/wires/1x32f.blb new file mode 100644 index 0000000..b64bf60 --- /dev/null +++ b/bricks/blb/wires/1x32f.blb @@ -0,0 +1,2 @@ +1 32 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x5f.blb b/bricks/blb/wires/1x5f.blb new file mode 100644 index 0000000..b5bb005 --- /dev/null +++ b/bricks/blb/wires/1x5f.blb @@ -0,0 +1,2 @@ +1 5 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x64f.blb b/bricks/blb/wires/1x64f.blb new file mode 100644 index 0000000..625abbb --- /dev/null +++ b/bricks/blb/wires/1x64f.blb @@ -0,0 +1,2 @@ +1 64 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x7f.blb b/bricks/blb/wires/1x7f.blb new file mode 100644 index 0000000..3254261 --- /dev/null +++ b/bricks/blb/wires/1x7f.blb @@ -0,0 +1,2 @@ +1 7 1 +BRICK \ No newline at end of file diff --git a/bricks/blb/wires/1x9f.blb b/bricks/blb/wires/1x9f.blb new file mode 100644 index 0000000..ab20917 --- /dev/null +++ b/bricks/blb/wires/1x9f.blb @@ -0,0 +1,2 @@ +1 9 1 +BRICK \ No newline at end of file diff --git a/bricks/bus/8BitDFlipFlop.cs b/bricks/bus/8BitDFlipFlop.cs new file mode 100644 index 0000000..1bea530 --- /dev/null +++ b/bricks/bus/8BitDFlipFlop.cs @@ -0,0 +1,120 @@ +datablock fxDTSBrickData(LogicGate_8BitDFlipFlop_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/1x8f_8i_8o_p.blb"; + category = "Logic Bricks"; + subCategory = "Bus"; + uiName = "8 Bit D FlipFlop"; + iconName = $LuaLogic::Path @ "icons/8 Bit D FlipFlop"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8 Bit D FlipFlop"; + logicUIDesc = "8 bit d flipflop with clock propagate"; + + logicUpdate = +"return function(gate) if gate.ports[9]:isrising() then " @ +" for i = 1, 8 do " @ +" gate.ports[i+10]:setstate(gate.ports[i].state) " @ +" end " @ +"end " @ +"gate.ports[10]:setstate(gate.ports[9].state) end"; + + numLogicPorts = 18; + + logicPortType[0] = 1; + logicPortPos[0] = "-7 0 0"; + logicPortDir[0] = 3; + logicPortUIName[0] = "D7"; + + logicPortType[1] = 1; + logicPortPos[1] = "-5 0 0"; + logicPortDir[1] = 3; + logicPortUIName[1] = "D6"; + + logicPortType[2] = 1; + logicPortPos[2] = "-3 0 0"; + logicPortDir[2] = 3; + logicPortUIName[2] = "D5"; + + logicPortType[3] = 1; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 3; + logicPortUIName[3] = "D4"; + + logicPortType[4] = 1; + logicPortPos[4] = "1 0 0"; + logicPortDir[4] = 3; + logicPortUIName[4] = "D3"; + + logicPortType[5] = 1; + logicPortPos[5] = "3 0 0"; + logicPortDir[5] = 3; + logicPortUIName[5] = "D2"; + + logicPortType[6] = 1; + logicPortPos[6] = "5 0 0"; + logicPortDir[6] = 3; + logicPortUIName[6] = "D1"; + + logicPortType[7] = 1; + logicPortPos[7] = "7 0 0"; + logicPortDir[7] = 3; + logicPortUIName[7] = "D0"; + + logicPortType[8] = 1; + logicPortPos[8] = "7 0 0"; + logicPortDir[8] = 2; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "ClockIn"; + + logicPortType[9] = 0; + logicPortPos[9] = "-7 0 0"; + logicPortDir[9] = 0; + logicPortUIName[9] = "ClockOut"; + + logicPortType[10] = 0; + logicPortPos[10] = "-7 0 0"; + logicPortDir[10] = 1; + logicPortUIName[10] = "Q7"; + + logicPortType[11] = 0; + logicPortPos[11] = "-5 0 0"; + logicPortDir[11] = 1; + logicPortUIName[11] = "Q6"; + + logicPortType[12] = 0; + logicPortPos[12] = "-3 0 0"; + logicPortDir[12] = 1; + logicPortUIName[12] = "Q5"; + + logicPortType[13] = 0; + logicPortPos[13] = "-1 0 0"; + logicPortDir[13] = 1; + logicPortUIName[13] = "Q4"; + + logicPortType[14] = 0; + logicPortPos[14] = "1 0 0"; + logicPortDir[14] = 1; + logicPortUIName[14] = "Q3"; + + logicPortType[15] = 0; + logicPortPos[15] = "3 0 0"; + logicPortDir[15] = 1; + logicPortUIName[15] = "Q2"; + + logicPortType[16] = 0; + logicPortPos[16] = "5 0 0"; + logicPortDir[16] = 1; + logicPortUIName[16] = "Q1"; + + logicPortType[17] = 0; + logicPortPos[17] = "7 0 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Q0"; +}; +lualogic_registergatedefinition("LogicGate_8BitDFlipFlop_Data"); diff --git a/bricks/bus/8BitEnabler.cs b/bricks/bus/8BitEnabler.cs new file mode 100644 index 0000000..093d05f --- /dev/null +++ b/bricks/bus/8BitEnabler.cs @@ -0,0 +1,132 @@ +datablock fxDTSBrickData(LogicGate_8BitEnabler_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/1x8f_8i_8o_p.blb"; + category = "Logic Bricks"; + subCategory = "Bus"; + uiName = "8 Bit Enabler"; + iconName = $LuaLogic::Path @ "icons/8 Bit Enabler"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8 Bit Enabler"; + logicUIDesc = "8 bit enabler with enable propagate"; + + logicUpdate = "return function(gate) if gate.ports[9].state then " @ +" for i = 1, 8 do " @ +" gate.ports[i+10]:setstate(gate.ports[i].state) " @ +" end " @ +" gate.ports[10]:setstate(true) " @ +"elseif gate.ports[9]:isfalling() then" @ +" for i = 1, 8 do " @ +" gate.ports[i+10]:setstate(false) " @ +" end " @ +" gate.ports[10]:setstate(false) " @ +"end end"; + + numLogicPorts = 18; + + logicPortType[0] = 1; + logicPortPos[0] = "-7 0 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "D7"; + + logicPortType[1] = 1; + logicPortPos[1] = "-5 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "D6"; + + logicPortType[2] = 1; + logicPortPos[2] = "-3 0 0"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "D5"; + + logicPortType[3] = 1; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 3; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "D4"; + + logicPortType[4] = 1; + logicPortPos[4] = "1 0 0"; + logicPortDir[4] = 3; + logicPortCauseUpdate[4] = true; + logicPortUIName[4] = "D3"; + + logicPortType[5] = 1; + logicPortPos[5] = "3 0 0"; + logicPortDir[5] = 3; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "D2"; + + logicPortType[6] = 1; + logicPortPos[6] = "5 0 0"; + logicPortDir[6] = 3; + logicPortCauseUpdate[6] = true; + logicPortUIName[6] = "D1"; + + logicPortType[7] = 1; + logicPortPos[7] = "7 0 0"; + logicPortDir[7] = 3; + logicPortCauseUpdate[7] = true; + logicPortUIName[7] = "D0"; + + logicPortType[8] = 1; + logicPortPos[8] = "7 0 0"; + logicPortDir[8] = 2; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "EnableIn"; + + logicPortType[9] = 0; + logicPortPos[9] = "-7 0 0"; + logicPortDir[9] = 0; + logicPortUIName[9] = "EnableOut"; + + logicPortType[10] = 0; + logicPortPos[10] = "-7 0 0"; + logicPortDir[10] = 1; + logicPortUIName[10] = "Q7"; + + logicPortType[11] = 0; + logicPortPos[11] = "-5 0 0"; + logicPortDir[11] = 1; + logicPortUIName[11] = "Q6"; + + logicPortType[12] = 0; + logicPortPos[12] = "-3 0 0"; + logicPortDir[12] = 1; + logicPortUIName[12] = "Q5"; + + logicPortType[13] = 0; + logicPortPos[13] = "-1 0 0"; + logicPortDir[13] = 1; + logicPortUIName[13] = "Q4"; + + logicPortType[14] = 0; + logicPortPos[14] = "1 0 0"; + logicPortDir[14] = 1; + logicPortUIName[14] = "Q3"; + + logicPortType[15] = 0; + logicPortPos[15] = "3 0 0"; + logicPortDir[15] = 1; + logicPortUIName[15] = "Q2"; + + logicPortType[16] = 0; + logicPortPos[16] = "5 0 0"; + logicPortDir[16] = 1; + logicPortUIName[16] = "Q1"; + + logicPortType[17] = 0; + logicPortPos[17] = "7 0 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Q0"; +}; +lualogic_registergatedefinition("LogicGate_8BitEnabler_Data"); diff --git a/bricks/gates/AND.cs b/bricks/gates/AND.cs new file mode 100644 index 0000000..f841e9f --- /dev/null +++ b/bricks/gates/AND.cs @@ -0,0 +1,9 @@ +datablock fxDTSBrickData(LogicGate_AND_Data : LogicGate_OR_Data) +{ + uiName = "1x2f AND"; + iconName = $LuaLogic::Path @ "icons/1x2f AND"; + logicUIName = "AND"; + logicUIDesc = "C is true if A and B are true"; + logicUpdate = "return function(gate) gate.ports[3]:setstate(gate.ports[1].state and gate.ports[2].state) end"; +}; +lualogic_registergatedefinition("LogicGate_AND_Data"); diff --git a/bricks/gates/NAND.cs b/bricks/gates/NAND.cs new file mode 100644 index 0000000..8e3aaa7 --- /dev/null +++ b/bricks/gates/NAND.cs @@ -0,0 +1,9 @@ +datablock fxDTSBrickData(LogicGate_NAND_Data : LogicGate_OR_Data) +{ + uiName = "1x2f NAND"; + iconName = $LuaLogic::Path @ "icons/1x2f NAND"; + logicUIName = "NAND"; + logicUIDesc = "C is false if A and B are true"; + logicUpdate = "return function(gate) gate.ports[3]:setstate(not (gate.ports[1].state and gate.ports[2].state)) end"; +}; +lualogic_registergatedefinition("LogicGate_NAND_Data"); diff --git a/bricks/gates/NOR.cs b/bricks/gates/NOR.cs new file mode 100644 index 0000000..b148b5a --- /dev/null +++ b/bricks/gates/NOR.cs @@ -0,0 +1,9 @@ +datablock fxDTSBrickData(LogicGate_NOR_Data : LogicGate_OR_Data) +{ + uiName = "1x2f NOR"; + iconName = $LuaLogic::Path @ "icons/1x2f NOR"; + logicUIName = "NOR"; + logicUIDesc = "C is false if A or B are true"; + logicUpdate = "return function(gate) gate.ports[3]:setstate(not (gate.ports[1].state or gate.ports[2].state)) end"; +}; +lualogic_registergatedefinition("LogicGate_NOR_Data"); diff --git a/bricks/gates/NOT.cs b/bricks/gates/NOT.cs new file mode 100644 index 0000000..867430c --- /dev/null +++ b/bricks/gates/NOT.cs @@ -0,0 +1,24 @@ +datablock fxDTSBrickData(LogicGate_NOT_Data : LogicGate_Diode_Data) +{ + uiName = "1x1f NOT"; + iconName = $LuaLogic::Path @ "icons/1x1f NOT"; + + logicUIName = "NOT"; + logicUIDesc = "B is the opposite of A"; + + logicUpdate = "return function(gate) gate.ports[2]:setstate(not gate.ports[1].state) end"; + + numLogicPorts = 2; +}; +lualogic_registergatedefinition("LogicGate_NOT_Data"); + +function LogicGate_NOT_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("RED")) + %obj.setColor(lualogic_getcolor("RED")); + + if(lualogic_isprint("ARROW")) + %obj.setPrint(lualogic_getprint("ARROW")); + + parent::onPlant(%this, %obj); +} diff --git a/bricks/gates/OR.cs b/bricks/gates/OR.cs new file mode 100644 index 0000000..4c60972 --- /dev/null +++ b/bricks/gates/OR.cs @@ -0,0 +1,37 @@ +datablock fxDTSBrickData(LogicGate_OR_Data) +{ + category = "Logic Bricks"; + subCategory = "Gates"; + uiName = "1x2f OR"; + iconName = $LuaLogic::Path @ "icons/1x2f OR"; + brickFile = $LuaLogic::Path @ "bricks/blb/1x2f_2i_1o.blb"; + hasPrint = 1; + printAspectRatio = "Logic"; + + isLogic = 1; + isLogicGate = 1; + logicUIName = "OR"; + logicUIDesc = "C is true if A or B are true"; + + logicUpdate = "return function(gate) gate.ports[3]:setstate(gate.ports[1].state or gate.ports[2].state) end"; + + numLogicPorts = 3; + + logicPortType[0] = 1; + logicPortPos[0] = "0 1 0"; + logicPortDir[0] = "0"; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 1; + logicPortPos[1] = "0 -1 0"; + logicPortDir[1] = "0"; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "B"; + + logicPortType[2] = 0; + logicPortPos[2] = "0 -1 0"; + logicPortDir[2] = "2"; + logicPortUIName[2] = "C"; +}; +lualogic_registergatedefinition("LogicGate_OR_Data"); diff --git a/bricks/gates/XNOR.cs b/bricks/gates/XNOR.cs new file mode 100644 index 0000000..3e3a291 --- /dev/null +++ b/bricks/gates/XNOR.cs @@ -0,0 +1,9 @@ +datablock fxDTSBrickData(LogicGate_XNOR_Data : LogicGate_OR_Data) +{ + uiName = "1x2f XNOR"; + iconName = $LuaLogic::Path @ "icons/1x2f XNOR"; + logicUIName = "XNOR"; + logicUIDesc = "C is true if A and B are both true or both false"; + logicUpdate = "return function(gate) gate.ports[3]:setstate((gate.ports[1].state and gate.ports[2].state) or (not gate.ports[1].state and not gate.ports[2].state)) end"; +}; +lualogic_registergatedefinition("LogicGate_XNOR_Data"); diff --git a/bricks/gates/XOR.cs b/bricks/gates/XOR.cs new file mode 100644 index 0000000..ccff4cd --- /dev/null +++ b/bricks/gates/XOR.cs @@ -0,0 +1,9 @@ +datablock fxDTSBrickData(LogicGate_XOR_Data : LogicGate_OR_Data) +{ + uiName = "1x2f XOR"; + iconName = $LuaLogic::Path @ "icons/1x2f XOR"; + logicUIName = "XOR"; + logicUIDesc = "C is true if A or B are true but false if A and B are true"; + logicUpdate = "return function(gate) gate.ports[3]:setstate((gate.ports[1].state or gate.ports[2].state) and not (gate.ports[1].state and gate.ports[2].state)) end"; +}; +lualogic_registergatedefinition("LogicGate_XOR_Data"); diff --git a/bricks/gates/diode.cs b/bricks/gates/diode.cs new file mode 100644 index 0000000..3a1dd18 --- /dev/null +++ b/bricks/gates/diode.cs @@ -0,0 +1,44 @@ +datablock fxDTSBrickData(LogicGate_Diode_Data) +{ + category = "Logic Bricks"; + subCategory = "Gates"; + uiName = "1x1f Diode"; + iconName = $LuaLogic::Path @ "icons/1x1f Diode"; + brickFile = $LuaLogic::Path @ "bricks/blb/1x1f_1i_1o.blb"; + hasPrint = 1; + printAspectRatio = "Logic"; + + isLogic = 1; + isLogicGate = 1; + logicUIName = "Diode"; + logicUIDesc = "B is A"; + + logicUpdate = "return function(gate) gate.ports[2]:setstate(gate.ports[1].state) end"; + + numLogicPorts = 2; + + logicPortType[0] = 1; + logicPortPos[0] = "0 0 0"; + logicPortDir[0] = "0"; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + logicPortUIDesc[0] = ""; + + logicPortType[1] = 0; + logicPortPos[1] = "0 0 0"; + logicPortDir[1] = "2"; + logicPortUIName[1] = "B"; + logicPortUIDesc[1] = ""; +}; +lualogic_registergatedefinition("LogicGate_Diode_Data"); + +function LogicGate_Diode_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("GREEN")) + %obj.setColor(lualogic_getcolor("GREEN")); + + if(lualogic_isprint("ARROW")) + %obj.setPrint(lualogic_getprint("ARROW")); + + parent::onPlant(%this, %obj); +} diff --git a/bricks/gates/verticalDiode.cs b/bricks/gates/verticalDiode.cs new file mode 100644 index 0000000..2de6802 --- /dev/null +++ b/bricks/gates/verticalDiode.cs @@ -0,0 +1,69 @@ +datablock fxDTSBrickData(LogicGate_DiodeUp_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/1x1fU_1i_1o.blb"; + category = "Logic Bricks"; + subCategory = "Gates"; + uiName = "Diode Up"; + iconName = $LuaLogic::Path @ "icons/Diode Up"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Diode Up"; + logicUIDesc = "B is A"; + + logicUpdate = "return function(gate) gate.ports[2]:setstate(gate.ports[1].state) end"; + + numLogicPorts = 2; + + logicPortType[0] = 1; + logicPortPos[0] = "0 0 0"; + logicPortDir[0] = 5; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 0; + logicPortPos[1] = "0 0 0"; + logicPortDir[1] = 4; + logicPortUIName[1] = "B"; +}; +lualogic_registergatedefinition("LogicGate_DiodeUp_Data"); + +datablock fxDTSBrickData(LogicGate_DiodeDown_Data : LogicGate_DiodeUp_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/1x1fD_1i_1o.blb"; + uiName = "Diode Down"; + iconName = $LuaLogic::Path @ "icons/Diode Down"; + + logicUIName = "Diode Down"; + + logicPortDir[0] = 4; + logicPortDir[1] = 5; +}; +lualogic_registergatedefinition("LogicGate_DiodeDown_Data"); + +function LogicGate_DiodeUp_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("GREEN")) + %obj.setColor(lualogic_getcolor("GREEN")); + + if(lualogic_isprint("UPARROW")) + %obj.setPrint(lualogic_getprint("UPARROW")); + + parent::onPlant(%this, %obj); +} + +function LogicGate_DiodeDown_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("GREEN")) + %obj.setColor(lualogic_getcolor("GREEN")); + + if(lualogic_isprint("DOWNARROW")) + %obj.setPrint(lualogic_getprint("DOWNARROW")); + + parent::onPlant(%this, %obj); +} diff --git a/bricks/gates/verticalNOT.cs b/bricks/gates/verticalNOT.cs new file mode 100644 index 0000000..e9811a0 --- /dev/null +++ b/bricks/gates/verticalNOT.cs @@ -0,0 +1,45 @@ +datablock fxDTSBrickData(LogicGate_NotUp_Data : LogicGate_DiodeUp_Data) +{ + uiName = "Not Up"; + iconName = $LuaLogic::Path @ "icons/Not Up"; + + logicUIName = "Not Up"; + logicUIDesc = "B is the inverse of A"; + + logicUpdate = "return function(gate) gate.ports[2]:setstate(not gate.ports[1].state) end"; +}; +lualogic_registergatedefinition("LogicGate_NotUp_Data"); + +datablock fxDTSBrickData(LogicGate_NotDown_Data : LogicGate_DiodeDown_Data) +{ + uiName = "Not Down"; + iconName = $LuaLogic::Path @ "icons/Not Down"; + + logicUIName = "Not Down"; + logicUIDesc = "B is the inverse of A"; + + logicUpdate = "return function(gate) gate.ports[2]:setstate(not gate.ports[1].state) end"; +}; +lualogic_registergatedefinition("LogicGate_NotDown_Data"); + +function LogicGate_NotUp_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("RED")) + %obj.setColor(lualogic_getcolor("RED")); + + if(lualogic_isprint("UPARROW")) + %obj.setPrint(lualogic_getprint("UPARROW")); + + parent::onPlant(%this, %obj); +} + +function LogicGate_NotDown_Data::onPlant(%this, %obj) +{ + if(lualogic_iscolor("RED")) + %obj.setColor(lualogic_getcolor("RED")); + + if(lualogic_isprint("DOWNARROW")) + %obj.setPrint(lualogic_getprint("DOWNARROW")); + + parent::onPlant(%this, %obj); +} diff --git a/bricks/inputs/keyboard-init.lua b/bricks/inputs/keyboard-init.lua new file mode 100644 index 0000000..58859a4 --- /dev/null +++ b/bricks/inputs/keyboard-init.lua @@ -0,0 +1,114 @@ + +keyboard_strToBool = keyboard_strToBool or { + ["0"] = false, + ["1"] = true, +} + +--Key codes may use only 7 bits, so values must be in range 00-7F + +keyboard_keyToCode = keyboard_keyToCode or { + ["backspace"] = 0x01, + ["tab"] = 0x02, + ["return"] = 0x03, + ["space"] = 0x04, + ["end"] = 0x05, + ["home"] = 0x06, + ["left"] = 0x07, + ["up"] = 0x08, + ["right"] = 0x09, + ["down"] = 0x0A, + ["insert"] = 0x0B, + ["delete"] = 0x0C, + + ["0"] = 0x10, + ["1"] = 0x11, + ["2"] = 0x12, + ["3"] = 0x13, + ["4"] = 0x14, + ["5"] = 0x15, + ["6"] = 0x16, + ["7"] = 0x17, + ["8"] = 0x18, + ["9"] = 0x19, + + ["a"] = 0x1A, + ["b"] = 0x1B, + ["c"] = 0x1C, + ["d"] = 0x1D, + ["e"] = 0x1E, + ["f"] = 0x1F, + ["g"] = 0x20, + ["h"] = 0x21, + ["i"] = 0x22, + ["j"] = 0x23, + ["k"] = 0x24, + ["l"] = 0x25, + ["m"] = 0x26, + ["n"] = 0x27, + ["o"] = 0x28, + ["p"] = 0x29, + ["q"] = 0x2A, + ["r"] = 0x2B, + ["s"] = 0x2C, + ["t"] = 0x2D, + ["u"] = 0x2E, + ["v"] = 0x2F, + ["w"] = 0x30, + ["x"] = 0x31, + ["y"] = 0x32, + ["z"] = 0x33, + + ["numpad0"] = 0x40, + ["numpad1"] = 0x41, + ["numpad2"] = 0x42, + ["numpad3"] = 0x43, + ["numpad4"] = 0x44, + ["numpad5"] = 0x45, + ["numpad6"] = 0x46, + ["numpad7"] = 0x47, + ["numpad8"] = 0x48, + ["numpad9"] = 0x49, + ["*"] = 0x4A, + ["+"] = 0x4B, + ["numpadenter"] = 0x4C, + ["minus"] = 0x4D, + ["numpaddecimal"] = 0x4E, + ["/"] = 0x4F, + + ["f1"] = 0x51, + ["f2"] = 0x52, + ["f3"] = 0x53, + ["f4"] = 0x54, + ["f5"] = 0x55, + ["f6"] = 0x56, + ["f7"] = 0x57, + ["f8"] = 0x58, + ["f9"] = 0x59, + ["f10"] = 0x5A, + ["f11"] = 0x5B, + ["f12"] = 0x5C, + + ["lshift"] = 0x60, + ["rshift"] = 0x61, + ["lcontrol"] = 0x62, + ["rcontrol"] = 0x63, + ["lalt"] = 0x64, + ["ralt"] = 0x65, + + [";"] = 0x70, + [","] = 0x71, + ["."] = 0x72, + ["/"] = 0x73, + ["`"] = 0x74, + ["["] = 0x75, + ["\\"] = 0x76, + ["]"] = 0x77, + [" ="] = 0x78, + ["apostrophe"] = 0x79, + + ["invalid"] = 0x7F, +} + +return function(gate) + gate.queueBits = {} +end diff --git a/bricks/inputs/keyboard-input.lua b/bricks/inputs/keyboard-input.lua new file mode 100644 index 0000000..76490bd --- /dev/null +++ b/bricks/inputs/keyboard-input.lua @@ -0,0 +1,24 @@ + +return function(gate, argv) + if argv[1]=="\\:" then argv[1] = ";" end + + local keycode = keyboard_keyToCode[argv[1]] or keyboard_keyToCode["invalid"] + local status = keyboard_strToBool[argv[2]] + + local code = keycode+(status and 128 or 0) + + local function queueBit(bit) + table.insert(gate.queueBits, 1, bit) + end + + queueBit(true) + for bitidx = 1, 8 do + local val = bit.band(code, 0x80)~=0 + queueBit(val) + + code = bit.lshift(code, 1) + end + queueBit(false) + + gate:queue(0) +end diff --git a/bricks/inputs/keyboard-update.lua b/bricks/inputs/keyboard-update.lua new file mode 100644 index 0000000..3af60f0 --- /dev/null +++ b/bricks/inputs/keyboard-update.lua @@ -0,0 +1,10 @@ + +return function(gate) + if #gate.queueBits~=0 then + local bit = table.remove(gate.queueBits, #gate.queueBits) + gate.ports[1]:setstate(bit) + gate:queue(1) + else + gate.ports[1]:setstate(false) + end +end diff --git a/bricks/inputs/keyboard.cs b/bricks/inputs/keyboard.cs new file mode 100644 index 0000000..6d4fe52 --- /dev/null +++ b/bricks/inputs/keyboard.cs @@ -0,0 +1,49 @@ + +datablock fxDTSBrickData(LogicGate_Keyboard_Data){ + brickFile = $LuaLogic::Path @ "bricks/blb/keyboardgate.blb"; + category = "Logic Bricks"; + subCategory = "Inputs"; + uiName = "Input Keyboard"; + iconName = $LuaLogic::Path @ "icons/Input Keyboard"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = true; + + logicUIName = "Input Keyboard"; + logicUIDesc = ""; + + logicInit = lualogic_readfile($LuaLogic::Path @ "bricks/inputs/keyboard-init.lua" ); + logicInput = lualogic_readfile($LuaLogic::Path @ "bricks/inputs/keyboard-input.lua" ); + logicUpdate = lualogic_readfile($LuaLogic::Path @ "bricks/inputs/keyboard-update.lua"); + + numLogicPorts = 1; + + logicPortType[0] = 0; + logicPortPos[0] = "2 0 0"; + logicPortDir[0] = 1; + logicPortUIName[0] = "R"; + +}; +lualogic_registergatedefinition("LogicGate_Keyboard_Data"); + +function LogicGate_Keyboard_Data::LuaLogic_PressKey(%data, %brick, %key, %state){ + %key = strReplace(%key, ";", "\\:"); + lualogic_sendInput(%brick, 2, %key, %state); +} + +function serverCmdLInputKey(%client, %key, %state){ + %brick = %client.Logic_InputKeyboard; + if(isObject(%brick) && %client.Logic_InputActive){ + %brick.getDatablock().LuaLogic_PressKey(%brick, %key, %state); + } +} + +function LogicGate_Keyboard_Data::Logic_OnInput(%data, %brick, %pos, %norm, %client){ + if(isObject(%client)){ + %client.Logic_InputKeyboard = %brick; + %client.Logic_InputActive = true; + commandToClient(%client, 'LStartInput'); + } +} diff --git a/bricks/inputs/switch-input.lua b/bricks/inputs/switch-input.lua new file mode 100644 index 0000000..422a170 --- /dev/null +++ b/bricks/inputs/switch-input.lua @@ -0,0 +1,11 @@ + +return function(gate, argv) + if #argv == 1 then + gate.ports[1]:setstate(toboolean(argv[1])) + gate.ports[2]:setstate(toboolean(argv[1])) + else + gate.ports[1]:setstate(not gate.ports[1].state) + gate.ports[2]:setstate(not gate.ports[2].state) + end + gate:cb("1\t" .. bool_to_int[gate.ports[1].state]) +end diff --git a/bricks/inputs/switch.cs b/bricks/inputs/switch.cs new file mode 100644 index 0000000..be46cdd --- /dev/null +++ b/bricks/inputs/switch.cs @@ -0,0 +1,44 @@ + +datablock fxDTSBrickData(LogicGate_Switch_Data) +{ + category = "Logic Bricks"; + subCategory = "Inputs"; + uiName = "Switch"; + iconName = $LuaLogic::Path @ "icons/Switch"; + brickFile = $LuaLogic::Path @ "bricks/blb/switch.blb"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = 1; + isLogicGate = 1; + isLogicInput = 1; + + logicInput = lualogic_readfile($LuaLogic::Path @ "bricks/inputs/switch-input.lua"); + + numLogicPorts = 2; + + logicPortType[0] = 0; + logicPortPos[0] = "0 1 0"; + logicPortDir[0] = "1"; + + logicPortType[1] = 0; + logicPortPos[1] = "0 -1 0"; + logicPortDir[1] = "3"; +}; +lualogic_registergatedefinition("LogicGate_Switch_Data"); + +function LogicGate_Switch_Data::Logic_onInput(%this, %obj, %pos, %norm) +{ + lualogic_sendinput(%obj, 0); +} + +function LogicGate_Switch_Data::Logic_onAdd(%this, %obj) +{ + lualogic_sendinput(%obj, 1, %obj.getColorFXID() == 3); +} + +function LogicGate_Switch_Data::LuaLogic_Callback(%this, %obj, %data) +{ + %obj.setColorFX(getField(%data, 0) == 1 ? 3 : 0); +} diff --git a/bricks/math/8bitAdder.cs b/bricks/math/8bitAdder.cs new file mode 100644 index 0000000..203bf6d --- /dev/null +++ b/bricks/math/8bitAdder.cs @@ -0,0 +1,179 @@ +datablock fxDTSBrickData(LogicGate_8bitAdder_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/8bitAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "8bit Adder"; + iconName = $LuaLogic::Path @ "icons/8bit Adder"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8bit Adder"; + logicUIDesc = ""; + + logicUpdate = "return function(gate) local c = bool_to_int[gate.ports[17].state] " @ +"local a = 0 " @ +"local b = 0 " @ +"for i = 1, 8 do " @ + "a = bool_to_int[gate.ports[i].state] " @ + "b = bool_to_int[gate.ports[i+8].state] " @ + "gate.ports[i+17]:setstate(bit.bxor(bit.bxor(a, b), c) == 1) " @ + "c = bit.bor(bit.band(a, b), bit.band(c, bit.bor(a, b))) " @ +"end " @ +"gate.ports[26]:setstate(c == 1) end"; + + numLogicPorts = 26; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 -1 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A0"; + + logicPortType[1] = 1; + logicPortPos[1] = "-3 -1 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "A1"; + + logicPortType[2] = 1; + logicPortPos[2] = "-5 -1 0"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "A2"; + + logicPortType[3] = 1; + logicPortPos[3] = "-7 -1 0"; + logicPortDir[3] = 3; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "A3"; + + logicPortType[4] = 1; + logicPortPos[4] = "-9 -1 0"; + logicPortDir[4] = 3; + logicPortCauseUpdate[4] = true; + logicPortUIName[4] = "A4"; + + logicPortType[5] = 1; + logicPortPos[5] = "-11 -1 0"; + logicPortDir[5] = 3; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "A5"; + + logicPortType[6] = 1; + logicPortPos[6] = "-13 -1 0"; + logicPortDir[6] = 3; + logicPortCauseUpdate[6] = true; + logicPortUIName[6] = "A6"; + + logicPortType[7] = 1; + logicPortPos[7] = "-15 -1 0"; + logicPortDir[7] = 3; + logicPortCauseUpdate[7] = true; + logicPortUIName[7] = "A7"; + + logicPortType[8] = 1; + logicPortPos[8] = "15 -1 0"; + logicPortDir[8] = 3; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "B0"; + + logicPortType[9] = 1; + logicPortPos[9] = "13 -1 0"; + logicPortDir[9] = 3; + logicPortCauseUpdate[9] = true; + logicPortUIName[9] = "B1"; + + logicPortType[10] = 1; + logicPortPos[10] = "11 -1 0"; + logicPortDir[10] = 3; + logicPortCauseUpdate[10] = true; + logicPortUIName[10] = "B2"; + + logicPortType[11] = 1; + logicPortPos[11] = "9 -1 0"; + logicPortDir[11] = 3; + logicPortCauseUpdate[11] = true; + logicPortUIName[11] = "B3"; + + logicPortType[12] = 1; + logicPortPos[12] = "7 -1 0"; + logicPortDir[12] = 3; + logicPortCauseUpdate[12] = true; + logicPortUIName[12] = "B4"; + + logicPortType[13] = 1; + logicPortPos[13] = "5 -1 0"; + logicPortDir[13] = 3; + logicPortCauseUpdate[13] = true; + logicPortUIName[13] = "B5"; + + logicPortType[14] = 1; + logicPortPos[14] = "3 -1 0"; + logicPortDir[14] = 3; + logicPortCauseUpdate[14] = true; + logicPortUIName[14] = "B6"; + + logicPortType[15] = 1; + logicPortPos[15] = "1 -1 0"; + logicPortDir[15] = 3; + logicPortCauseUpdate[15] = true; + logicPortUIName[15] = "B7"; + + logicPortType[16] = 1; + logicPortPos[16] = "15 -1 0"; + logicPortDir[16] = 2; + logicPortCauseUpdate[16] = true; + logicPortUIName[16] = "Carry In"; + + logicPortType[17] = 0; + logicPortPos[17] = "15 1 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Sum0"; + + logicPortType[18] = 0; + logicPortPos[18] = "13 1 0"; + logicPortDir[18] = 1; + logicPortUIName[18] = "Sum1"; + + logicPortType[19] = 0; + logicPortPos[19] = "11 1 0"; + logicPortDir[19] = 1; + logicPortUIName[19] = "Sum2"; + + logicPortType[20] = 0; + logicPortPos[20] = "9 1 0"; + logicPortDir[20] = 1; + logicPortUIName[20] = "Sum3"; + + logicPortType[21] = 0; + logicPortPos[21] = "7 1 0"; + logicPortDir[21] = 1; + logicPortUIName[21] = "Sum4"; + + logicPortType[22] = 0; + logicPortPos[22] = "5 1 0"; + logicPortDir[22] = 1; + logicPortUIName[22] = "Sum5"; + + logicPortType[23] = 0; + logicPortPos[23] = "3 1 0"; + logicPortDir[23] = 1; + logicPortUIName[23] = "Sum6"; + + logicPortType[24] = 0; + logicPortPos[24] = "1 1 0"; + logicPortDir[24] = 1; + logicPortUIName[24] = "Sum7"; + + logicPortType[25] = 0; + logicPortPos[25] = "-15 -1 0"; + logicPortDir[25] = 0; + logicPortUIName[25] = "Carry Out"; +}; +lualogic_registergatedefinition("LogicGate_8bitAdder_Data"); diff --git a/bricks/math/8bitDivider.cs b/bricks/math/8bitDivider.cs new file mode 100644 index 0000000..4e8c2a8 --- /dev/null +++ b/bricks/math/8bitDivider.cs @@ -0,0 +1,218 @@ +datablock fxDTSBrickData(LogicGate_8bitDivider_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/8bitMultiplier.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "8bit Divider"; + iconName = $LuaLogic::Path @ "icons/8bit Divider"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8bit Divider"; + logicUIDesc = "Divides A by B"; + + logicUpdate = "return function(gate) local a, b, n = 0, 0 " @ +"for i = 1, 8 do " @ + "local n = 2^(i-1) " @ + "a = a + bool_to_int[gate.ports[i].state] * n " @ + "b = b + bool_to_int[gate.ports[i+8].state] * n " @ +"end " @ +"if b ~= 0 then " @ + "local q = math.floor(a/b) " @ + "local r = a-q*b " @ + "for i = 1, 8 do " @ + "local n = 2^(i-1) " @ + "gate.ports[i+16]:setstate(bit.band(q, n) > 0) " @ + "gate.ports[i+24]:setstate(bit.band(r, n) > 0) " @ + "end " @ +"else " @ + "for i = 1, 8 do " @ + "gate.ports[i+16]:setstate(false) " @ + "gate.ports[i+24]:setstate(false) " @ + "end " @ +"end end"; + + numLogicPorts = 32; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 -1 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A0"; + + logicPortType[1] = 1; + logicPortPos[1] = "-3 -1 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "A1"; + + logicPortType[2] = 1; + logicPortPos[2] = "-5 -1 0"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "A2"; + + logicPortType[3] = 1; + logicPortPos[3] = "-7 -1 0"; + logicPortDir[3] = 3; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "A3"; + + logicPortType[4] = 1; + logicPortPos[4] = "-9 -1 0"; + logicPortDir[4] = 3; + logicPortCauseUpdate[4] = true; + logicPortUIName[4] = "A4"; + + logicPortType[5] = 1; + logicPortPos[5] = "-11 -1 0"; + logicPortDir[5] = 3; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "A5"; + + logicPortType[6] = 1; + logicPortPos[6] = "-13 -1 0"; + logicPortDir[6] = 3; + logicPortCauseUpdate[6] = true; + logicPortUIName[6] = "A6"; + + logicPortType[7] = 1; + logicPortPos[7] = "-15 -1 0"; + logicPortDir[7] = 3; + logicPortCauseUpdate[7] = true; + logicPortUIName[7] = "A7"; + + logicPortType[8] = 1; + logicPortPos[8] = "15 -1 0"; + logicPortDir[8] = 3; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "B0"; + + logicPortType[9] = 1; + logicPortPos[9] = "13 -1 0"; + logicPortDir[9] = 3; + logicPortCauseUpdate[9] = true; + logicPortUIName[9] = "B1"; + + logicPortType[10] = 1; + logicPortPos[10] = "11 -1 0"; + logicPortDir[10] = 3; + logicPortCauseUpdate[10] = true; + logicPortUIName[10] = "B2"; + + logicPortType[11] = 1; + logicPortPos[11] = "9 -1 0"; + logicPortDir[11] = 3; + logicPortCauseUpdate[11] = true; + logicPortUIName[11] = "B3"; + + logicPortType[12] = 1; + logicPortPos[12] = "7 -1 0"; + logicPortDir[12] = 3; + logicPortCauseUpdate[12] = true; + logicPortUIName[12] = "B4"; + + logicPortType[13] = 1; + logicPortPos[13] = "5 -1 0"; + logicPortDir[13] = 3; + logicPortCauseUpdate[13] = true; + logicPortUIName[13] = "B5"; + + logicPortType[14] = 1; + logicPortPos[14] = "3 -1 0"; + logicPortDir[14] = 3; + logicPortCauseUpdate[14] = true; + logicPortUIName[14] = "B6"; + + logicPortType[15] = 1; + logicPortPos[15] = "1 -1 0"; + logicPortDir[15] = 3; + logicPortCauseUpdate[15] = true; + logicPortUIName[15] = "B7"; + + logicPortType[16] = 0; + logicPortPos[16] = "15 1 0"; + logicPortDir[16] = 1; + logicPortUIName[16] = "Q0"; + + logicPortType[17] = 0; + logicPortPos[17] = "13 1 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Q1"; + + logicPortType[18] = 0; + logicPortPos[18] = "11 1 0"; + logicPortDir[18] = 1; + logicPortUIName[18] = "Q2"; + + logicPortType[19] = 0; + logicPortPos[19] = "9 1 0"; + logicPortDir[19] = 1; + logicPortUIName[19] = "Q3"; + + logicPortType[20] = 0; + logicPortPos[20] = "7 1 0"; + logicPortDir[20] = 1; + logicPortUIName[20] = "Q4"; + + logicPortType[21] = 0; + logicPortPos[21] = "5 1 0"; + logicPortDir[21] = 1; + logicPortUIName[21] = "Q5"; + + logicPortType[22] = 0; + logicPortPos[22] = "3 1 0"; + logicPortDir[22] = 1; + logicPortUIName[22] = "Q6"; + + logicPortType[23] = 0; + logicPortPos[23] = "1 1 0"; + logicPortDir[23] = 1; + logicPortUIName[23] = "Q7"; + + logicPortType[24] = 0; + logicPortPos[24] = "-1 1 0"; + logicPortDir[24] = 1; + logicPortUIName[24] = "R0"; + + logicPortType[25] = 0; + logicPortPos[25] = "-3 1 0"; + logicPortDir[25] = 1; + logicPortUIName[25] = "R1"; + + logicPortType[26] = 0; + logicPortPos[26] = "-5 1 0"; + logicPortDir[26] = 1; + logicPortUIName[26] = "R2"; + + logicPortType[27] = 0; + logicPortPos[27] = "-7 1 0"; + logicPortDir[27] = 1; + logicPortUIName[27] = "R3"; + + logicPortType[28] = 0; + logicPortPos[28] = "-9 1 0"; + logicPortDir[28] = 1; + logicPortUIName[28] = "R4"; + + logicPortType[29] = 0; + logicPortPos[29] = "-11 1 0"; + logicPortDir[29] = 1; + logicPortUIName[29] = "R5"; + + logicPortType[30] = 0; + logicPortPos[30] = "-13 1 0"; + logicPortDir[30] = 1; + logicPortUIName[30] = "R6"; + + logicPortType[31] = 0; + logicPortPos[31] = "-15 1 0"; + logicPortDir[31] = 1; + logicPortUIName[31] = "R7"; +}; +lualogic_registergatedefinition("LogicGate_8bitDivider_Data"); diff --git a/bricks/math/8bitMultiplier.cs b/bricks/math/8bitMultiplier.cs new file mode 100644 index 0000000..3badcde --- /dev/null +++ b/bricks/math/8bitMultiplier.cs @@ -0,0 +1,208 @@ +datablock fxDTSBrickData(LogicGate_8bitMultiplier_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/8bitMultiplier.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "8bit Multiplier"; + iconName = $LuaLogic::Path @ "icons/8bit Multiplier"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8bit Multiplier"; + logicUIDesc = "Multiplies A by B"; + + logicUpdate = "return function(gate) local a, b = 0, 0 " @ +"local sum = 0 " @ +"for i = 1, 8 do " @ + "a = a + bool_to_int[gate.ports[i].state] * 2^(i-1) " @ + "b = b + bool_to_int[gate.ports[i+8].state] * 2^(i-1) " @ +"end " @ +"local sum = a * b " @ +"for i = 1, 16 do " @ + "gate.ports[i+16]:setstate(bit.band(sum, 2^(i-1)) > 0) " @ +"end end"; + + numLogicPorts = 32; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 -1 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A0"; + + logicPortType[1] = 1; + logicPortPos[1] = "-3 -1 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "A1"; + + logicPortType[2] = 1; + logicPortPos[2] = "-5 -1 0"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "A2"; + + logicPortType[3] = 1; + logicPortPos[3] = "-7 -1 0"; + logicPortDir[3] = 3; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "A3"; + + logicPortType[4] = 1; + logicPortPos[4] = "-9 -1 0"; + logicPortDir[4] = 3; + logicPortCauseUpdate[4] = true; + logicPortUIName[4] = "A4"; + + logicPortType[5] = 1; + logicPortPos[5] = "-11 -1 0"; + logicPortDir[5] = 3; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "A5"; + + logicPortType[6] = 1; + logicPortPos[6] = "-13 -1 0"; + logicPortDir[6] = 3; + logicPortCauseUpdate[6] = true; + logicPortUIName[6] = "A6"; + + logicPortType[7] = 1; + logicPortPos[7] = "-15 -1 0"; + logicPortDir[7] = 3; + logicPortCauseUpdate[7] = true; + logicPortUIName[7] = "A7"; + + logicPortType[8] = 1; + logicPortPos[8] = "15 -1 0"; + logicPortDir[8] = 3; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "B0"; + + logicPortType[9] = 1; + logicPortPos[9] = "13 -1 0"; + logicPortDir[9] = 3; + logicPortCauseUpdate[9] = true; + logicPortUIName[9] = "B1"; + + logicPortType[10] = 1; + logicPortPos[10] = "11 -1 0"; + logicPortDir[10] = 3; + logicPortCauseUpdate[10] = true; + logicPortUIName[10] = "B2"; + + logicPortType[11] = 1; + logicPortPos[11] = "9 -1 0"; + logicPortDir[11] = 3; + logicPortCauseUpdate[11] = true; + logicPortUIName[11] = "B3"; + + logicPortType[12] = 1; + logicPortPos[12] = "7 -1 0"; + logicPortDir[12] = 3; + logicPortCauseUpdate[12] = true; + logicPortUIName[12] = "B4"; + + logicPortType[13] = 1; + logicPortPos[13] = "5 -1 0"; + logicPortDir[13] = 3; + logicPortCauseUpdate[13] = true; + logicPortUIName[13] = "B5"; + + logicPortType[14] = 1; + logicPortPos[14] = "3 -1 0"; + logicPortDir[14] = 3; + logicPortCauseUpdate[14] = true; + logicPortUIName[14] = "B6"; + + logicPortType[15] = 1; + logicPortPos[15] = "1 -1 0"; + logicPortDir[15] = 3; + logicPortCauseUpdate[15] = true; + logicPortUIName[15] = "B7"; + + logicPortType[16] = 0; + logicPortPos[16] = "15 1 0"; + logicPortDir[16] = 1; + logicPortUIName[16] = "Out0"; + + logicPortType[17] = 0; + logicPortPos[17] = "13 1 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Out1"; + + logicPortType[18] = 0; + logicPortPos[18] = "11 1 0"; + logicPortDir[18] = 1; + logicPortUIName[18] = "Out2"; + + logicPortType[19] = 0; + logicPortPos[19] = "9 1 0"; + logicPortDir[19] = 1; + logicPortUIName[19] = "Out3"; + + logicPortType[20] = 0; + logicPortPos[20] = "7 1 0"; + logicPortDir[20] = 1; + logicPortUIName[20] = "Out4"; + + logicPortType[21] = 0; + logicPortPos[21] = "5 1 0"; + logicPortDir[21] = 1; + logicPortUIName[21] = "Out5"; + + logicPortType[22] = 0; + logicPortPos[22] = "3 1 0"; + logicPortDir[22] = 1; + logicPortUIName[22] = "Out6"; + + logicPortType[23] = 0; + logicPortPos[23] = "1 1 0"; + logicPortDir[23] = 1; + logicPortUIName[23] = "Out7"; + + logicPortType[24] = 0; + logicPortPos[24] = "-1 1 0"; + logicPortDir[24] = 1; + logicPortUIName[24] = "Out8"; + + logicPortType[25] = 0; + logicPortPos[25] = "-3 1 0"; + logicPortDir[25] = 1; + logicPortUIName[25] = "Out9"; + + logicPortType[26] = 0; + logicPortPos[26] = "-5 1 0"; + logicPortDir[26] = 1; + logicPortUIName[26] = "Out10"; + + logicPortType[27] = 0; + logicPortPos[27] = "-7 1 0"; + logicPortDir[27] = 1; + logicPortUIName[27] = "Out11"; + + logicPortType[28] = 0; + logicPortPos[28] = "-9 1 0"; + logicPortDir[28] = 1; + logicPortUIName[28] = "Out12"; + + logicPortType[29] = 0; + logicPortPos[29] = "-11 1 0"; + logicPortDir[29] = 1; + logicPortUIName[29] = "Out13"; + + logicPortType[30] = 0; + logicPortPos[30] = "-13 1 0"; + logicPortDir[30] = 1; + logicPortUIName[30] = "Out14"; + + logicPortType[31] = 0; + logicPortPos[31] = "-15 1 0"; + logicPortDir[31] = 1; + logicPortUIName[31] = "Out15"; +}; +lualogic_registergatedefinition("LogicGate_8bitMultiplier_Data"); diff --git a/bricks/math/8bitSubtractor.cs b/bricks/math/8bitSubtractor.cs new file mode 100644 index 0000000..9de25b9 --- /dev/null +++ b/bricks/math/8bitSubtractor.cs @@ -0,0 +1,179 @@ +datablock fxDTSBrickData(LogicGate_8bitSubtractor_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/8bitAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "8bit Subtractor"; + iconName = $LuaLogic::Path @ "icons/8bit Subtractor"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "8bit Subtractor"; + logicUIDesc = "Subtracts B from A"; + + logicUpdate = "return function(gate) local c = bool_to_int[gate.ports[17].state] " @ +"local a = 0 " @ +"local b = 0 " @ +"for i = 1, 8 do " @ + "a = bool_to_int[gate.ports[i].state] " @ + "b = bool_to_int[gate.ports[i+8].state] " @ + "gate.ports[i+17]:setstate(bit.bxor(bit.bxor(a, b), c) == 1) " @ + "c = bit.bor(bit.bor(bit.band(bool_to_int[a == 0], b), bit.band(bool_to_int[a == 0], c)), bit.band(b, c)) " @ +"end " @ +"gate.ports[26]:setstate(c == 1) end"; + + numLogicPorts = 26; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 -1 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A0"; + + logicPortType[1] = 1; + logicPortPos[1] = "-3 -1 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "A1"; + + logicPortType[2] = 1; + logicPortPos[2] = "-5 -1 0"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "A2"; + + logicPortType[3] = 1; + logicPortPos[3] = "-7 -1 0"; + logicPortDir[3] = 3; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "A3"; + + logicPortType[4] = 1; + logicPortPos[4] = "-9 -1 0"; + logicPortDir[4] = 3; + logicPortCauseUpdate[4] = true; + logicPortUIName[4] = "A4"; + + logicPortType[5] = 1; + logicPortPos[5] = "-11 -1 0"; + logicPortDir[5] = 3; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "A5"; + + logicPortType[6] = 1; + logicPortPos[6] = "-13 -1 0"; + logicPortDir[6] = 3; + logicPortCauseUpdate[6] = true; + logicPortUIName[6] = "A6"; + + logicPortType[7] = 1; + logicPortPos[7] = "-15 -1 0"; + logicPortDir[7] = 3; + logicPortCauseUpdate[7] = true; + logicPortUIName[7] = "A7"; + + logicPortType[8] = 1; + logicPortPos[8] = "15 -1 0"; + logicPortDir[8] = 3; + logicPortCauseUpdate[8] = true; + logicPortUIName[8] = "B0"; + + logicPortType[9] = 1; + logicPortPos[9] = "13 -1 0"; + logicPortDir[9] = 3; + logicPortCauseUpdate[9] = true; + logicPortUIName[9] = "B1"; + + logicPortType[10] = 1; + logicPortPos[10] = "11 -1 0"; + logicPortDir[10] = 3; + logicPortCauseUpdate[10] = true; + logicPortUIName[10] = "B2"; + + logicPortType[11] = 1; + logicPortPos[11] = "9 -1 0"; + logicPortDir[11] = 3; + logicPortCauseUpdate[11] = true; + logicPortUIName[11] = "B3"; + + logicPortType[12] = 1; + logicPortPos[12] = "7 -1 0"; + logicPortDir[12] = 3; + logicPortCauseUpdate[12] = true; + logicPortUIName[12] = "B4"; + + logicPortType[13] = 1; + logicPortPos[13] = "5 -1 0"; + logicPortDir[13] = 3; + logicPortCauseUpdate[13] = true; + logicPortUIName[13] = "B5"; + + logicPortType[14] = 1; + logicPortPos[14] = "3 -1 0"; + logicPortDir[14] = 3; + logicPortCauseUpdate[14] = true; + logicPortUIName[14] = "B6"; + + logicPortType[15] = 1; + logicPortPos[15] = "1 -1 0"; + logicPortDir[15] = 3; + logicPortCauseUpdate[15] = true; + logicPortUIName[15] = "B7"; + + logicPortType[16] = 1; + logicPortPos[16] = "15 -1 0"; + logicPortDir[16] = 2; + logicPortCauseUpdate[16] = true; + logicPortUIName[16] = "Borrow In"; + + logicPortType[17] = 0; + logicPortPos[17] = "15 1 0"; + logicPortDir[17] = 1; + logicPortUIName[17] = "Diff0"; + + logicPortType[18] = 0; + logicPortPos[18] = "13 1 0"; + logicPortDir[18] = 1; + logicPortUIName[18] = "Diff1"; + + logicPortType[19] = 0; + logicPortPos[19] = "11 1 0"; + logicPortDir[19] = 1; + logicPortUIName[19] = "Diff2"; + + logicPortType[20] = 0; + logicPortPos[20] = "9 1 0"; + logicPortDir[20] = 1; + logicPortUIName[20] = "Diff3"; + + logicPortType[21] = 0; + logicPortPos[21] = "7 1 0"; + logicPortDir[21] = 1; + logicPortUIName[21] = "Diff4"; + + logicPortType[22] = 0; + logicPortPos[22] = "5 1 0"; + logicPortDir[22] = 1; + logicPortUIName[22] = "Diff5"; + + logicPortType[23] = 0; + logicPortPos[23] = "3 1 0"; + logicPortDir[23] = 1; + logicPortUIName[23] = "Diff6"; + + logicPortType[24] = 0; + logicPortPos[24] = "1 1 0"; + logicPortDir[24] = 1; + logicPortUIName[24] = "Diff7"; + + logicPortType[25] = 0; + logicPortPos[25] = "-15 -1 0"; + logicPortDir[25] = 0; + logicPortUIName[25] = "Borrow Out"; +}; +lualogic_registergatedefinition("LogicGate_8bitSubtractor_Data"); diff --git a/bricks/math/FullAdder.cs b/bricks/math/FullAdder.cs new file mode 100644 index 0000000..9a79ace --- /dev/null +++ b/bricks/math/FullAdder.cs @@ -0,0 +1,53 @@ +datablock fxDTSBrickData(LogicGate_FullAdder_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/FullAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "Full Adder"; + iconName = $LuaLogic::Path @ "icons/Full Adder"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Full Adder"; + logicUIDesc = "Adds A and B with carry in"; + + logicUpdate = "return function(gate) local a, b, c = bool_to_int[gate.ports[1].state], bool_to_int[gate.ports[2].state], bool_to_int[gate.ports[3].state] " @ +"gate.ports[4]:setstate(bit.bxor(bit.bxor(a, b), c) == 1) " @ +"gate.ports[5]:setstate(bit.bor(bit.bor(bit.band(b, c), bit.band(a, c)), bit.band(a, b)) == 1) end"; + + numLogicPorts = 5; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 0 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 1; + logicPortPos[1] = "1 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "B"; + + logicPortType[2] = 1; + logicPortPos[2] = "1 0 0"; + logicPortDir[2] = 2; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "Carry In"; + + logicPortType[3] = 0; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 1; + logicPortUIName[3] = "Sum"; + + logicPortType[4] = 0; + logicPortPos[4] = "-1 0 0"; + logicPortDir[4] = 0; + logicPortUIName[4] = "Carry Out"; +}; +lualogic_registergatedefinition("LogicGate_FullAdder_Data"); diff --git a/bricks/math/FullSubtractor.cs b/bricks/math/FullSubtractor.cs new file mode 100644 index 0000000..f2ddac1 --- /dev/null +++ b/bricks/math/FullSubtractor.cs @@ -0,0 +1,53 @@ +datablock fxDTSBrickData(LogicGate_FullSubtractor_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/FullAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "Full Subtractor"; + iconName = $LuaLogic::Path @ "icons/Full Subtractor"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Full Subtractor"; + logicUIDesc = "Subtracts B from A with borrow in"; + + logicUpdate = "return function(gate) local a, b, c = bool_to_int[gate.ports[1].state], bool_to_int[gate.ports[2].state], bool_to_int[gate.ports[3].state] " @ +"gate.ports[4]:setstate(bit.bxor(bit.bxor(a, b), c) == 1) " @ +"gate.ports[5]:setstate(not gate.ports[1].state and gate.ports[2].state or not (bit.bxor(a, b) == 1) and gate.ports[3].state) end"; + + numLogicPorts = 5; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 0 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 1; + logicPortPos[1] = "1 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "B"; + + logicPortType[2] = 1; + logicPortPos[2] = "1 0 0"; + logicPortDir[2] = 2; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "Borrow In"; + + logicPortType[3] = 0; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 1; + logicPortUIName[3] = "Difference"; + + logicPortType[4] = 0; + logicPortPos[4] = "-1 0 0"; + logicPortDir[4] = 0; + logicPortUIName[4] = "Borrow Out"; +}; +lualogic_registergatedefinition("LogicGate_FullSubtractor_Data"); diff --git a/bricks/math/HalfAdder.cs b/bricks/math/HalfAdder.cs new file mode 100644 index 0000000..cf155df --- /dev/null +++ b/bricks/math/HalfAdder.cs @@ -0,0 +1,46 @@ +datablock fxDTSBrickData(LogicGate_HalfAdder_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/HalfAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "Half Adder"; + iconName = $LuaLogic::Path @ "icons/Half Adder"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Half Adder"; + logicUIDesc = "Adds A and B"; + + logicUpdate = "return function(gate) gate.ports[3]:setstate(bit.bxor(bool_to_int[gate.ports[1].state], bool_to_int[gate.ports[2].state]) == 1) " @ +"gate.ports[4]:setstate(gate.ports[1].state and gate.ports[2].state) end"; + + numLogicPorts = 4; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 0 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 1; + logicPortPos[1] = "1 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "B"; + + logicPortType[2] = 0; + logicPortPos[2] = "-1 0 0"; + logicPortDir[2] = 1; + logicPortUIName[2] = "Sum"; + + logicPortType[3] = 0; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 0; + logicPortUIName[3] = "Carry"; +}; +lualogic_registergatedefinition("LogicGate_HalfAdder_Data"); diff --git a/bricks/math/HalfSubtractor.cs b/bricks/math/HalfSubtractor.cs new file mode 100644 index 0000000..2443e70 --- /dev/null +++ b/bricks/math/HalfSubtractor.cs @@ -0,0 +1,46 @@ +datablock fxDTSBrickData(LogicGate_HalfSubtractor_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/HalfAdder.blb"; + category = "Logic Bricks"; + subCategory = "Math"; + uiName = "Half Subtractor"; + iconName = $LuaLogic::Path @ "icons/Half Subtractor"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Half Subtractor"; + logicUIDesc = "Subtracts B from A"; + + logicUpdate = "return function(gate) gate.ports[3]:setstate(bit.bxor(bool_to_int[gate.ports[1].state], bool_to_int[gate.ports[2].state]) == 1) " @ +"gate.ports[4]:setstate(not gate.ports[1].state and gate.ports[2].state) end"; + + numLogicPorts = 4; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 0 0"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "A"; + + logicPortType[1] = 1; + logicPortPos[1] = "1 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "B"; + + logicPortType[2] = 0; + logicPortPos[2] = "-1 0 0"; + logicPortDir[2] = 1; + logicPortUIName[2] = "Difference"; + + logicPortType[3] = 0; + logicPortPos[3] = "-1 0 0"; + logicPortDir[3] = 0; + logicPortUIName[3] = "Borrow"; +}; +lualogic_registergatedefinition("LogicGate_HalfSubtractor_Data"); diff --git a/bricks/memory/DFlipFlop.cs b/bricks/memory/DFlipFlop.cs new file mode 100644 index 0000000..d6b8b22 --- /dev/null +++ b/bricks/memory/DFlipFlop.cs @@ -0,0 +1,17 @@ +datablock fxDTSBrickData(LogicGate_DFlipFlop_Data : LogicGate_OR_Data) +{ + subCategory = "Memory"; + uiName = "D FlipFlop"; + iconName = $LuaLogic::Path @ "icons/D FlipFlop"; + + logicUIName = "D FlipFlop"; + logicUIDesc = "Q becomes D when C rises"; + + logicUpdate = "return function(gate) if gate.ports[1]:isrising() then gate.ports[3]:setstate(gate.ports[2].state) end end"; + + logicPortUIName[0] = "C"; + logicPortCauseUpdate[1] = false; + logicPortUIName[1] = "D"; + logicPortUIName[2] = "Q"; +}; +lualogic_registergatedefinition("LogicGate_DFlipFlop_Data"); diff --git a/bricks/memory/DFlipflopGridMemory2.cs b/bricks/memory/DFlipflopGridMemory2.cs new file mode 100644 index 0000000..35cc3d1 --- /dev/null +++ b/bricks/memory/DFlipflopGridMemory2.cs @@ -0,0 +1,60 @@ +datablock fxDTSBrickData(LogicGate_DFlipflopGridMemory2_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/DFlipflopGridMemory2.blb"; + category = "Logic Bricks"; + subCategory = "Memory"; + uiName = "D Flipflop Grid Memory 2"; + iconName = $LuaLogic::Path @ "icons/D Flipflop Grid Memory 2"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "D Flipflop Grid Memory 2"; + logicUIDesc = "D Flipflop where Clk = C & A & B, R = Q & A & B"; + + logicUpdate = "return function(gate) if gate.ports[3].state and gate.ports[4].state and gate.ports[6]:isrising() then " @ +" gate.ports[1]:setstate(gate.ports[5].state) " @ +"end " @ +"gate.ports[2]:setstate(gate.ports[3].state and gate.ports[4].state and gate.ports[1].state) end"; + + numLogicPorts = 6; + + logicPortType[0] = 0; + logicPortPos[0] = "0 0 4"; + logicPortDir[0] = 4; + logicPortUIName[0] = "Q"; + + logicPortType[1] = 0; + logicPortPos[1] = "0 0 4"; + logicPortDir[1] = 1; + logicPortUIName[1] = "Readout"; + + logicPortType[2] = 1; + logicPortPos[2] = "0 0 0"; + logicPortDir[2] = 2; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "A"; + + logicPortType[3] = 1; + logicPortPos[3] = "0 0 2"; + logicPortDir[3] = 1; + logicPortCauseUpdate[3] = true; + logicPortUIName[3] = "B"; + + logicPortType[4] = 1; + logicPortPos[4] = "0 0 -4"; + logicPortDir[4] = 1; + logicPortCauseUpdate[4] = false; + logicPortUIName[4] = "Data"; + + logicPortType[5] = 1; + logicPortPos[5] = "0 0 -2"; + logicPortDir[5] = 1; + logicPortCauseUpdate[5] = true; + logicPortUIName[5] = "Clock"; +}; +lualogic_registergatedefinition("LogicGate_DFlipflopGridMemory2_Data"); diff --git a/bricks/special/HorizontalPixel.cs b/bricks/special/HorizontalPixel.cs new file mode 100644 index 0000000..d117e4a --- /dev/null +++ b/bricks/special/HorizontalPixel.cs @@ -0,0 +1,48 @@ +datablock fxDTSBrickData(LogicGate_HorizontalPixel_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/pixels/HPixel.blb"; + category = "Logic Bricks"; + subCategory = "Special"; + uiName = "Horizontal Pixel"; + iconName = $LuaLogic::Path @ "icons/Horizontal Pixel"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Horizontal Pixel"; + logicUIDesc = ""; + + logicUpdate = "return function(gate) gate:cb(\"3\t\" .. bool_to_int[gate.ports[1].state] .. \"\t\" .. bool_to_int[gate.ports[2].state] .. \"\t\" .. bool_to_int[gate.ports[3].state]) end"; + + numLogicPorts = 3; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 1 0"; + logicPortDir[0] = 5; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "R"; + + logicPortType[1] = 1; + logicPortPos[1] = "-1 -1 0"; + logicPortDir[1] = 5; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "G"; + + logicPortType[2] = 1; + logicPortPos[2] = "1 -1 0"; + logicPortDir[2] = 5; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "B"; +}; +lualogic_registergatedefinition("LogicGate_HorizontalPixel_Data"); + +function LogicGate_HorizontalPixel_Data::LuaLogic_Callback(%this, %obj, %data) +{ + %color = getField(%data, 0) @ getField(%data, 1) @ getField(%data, 2); + if(lualogic_isprint("COLOR" @ %color)) + %obj.setPrint(lualogic_getprint("COLOR" @ %color)); +} diff --git a/bricks/special/TextBrick.cs b/bricks/special/TextBrick.cs new file mode 100644 index 0000000..6904b19 --- /dev/null +++ b/bricks/special/TextBrick.cs @@ -0,0 +1,36 @@ + +datablock fxDTSBrickData(LogicGate_TextBrick_Data){ + brickFile = $LuaLogic::Path @ "bricks/blb/TextBrick.blb"; + category = "Logic Bricks"; + subCategory = "Special"; + uiName = "Text Brick"; + iconName = $LuaLogic::Path @ "icons/Text Brick"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Text Brick"; + logicUIDesc = "Resets on rise, increments based on pulse length"; + + logicInit = lualogic_readfile($LuaLogic::Path @ "bricks/special/text-init.lua" ); + logicUpdate = lualogic_readfile($LuaLogic::Path @ "bricks/special/text-update.lua"); + + numLogicPorts = 1; + + logicPortType[0] = 1; + logicPortPos[0] = "0 0 -1"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "Inc"; +}; +lualogic_registergatedefinition("LogicGate_TextBrick_Data"); + +function LogicGate_TextBrick_Data::LuaLogic_Callback(%data, %brick, %args){ + %printname = getField(%args, 0); + + %brick.setPrint(lualogic_getprint(%printname)); +} diff --git a/bricks/special/pixel.cs b/bricks/special/pixel.cs new file mode 100644 index 0000000..6416b1b --- /dev/null +++ b/bricks/special/pixel.cs @@ -0,0 +1,48 @@ +datablock fxDTSBrickData(LogicGate_Pixel_Data) +{ + brickFile = $LuaLogic::Path @ "bricks/blb/pixels/pixel.blb"; + category = "Logic Bricks"; + subCategory = "Special"; + uiName = "Pixel"; + iconName = $LuaLogic::Path @ "icons/Pixel"; + hasPrint = 1; + printAspectRatio = "Logic"; + orientationFix = 3; + + isLogic = true; + isLogicGate = true; + isLogicInput = false; + + logicUIName = "Pixel"; + logicUIDesc = ""; + + logicUpdate = "return function(gate) gate:cb(\"3\t\" .. bool_to_int[gate.ports[1].state] .. \"\t\" .. bool_to_int[gate.ports[2].state] .. \"\t\" .. bool_to_int[gate.ports[3].state]) end"; + + numLogicPorts = 3; + + logicPortType[0] = 1; + logicPortPos[0] = "-1 0 -4"; + logicPortDir[0] = 3; + logicPortCauseUpdate[0] = true; + logicPortUIName[0] = "R"; + + logicPortType[1] = 1; + logicPortPos[1] = "-1 0 0"; + logicPortDir[1] = 3; + logicPortCauseUpdate[1] = true; + logicPortUIName[1] = "G"; + + logicPortType[2] = 1; + logicPortPos[2] = "-1 0 4"; + logicPortDir[2] = 3; + logicPortCauseUpdate[2] = true; + logicPortUIName[2] = "B"; +}; +lualogic_registergatedefinition("LogicGate_Pixel_Data"); + +function LogicGate_Pixel_Data::LuaLogic_Callback(%this, %obj, %data) +{ + %color = getField(%data, 0) @ getField(%data, 1) @ getField(%data, 2); + if(lualogic_isprint("COLOR" @ %color)) + %obj.setPrint(lualogic_getprint("COLOR" @ %color)); +} diff --git a/bricks/special/text-init.lua b/bricks/special/text-init.lua new file mode 100644 index 0000000..b3051b2 --- /dev/null +++ b/bricks/special/text-init.lua @@ -0,0 +1,83 @@ + +textbrick_idxToPrint = textbrick_idxToPrint or { + [0x00] = "space", + + [0x01] = "A", + [0x02] = "B", + [0x03] = "C", + [0x04] = "D", + [0x05] = "E", + [0x06] = "F", + [0x07] = "G", + [0x08] = "H", + [0x09] = "I", + [0x0A] = "J", + [0x0B] = "K", + [0x0C] = "L", + [0x0D] = "M", + [0x0E] = "N", + [0x0F] = "O", + [0x10] = "P", + [0x11] = "Q", + [0x12] = "R", + [0x13] = "S", + [0x14] = "T", + [0x15] = "U", + [0x16] = "V", + [0x17] = "W", + [0x18] = "X", + [0x19] = "Y", + [0x1A] = "Z", + + [0x1B] = "0", + [0x1C] = "1", + [0x1D] = "2", + [0x1E] = "3", + [0x1F] = "4", + [0x20] = "5", + [0x21] = "6", + [0x22] = "7", + [0x23] = "8", + [0x24] = "9", + + [0x25] = "bang", + [0x26] = "at", + [0x27] = "pound", + [0x28] = "dollar", + [0x29] = "percent", + [0x2A] = "caret", + [0x2B] = "and", + [0x2C] = "asterisk", + [0x2D] = "minus", + [0x2E] = "equals", + [0x2F] = "plus", + [0x30] = "apostrophe", + [0x31] = "less_than", + [0x32] = "greater_than", + [0x33] = "period", + [0x34] = "qmark", + + [0x35] = "apostrophe2", + [0x36] = "colon", + [0x37] = "comma", + [0x38] = "curlybracketleft", + [0x39] = "curlybracketright", + [0x3A] = "currencysign", + [0x3B] = "euro", + [0x3C] = "onehalf", + [0x3D] = "poundsymbol", + [0x3E] = "roundbracketleft", + [0x3F] = "roundbracketright", + [0x40] = "slashleft", + [0x41] = "slashright", + [0x42] = "squarebracketleft", + [0x43] = "squarebracketright", + [0x44] = "tilde", + [0x45] = "umlaut", + [0x46] = "underscore", + [0x47] = "verticalbar", +} + +return function(gate) + gate.tickStarted = 0 +end diff --git a/bricks/special/text-update.lua b/bricks/special/text-update.lua new file mode 100644 index 0000000..af444d2 --- /dev/null +++ b/bricks/special/text-update.lua @@ -0,0 +1,13 @@ + +return function(gate) + if gate.ports[1]:isrising() then + gate.tickStarted = gate:gettick() + elseif gate.ports[1]:isfalling() then + local ticksOn = gate:gettick() - gate.tickStarted + + local printid = ((ticksOn-1) % #textbrick_idxToPrint) + local printname = textbrick_idxToPrint[printid] + + gate:cb("1\t" .. printname) + end +end diff --git a/bricks/wires.cs b/bricks/wires.cs new file mode 100644 index 0000000..6360b4a --- /dev/null +++ b/bricks/wires.cs @@ -0,0 +1,359 @@ +datablock fxDTSBrickData(LogicWire1x1fData : brick1x1fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x1f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x2fData : brick1x2fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x2f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x2f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x3fData : brick1x3fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x3f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x3f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x4fData : brick1x4fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x4f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x4f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x5fData : LogicWire1x4fData) +{ + uiName = "Wire 1x5f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x5f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x5f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x6fData : brick1x6fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x6f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x6f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x7fData : LogicWire1x5fData) +{ + uiName = "Wire 1x7f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x7f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x7f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x8fData : brick1x8fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x8f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x8f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x9fData : LogicWire1x5fData) +{ + uiName = "Wire 1x9f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x9f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x9f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x10fData : brick1x10fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x10f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x10f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x11fData : LogicWire1x5fData) +{ + uiName = "Wire 1x11f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x11f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x11f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x12fData : brick1x12fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x12f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x12f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x13fData : LogicWire1x5fData) +{ + uiName = "Wire 1x13f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x13f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x13f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x14fData : LogicWire1x5fData) +{ + uiName = "Wire 1x14f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x14f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x14f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x15fData : LogicWire1x5fData) +{ + uiName = "Wire 1x15f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x15f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x15f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x16fData : brick1x16fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x16f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x16f"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x32fData : LogicWire1x5fData) +{ + uiName = "Wire 1x32f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x32f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x32f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x64fData : LogicWire1x5fData) +{ + uiName = "Wire 1x64f"; + iconName = $LuaLogic::Path @ "icons/Wire 1x64f"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x64f.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x2Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x2"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x2"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x2.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x3Data : brick1x1Data) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x1x3"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x3"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x1x4Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x4"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x4"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x4.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x5Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x5"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x5"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x5.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x6Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x6"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x6"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x6.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x7Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x7"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x7"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x7.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x8Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x8"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x8"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x8.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x9Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x9"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x9"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x9.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x10Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x10"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x10"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x10.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x11Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x11"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x11"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x11.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x12Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x12"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x12"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x12.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x13Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x13"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x13"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x13.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x14Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x14"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x14"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x14.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x15Data : Brick1x1x5Data) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 1x1x15"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x15"; + + isLogic = true; + isLogicWire = true; +}; + +datablock fxDTSBrickData(LogicWire1x1x16Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x16"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x16"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x16.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x17Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x17"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x17"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x17.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x1x128Data : LogicWire1x64fData) +{ + uiName = "Wire 1x1x128"; + iconName = $LuaLogic::Path @ "icons/Wire 1x1x128"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x1x128.blb"; +}; + +datablock fxDTSBrickData(LogicWire1x2x5Data : LogicWire1x64fData) +{ + uiName = "Wire 1x2x5"; + iconName = $LuaLogic::Path @ "icons/Wire 1x2x5"; + brickFile = $LuaLogic::Path @ "bricks/blb/wires/1x2x5.blb"; +}; + +datablock fxDTSBrickData(LogicWire64x64fData : brick64x64fData) +{ + category = "Logic Bricks"; + subCategory = "Wires"; + uiName = "Wire 64x64f"; + iconName = $LuaLogic::Path @ "icons/Wire 64x64f"; + + isLogic = true; + isLogicWire = true; +}; + +//VISUAL +datablock fxDTSBrickData(LogicWire1x1fVisualData : LogicWire1x1fData) +{ + subCategory = "Wires - Special"; + uiName = "Visual Wire 1x1f"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 1x1f"; + isLogicVisual = true; +}; + +datablock fxDTSBrickData(LogicWire1x1x2VisualData : LogicWire1x1x2Data) +{ + subCategory = "Wires - Special"; + uiName = "Visual Wire 1x1x2"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 1x1x2"; + isLogicVisual = true; +}; + +datablock fxDTSBrickData(LogicWire1x1x3VisualData : LogicWire1x1x3Data) +{ + subCategory = "Wires - Special"; + uiName = "Visual Wire 1x1x3"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 1x1x3"; + isLogicVisual = true; +}; + +datablock fxDTSBrickData(LogicWire1x1x15VisualData : LogicWire1x1x15Data) +{ + subCategory = "Wires - Special"; + uiName = "Visual Wire 1x1x15"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 1x1x15"; + isLogicVisual = true; +}; + +datablock fxDTSBrickData(LogicWire1x2x5VisualData : LogicWire1x2x5Data) +{ + subCategory = "Wires - Special"; + uiName = "Visual Wire 1x2x5"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 1x2x5"; + isLogicVisual = true; +}; + +datablock fxDTSBrickData(LogicWire2x2fVisualData : brick2x2fData) +{ + category = "Logic Bricks"; + subCategory = "Wires - Special"; + uiName = "Visual Wire 2x2f"; + iconName = $LuaLogic::Path @ "icons/Visual Wire 2x2f"; + + isLogic = true; + isLogicWire = true; + isLogicVisual = true; +}; diff --git a/cmds.cs b/cmds.cs new file mode 100644 index 0000000..d1f46c6 --- /dev/null +++ b/cmds.cs @@ -0,0 +1,82 @@ +function serverCmdLT(%client) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + $Pref::Server::LuaLogic::OPT_TICK_ENABLED = !$Pref::Server::LuaLogic::OPT_TICK_ENABLED; + messageAll('', '\c3%1\c6 has %2 the logic tick.', %client.name, $Pref::Server::LuaLogic::OPT_TICK_ENABLED ? "enabled":"disabled"); + lualogic_sendoptions(); + } +} + +function serverCmdLST(%client, %time) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + %time = mClamp(%time, 0, 999999); + $Pref::Server::LuaLogic::OPT_TICK_TIME = %time/1000; + messageAll('', '\c3%1\c6 has set the logic tick time to \c3%2\c6 millisecond%3.', %client.name, %time, %time == 1 ? "":"s"); + lualogic_sendoptions(); + } +} + +function serverCmdLS(%client) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + commandToAll('bottomprint', "\c3" @ %client.name @ "\c6 has forced a logic tick.", 3, 1); + lualogic_send("TICK"); + } +} + +function serverCmdLFX(%client) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + $Pref::Server::LuaLogic::OPT_FX_UPDATES = !$Pref::Server::LuaLogic::OPT_FX_UPDATES; + messageAll('', '\c3%1\c6 has %2 logic FX updates.', %client.name, $Pref::Server::LuaLogic::OPT_FX_UPDATES ? "enabled":"disabled"); + lualogic_sendoptions(); + } +} + +function serverCmdLFXT(%client, %time) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + %time = mClamp(%time, 0, 999999); + $Pref::Server::LuaLogic::OPT_FX_TIME = %time/1000; + messageAll('', '\c3%1\c6 has set the logic FX time to \c3%2\c6 millisecond%3.', %client.name, %time, %time == 1 ? "":"s"); + lualogic_sendoptions(); + } +} + +function serverCmdLTR(%client) +{ + %client.logicLTR = !%client.logicLTR; + if(%client.logicLTR == false) + commandToClient(%client, 'bottomPrint', "", 0, 1); +} + +function serverCmdLI(%client) +{ + if(%client.isAdmin || %client.isSuperAdmin) + lualogic_send("SINFO;" @ %client); +} + +function serverCmdLG(%client, %n) +{ + if(%client.isAdmin || %client.isSuperAdmin) + { + if(isObject(%player = %client.player)) + { + %eye = %player.getEyePoint(); + %vec = %player.getEyeVector(); + %ray = containerRayCast(%eye, vectorAdd(%eye, vectorScale(%vec, 5*getWord(%player.getScale(), 2))), $TypeMasks::FxBrickObjectType); + if(isObject(%hit = firstWord(%ray))) + { + %data = %hit.getDataBlock(); + if(%data.isLogicGate) + lualogic_send("TEST;" @ %hit @ ";" @ %n); + } + } + } +} diff --git a/description.txt b/description.txt new file mode 100644 index 0000000..2915151 --- /dev/null +++ b/description.txt @@ -0,0 +1,4 @@ +Title: Lua Logic +Authors: Eagle517 (25351), Redo (12878), Entity (49803) +https://github.com/Eagle517/BL-Lua-Logic +Lets you simulate logic circuits in Blockland while using Lua as the backend for performance. diff --git a/icons/1x1f Diode.png b/icons/1x1f Diode.png new file mode 100644 index 0000000..6997a72 Binary files /dev/null and b/icons/1x1f Diode.png differ diff --git a/icons/1x1f NOT.png b/icons/1x1f NOT.png new file mode 100644 index 0000000..a0391d8 Binary files /dev/null and b/icons/1x1f NOT.png differ diff --git a/icons/1x2f AND.png b/icons/1x2f AND.png new file mode 100644 index 0000000..b2bbfc4 Binary files /dev/null and b/icons/1x2f AND.png differ diff --git a/icons/1x2f NAND.png b/icons/1x2f NAND.png new file mode 100644 index 0000000..f852961 Binary files /dev/null and b/icons/1x2f NAND.png differ diff --git a/icons/1x2f NOR.png b/icons/1x2f NOR.png new file mode 100644 index 0000000..692bafe Binary files /dev/null and b/icons/1x2f NOR.png differ diff --git a/icons/1x2f OR.png b/icons/1x2f OR.png new file mode 100644 index 0000000..664708c Binary files /dev/null and b/icons/1x2f OR.png differ diff --git a/icons/1x2f XNOR.png b/icons/1x2f XNOR.png new file mode 100644 index 0000000..d7895b0 Binary files /dev/null and b/icons/1x2f XNOR.png differ diff --git a/icons/1x2f XOR.png b/icons/1x2f XOR.png new file mode 100644 index 0000000..55df1dd Binary files /dev/null and b/icons/1x2f XOR.png differ diff --git a/icons/8 Bit D FlipFlop.png b/icons/8 Bit D FlipFlop.png new file mode 100644 index 0000000..d8d6281 Binary files /dev/null and b/icons/8 Bit D FlipFlop.png differ diff --git a/icons/8 Bit Enabler.png b/icons/8 Bit Enabler.png new file mode 100644 index 0000000..9ce064b Binary files /dev/null and b/icons/8 Bit Enabler.png differ diff --git a/icons/8bit Adder.png b/icons/8bit Adder.png new file mode 100644 index 0000000..5becff2 Binary files /dev/null and b/icons/8bit Adder.png differ diff --git a/icons/8bit Divider.png b/icons/8bit Divider.png new file mode 100644 index 0000000..38c581c Binary files /dev/null and b/icons/8bit Divider.png differ diff --git a/icons/8bit Multiplier.png b/icons/8bit Multiplier.png new file mode 100644 index 0000000..4d9ba49 Binary files /dev/null and b/icons/8bit Multiplier.png differ diff --git a/icons/8bit Subtractor.png b/icons/8bit Subtractor.png new file mode 100644 index 0000000..8ff1b9c Binary files /dev/null and b/icons/8bit Subtractor.png differ diff --git a/icons/D FlipFlop.png b/icons/D FlipFlop.png new file mode 100644 index 0000000..baeedca Binary files /dev/null and b/icons/D FlipFlop.png differ diff --git a/icons/D Flipflop Grid Memory 2.png b/icons/D Flipflop Grid Memory 2.png new file mode 100644 index 0000000..84364e8 Binary files /dev/null and b/icons/D Flipflop Grid Memory 2.png differ diff --git a/icons/Diode Down.png b/icons/Diode Down.png new file mode 100644 index 0000000..e74ec25 Binary files /dev/null and b/icons/Diode Down.png differ diff --git a/icons/Diode Up.png b/icons/Diode Up.png new file mode 100644 index 0000000..3199f59 Binary files /dev/null and b/icons/Diode Up.png differ diff --git a/icons/Full Adder.png b/icons/Full Adder.png new file mode 100644 index 0000000..7a0b910 Binary files /dev/null and b/icons/Full Adder.png differ diff --git a/icons/Full Subtractor.png b/icons/Full Subtractor.png new file mode 100644 index 0000000..ac029dc Binary files /dev/null and b/icons/Full Subtractor.png differ diff --git a/icons/Half Adder.png b/icons/Half Adder.png new file mode 100644 index 0000000..f1cdbdd Binary files /dev/null and b/icons/Half Adder.png differ diff --git a/icons/Half Subtractor.png b/icons/Half Subtractor.png new file mode 100644 index 0000000..d721ab8 Binary files /dev/null and b/icons/Half Subtractor.png differ diff --git a/icons/Horizontal Pixel.png b/icons/Horizontal Pixel.png new file mode 100644 index 0000000..4b7f3d0 Binary files /dev/null and b/icons/Horizontal Pixel.png differ diff --git a/icons/Input Keyboard.png b/icons/Input Keyboard.png new file mode 100644 index 0000000..73747d3 Binary files /dev/null and b/icons/Input Keyboard.png differ diff --git a/icons/Not Down.png b/icons/Not Down.png new file mode 100644 index 0000000..cc34d62 Binary files /dev/null and b/icons/Not Down.png differ diff --git a/icons/Not Up.png b/icons/Not Up.png new file mode 100644 index 0000000..e1d4618 Binary files /dev/null and b/icons/Not Up.png differ diff --git a/icons/Pixel.png b/icons/Pixel.png new file mode 100644 index 0000000..5e5054c Binary files /dev/null and b/icons/Pixel.png differ diff --git a/icons/Text Brick.png b/icons/Text Brick.png new file mode 100644 index 0000000..39f9bda Binary files /dev/null and b/icons/Text Brick.png differ diff --git a/icons/Visual Wire 1x1f.png b/icons/Visual Wire 1x1f.png new file mode 100644 index 0000000..1bdcd23 Binary files /dev/null and b/icons/Visual Wire 1x1f.png differ diff --git a/icons/Visual Wire 1x1x15.png b/icons/Visual Wire 1x1x15.png new file mode 100644 index 0000000..a502e4b Binary files /dev/null and b/icons/Visual Wire 1x1x15.png differ diff --git a/icons/Visual Wire 1x1x2.png b/icons/Visual Wire 1x1x2.png new file mode 100644 index 0000000..8e55eb5 Binary files /dev/null and b/icons/Visual Wire 1x1x2.png differ diff --git a/icons/Visual Wire 1x1x3.png b/icons/Visual Wire 1x1x3.png new file mode 100644 index 0000000..a4a1037 Binary files /dev/null and b/icons/Visual Wire 1x1x3.png differ diff --git a/icons/Visual Wire 1x2x5.png b/icons/Visual Wire 1x2x5.png new file mode 100644 index 0000000..9915467 Binary files /dev/null and b/icons/Visual Wire 1x2x5.png differ diff --git a/icons/Visual Wire 2x2f.png b/icons/Visual Wire 2x2f.png new file mode 100644 index 0000000..dabf746 Binary files /dev/null and b/icons/Visual Wire 2x2f.png differ diff --git a/icons/Wire 1x10f.png b/icons/Wire 1x10f.png new file mode 100644 index 0000000..a015b4e Binary files /dev/null and b/icons/Wire 1x10f.png differ diff --git a/icons/Wire 1x11f.png b/icons/Wire 1x11f.png new file mode 100644 index 0000000..e3956d4 Binary files /dev/null and b/icons/Wire 1x11f.png differ diff --git a/icons/Wire 1x12f.png b/icons/Wire 1x12f.png new file mode 100644 index 0000000..e05ed62 Binary files /dev/null and b/icons/Wire 1x12f.png differ diff --git a/icons/Wire 1x13f.png b/icons/Wire 1x13f.png new file mode 100644 index 0000000..a54edda Binary files /dev/null and b/icons/Wire 1x13f.png differ diff --git a/icons/Wire 1x14f.png b/icons/Wire 1x14f.png new file mode 100644 index 0000000..3222fab Binary files /dev/null and b/icons/Wire 1x14f.png differ diff --git a/icons/Wire 1x15f.png b/icons/Wire 1x15f.png new file mode 100644 index 0000000..88b756a Binary files /dev/null and b/icons/Wire 1x15f.png differ diff --git a/icons/Wire 1x16f.png b/icons/Wire 1x16f.png new file mode 100644 index 0000000..476422c Binary files /dev/null and b/icons/Wire 1x16f.png differ diff --git a/icons/Wire 1x1f.png b/icons/Wire 1x1f.png new file mode 100644 index 0000000..b5478d2 Binary files /dev/null and b/icons/Wire 1x1f.png differ diff --git a/icons/Wire 1x1x10.png b/icons/Wire 1x1x10.png new file mode 100644 index 0000000..c8947f4 Binary files /dev/null and b/icons/Wire 1x1x10.png differ diff --git a/icons/Wire 1x1x11.png b/icons/Wire 1x1x11.png new file mode 100644 index 0000000..5968e2a Binary files /dev/null and b/icons/Wire 1x1x11.png differ diff --git a/icons/Wire 1x1x12.png b/icons/Wire 1x1x12.png new file mode 100644 index 0000000..f557c7d Binary files /dev/null and b/icons/Wire 1x1x12.png differ diff --git a/icons/Wire 1x1x128.png b/icons/Wire 1x1x128.png new file mode 100644 index 0000000..58e1672 Binary files /dev/null and b/icons/Wire 1x1x128.png differ diff --git a/icons/Wire 1x1x13.png b/icons/Wire 1x1x13.png new file mode 100644 index 0000000..5413b1b Binary files /dev/null and b/icons/Wire 1x1x13.png differ diff --git a/icons/Wire 1x1x14.png b/icons/Wire 1x1x14.png new file mode 100644 index 0000000..1209a01 Binary files /dev/null and b/icons/Wire 1x1x14.png differ diff --git a/icons/Wire 1x1x15.png b/icons/Wire 1x1x15.png new file mode 100644 index 0000000..4d47879 Binary files /dev/null and b/icons/Wire 1x1x15.png differ diff --git a/icons/Wire 1x1x16.png b/icons/Wire 1x1x16.png new file mode 100644 index 0000000..8a87fe5 Binary files /dev/null and b/icons/Wire 1x1x16.png differ diff --git a/icons/Wire 1x1x17.png b/icons/Wire 1x1x17.png new file mode 100644 index 0000000..cc8545a Binary files /dev/null and b/icons/Wire 1x1x17.png differ diff --git a/icons/Wire 1x1x2.png b/icons/Wire 1x1x2.png new file mode 100644 index 0000000..c8030b3 Binary files /dev/null and b/icons/Wire 1x1x2.png differ diff --git a/icons/Wire 1x1x3.png b/icons/Wire 1x1x3.png new file mode 100644 index 0000000..6c93985 Binary files /dev/null and b/icons/Wire 1x1x3.png differ diff --git a/icons/Wire 1x1x4.png b/icons/Wire 1x1x4.png new file mode 100644 index 0000000..db8ef58 Binary files /dev/null and b/icons/Wire 1x1x4.png differ diff --git a/icons/Wire 1x1x5.png b/icons/Wire 1x1x5.png new file mode 100644 index 0000000..2247d9a Binary files /dev/null and b/icons/Wire 1x1x5.png differ diff --git a/icons/Wire 1x1x6.png b/icons/Wire 1x1x6.png new file mode 100644 index 0000000..9c225c2 Binary files /dev/null and b/icons/Wire 1x1x6.png differ diff --git a/icons/Wire 1x1x7.png b/icons/Wire 1x1x7.png new file mode 100644 index 0000000..ffbba60 Binary files /dev/null and b/icons/Wire 1x1x7.png differ diff --git a/icons/Wire 1x1x8.png b/icons/Wire 1x1x8.png new file mode 100644 index 0000000..4ea7afe Binary files /dev/null and b/icons/Wire 1x1x8.png differ diff --git a/icons/Wire 1x1x9.png b/icons/Wire 1x1x9.png new file mode 100644 index 0000000..e17a077 Binary files /dev/null and b/icons/Wire 1x1x9.png differ diff --git a/icons/Wire 1x2f.png b/icons/Wire 1x2f.png new file mode 100644 index 0000000..89c3a76 Binary files /dev/null and b/icons/Wire 1x2f.png differ diff --git a/icons/Wire 1x2x5.png b/icons/Wire 1x2x5.png new file mode 100644 index 0000000..d92a96d Binary files /dev/null and b/icons/Wire 1x2x5.png differ diff --git a/icons/Wire 1x32f.png b/icons/Wire 1x32f.png new file mode 100644 index 0000000..15a1c78 Binary files /dev/null and b/icons/Wire 1x32f.png differ diff --git a/icons/Wire 1x3f.png b/icons/Wire 1x3f.png new file mode 100644 index 0000000..c71625a Binary files /dev/null and b/icons/Wire 1x3f.png differ diff --git a/icons/Wire 1x4f.png b/icons/Wire 1x4f.png new file mode 100644 index 0000000..dde450a Binary files /dev/null and b/icons/Wire 1x4f.png differ diff --git a/icons/Wire 1x5f.png b/icons/Wire 1x5f.png new file mode 100644 index 0000000..1f44442 Binary files /dev/null and b/icons/Wire 1x5f.png differ diff --git a/icons/Wire 1x64f.png b/icons/Wire 1x64f.png new file mode 100644 index 0000000..5ffb22c Binary files /dev/null and b/icons/Wire 1x64f.png differ diff --git a/icons/Wire 1x6f.png b/icons/Wire 1x6f.png new file mode 100644 index 0000000..c93fbeb Binary files /dev/null and b/icons/Wire 1x6f.png differ diff --git a/icons/Wire 1x7f.png b/icons/Wire 1x7f.png new file mode 100644 index 0000000..c90896b Binary files /dev/null and b/icons/Wire 1x7f.png differ diff --git a/icons/Wire 1x8f.png b/icons/Wire 1x8f.png new file mode 100644 index 0000000..a87b181 Binary files /dev/null and b/icons/Wire 1x8f.png differ diff --git a/icons/Wire 1x9f.png b/icons/Wire 1x9f.png new file mode 100644 index 0000000..5808781 Binary files /dev/null and b/icons/Wire 1x9f.png differ diff --git a/icons/Wire 64x64f.png b/icons/Wire 64x64f.png new file mode 100644 index 0000000..f617e71 Binary files /dev/null and b/icons/Wire 64x64f.png differ diff --git a/icons/switch.png b/icons/switch.png new file mode 100644 index 0000000..bb6505e Binary files /dev/null and b/icons/switch.png differ diff --git a/server.cs b/server.cs new file mode 100644 index 0000000..3836bbd --- /dev/null +++ b/server.cs @@ -0,0 +1,126 @@ + +$LuaLogic::Path = filePath(ExpandFilename("./server.cs")) @ "/"; + +if($Pref::Server::LuaLogic::OPT_TICK_ENABLED $= "") $Pref::Server::LuaLogic::OPT_TICK_ENABLED = true; +if($Pref::Server::LuaLogic::OPT_TICK_TIME $= "") $Pref::Server::LuaLogic::OPT_TICK_TIME = 0; +if($Pref::Server::LuaLogic::OPT_FX_UPDATES $= "") $Pref::Server::LuaLogic::OPT_FX_UPDATES = true; +if($Pref::Server::LuaLogic::OPT_FX_TIME $= "") $Pref::Server::LuaLogic::OPT_FX_TIME = 0.03; + +exec("./utilities.cs"); +exec("./tcp.cs"); +exec("./bricks.cs"); +exec("./brickdata.cs"); +exec("./cmds.cs"); + +function lualogic_loadprintsandcolors() +{ + lualogic_definecolor("RED" , "1 0 0 1"); + lualogic_definecolor("GREEN", "0 1 0 1"); + + lualogic_defineprint("ARROW" , "Add-Ons/Print_Logic_Default/prints/arrow.png"); + lualogic_defineprint("UPARROW" , "Add-Ons/Print_Logic_Default/prints/uparrow.png"); + lualogic_defineprint("DOWNARROW", "Add-Ons/Print_Logic_Default/prints/downarrow.png"); + + for(%i = 0; %i < 8; %i++) + { + %a = (%i >> 2) & 1; + %b = (%i >> 1) & 1; + %c = (%i >> 0) & 1; + lualogic_defineprint("COLOR" @ %a @ %b @ %c, "Add-Ons/Print_Logic_Default/prints/color_" @ %a @ %b @ %c @ ".png"); + } + + lualogic_defineprint("space" , "Add-Ons/Print_Letters_Default/prints/-space.png" ); + + lualogic_defineprint("A" , "Add-Ons/Print_Letters_Default/prints/A.png" ); + lualogic_defineprint("B" , "Add-Ons/Print_Letters_Default/prints/B.png" ); + lualogic_defineprint("C" , "Add-Ons/Print_Letters_Default/prints/C.png" ); + lualogic_defineprint("D" , "Add-Ons/Print_Letters_Default/prints/D.png" ); + lualogic_defineprint("E" , "Add-Ons/Print_Letters_Default/prints/E.png" ); + lualogic_defineprint("F" , "Add-Ons/Print_Letters_Default/prints/F.png" ); + lualogic_defineprint("G" , "Add-Ons/Print_Letters_Default/prints/G.png" ); + lualogic_defineprint("H" , "Add-Ons/Print_Letters_Default/prints/H.png" ); + lualogic_defineprint("I" , "Add-Ons/Print_Letters_Default/prints/I.png" ); + lualogic_defineprint("J" , "Add-Ons/Print_Letters_Default/prints/J.png" ); + lualogic_defineprint("K" , "Add-Ons/Print_Letters_Default/prints/K.png" ); + lualogic_defineprint("L" , "Add-Ons/Print_Letters_Default/prints/L.png" ); + lualogic_defineprint("M" , "Add-Ons/Print_Letters_Default/prints/M.png" ); + lualogic_defineprint("N" , "Add-Ons/Print_Letters_Default/prints/N.png" ); + lualogic_defineprint("O" , "Add-Ons/Print_Letters_Default/prints/O.png" ); + lualogic_defineprint("P" , "Add-Ons/Print_Letters_Default/prints/P.png" ); + lualogic_defineprint("Q" , "Add-Ons/Print_Letters_Default/prints/Q.png" ); + lualogic_defineprint("R" , "Add-Ons/Print_Letters_Default/prints/R.png" ); + lualogic_defineprint("S" , "Add-Ons/Print_Letters_Default/prints/S.png" ); + lualogic_defineprint("T" , "Add-Ons/Print_Letters_Default/prints/T.png" ); + lualogic_defineprint("U" , "Add-Ons/Print_Letters_Default/prints/U.png" ); + lualogic_defineprint("V" , "Add-Ons/Print_Letters_Default/prints/V.png" ); + lualogic_defineprint("W" , "Add-Ons/Print_Letters_Default/prints/W.png" ); + lualogic_defineprint("X" , "Add-Ons/Print_Letters_Default/prints/X.png" ); + lualogic_defineprint("Y" , "Add-Ons/Print_Letters_Default/prints/Y.png" ); + lualogic_defineprint("Z" , "Add-Ons/Print_Letters_Default/prints/Z.png" ); + + lualogic_defineprint("0" , "Add-Ons/Print_Letters_Default/prints/0.png" ); + lualogic_defineprint("1" , "Add-Ons/Print_Letters_Default/prints/1.png" ); + lualogic_defineprint("2" , "Add-Ons/Print_Letters_Default/prints/2.png" ); + lualogic_defineprint("3" , "Add-Ons/Print_Letters_Default/prints/3.png" ); + lualogic_defineprint("4" , "Add-Ons/Print_Letters_Default/prints/4.png" ); + lualogic_defineprint("5" , "Add-Ons/Print_Letters_Default/prints/5.png" ); + lualogic_defineprint("6" , "Add-Ons/Print_Letters_Default/prints/6.png" ); + lualogic_defineprint("7" , "Add-Ons/Print_Letters_Default/prints/7.png" ); + lualogic_defineprint("8" , "Add-Ons/Print_Letters_Default/prints/8.png" ); + lualogic_defineprint("9" , "Add-Ons/Print_Letters_Default/prints/9.png" ); + + lualogic_defineprint("bang" , "Add-Ons/Print_Letters_Default/prints/-bang.png" ); + lualogic_defineprint("at" , "Add-Ons/Print_Letters_Default/prints/-at.png" ); + lualogic_defineprint("pound" , "Add-Ons/Print_Letters_Default/prints/-pound.png" ); + lualogic_defineprint("dollar" , "Add-Ons/Print_Letters_Default/prints/-dollar.png" ); + lualogic_defineprint("percent" , "Add-Ons/Print_Letters_Default/prints/-percent.png" ); + lualogic_defineprint("caret" , "Add-Ons/Print_Letters_Default/prints/-caret.png" ); + lualogic_defineprint("and" , "Add-Ons/Print_Letters_Default/prints/-and.png" ); + lualogic_defineprint("asterisk" , "Add-Ons/Print_Letters_Default/prints/-asterisk.png" ); + lualogic_defineprint("minus" , "Add-Ons/Print_Letters_Default/prints/-minus.png" ); + lualogic_defineprint("equals" , "Add-Ons/Print_Letters_Default/prints/-equals.png" ); + lualogic_defineprint("plus" , "Add-Ons/Print_Letters_Default/prints/-plus.png" ); + lualogic_defineprint("apostrophe" , "Add-Ons/Print_Letters_Default/prints/-apostrophe.png" ); + lualogic_defineprint("less_than" , "Add-Ons/Print_Letters_Default/prints/-less_than.png" ); + lualogic_defineprint("greater_than" , "Add-Ons/Print_Letters_Default/prints/-greater_than.png" ); + lualogic_defineprint("period" , "Add-Ons/Print_Letters_Default/prints/-period.png" ); + lualogic_defineprint("qmark" , "Add-Ons/Print_Letters_Default/prints/-qmark.png" ); + + lualogic_defineprint("apostrophe2" , "Add-Ons/Print_Letters_Extra/prints/-apostrophe2.png" ); + lualogic_defineprint("colon" , "Add-Ons/Print_Letters_Extra/prints/-colon.png" ); + lualogic_defineprint("comma" , "Add-Ons/Print_Letters_Extra/prints/-comma.png" ); + lualogic_defineprint("curlybracketleft" , "Add-Ons/Print_Letters_Extra/prints/-curlybracketleft.png" ); + lualogic_defineprint("curlybracketright" , "Add-Ons/Print_Letters_Extra/prints/-curlybracketright.png" ); + lualogic_defineprint("currencysign" , "Add-Ons/Print_Letters_Extra/prints/-currencysign.png" ); + lualogic_defineprint("euro" , "Add-Ons/Print_Letters_Extra/prints/-euro.png" ); + lualogic_defineprint("onehalf" , "Add-Ons/Print_Letters_Extra/prints/-onehalf.png" ); + lualogic_defineprint("poundsymbol" , "Add-Ons/Print_Letters_Extra/prints/-poundsymbol.png" ); + lualogic_defineprint("roundbracketleft" , "Add-Ons/Print_Letters_Extra/prints/-roundbracketleft.png" ); + lualogic_defineprint("roundbracketright" , "Add-Ons/Print_Letters_Extra/prints/-roundbracketright.png" ); + lualogic_defineprint("slashleft" , "Add-Ons/Print_Letters_Extra/prints/-slashleft.png" ); + lualogic_defineprint("slashright" , "Add-Ons/Print_Letters_Extra/prints/-slashright.png" ); + lualogic_defineprint("squarebracketleft" , "Add-Ons/Print_Letters_Extra/prints/-squarebracketleft.png" ); + lualogic_defineprint("squarebracketright", "Add-Ons/Print_Letters_Extra/prints/-squarebracketright.png"); + lualogic_defineprint("tilde" , "Add-Ons/Print_Letters_Extra/prints/-tilde.png" ); + lualogic_defineprint("umlaut" , "Add-Ons/Print_Letters_Extra/prints/-umlaut.png" ); + lualogic_defineprint("underscore" , "Add-Ons/Print_Letters_Extra/prints/-underscore.png" ); + lualogic_defineprint("verticalbar" , "Add-Ons/Print_Letters_Extra/prints/-verticalbar.png" ); +} +schedule(0, 0, "lualogic_loadprintsandcolors"); + +package LuaLogic +{ + function onServerDestroyed() + { + deleteVariables("$LuaLogic*"); + parent::onServerDestroyed(); + } +}; +activatePackage("LuaLogic"); + +function llr(){ + deleteVariables("$LuaLogic*"); + resetAllOpCallFunc(); + exec("./server.cs"); + schedule(3000, 0, lualogic_connect, 25000); +} diff --git a/tcp.cs b/tcp.cs new file mode 100644 index 0000000..520a8d2 --- /dev/null +++ b/tcp.cs @@ -0,0 +1,125 @@ +function LuaLogicTCP::sendData(%this) +{ + cancel(%this.lualogicTick); + %this.lualogicTick = %this.schedule(31, "sendData"); + + if(%this.data !$= "") + { + %data = %this.data; + while(strpos(%data, ";;") != -1) + %data = strReplace(%data, ";;", "; ;"); + + %this.send(%data @ "\n"); + %this.data = ""; + } +} + +function LuaLogicTCP::onConnected(%this) +{ + lualogic_print("tcp connected"); + + %this.data = ""; + %this.sendData(); + %this.isConnected = true; + + lualogic_sendoptions(); + lualogic_sendgatedefinitions(); + lualogic_sendall(); +} + +function LuaLogicTCP::onLine(%this, %line) +{ + %cmd = getField(%line, 0); + switch$(%cmd) + { + case "WU": + %state = getField(%line, 1)|0; + %count = getFieldCount(%line); + + if(%state) + { + for(%i = 2; %i < %count; %i++) + { + %brick = getField(%line, %i); + if(isObject(%brick)) + %brick.setColorFX(3); + } + } + else + { + for(%i = 2; %i < %count; %i++) + { + %brick = getField(%line, %i); + if(isObject(%brick)) + %brick.setColorFX(0); + } + } + case "TPS": + %tz = getField(%line, 1); + + %count = ClientGroup.getCount(); + for(%i = 0; %i < %count; %i++) + { + %client = ClientGroup.getObject(%i); + if(%client.logicLTR) + commandToClient(%client, 'bottomPrint', "\c3Logic Tick Rate\c6: " @ %tz, 2, 1); + } + case "GINFO": + %client = getField(%line, 1); + if(isObject(%client)) + { + %info = getField(%line, 2); + %info = strReplace(%info, "\\c0", "\c0"); + %info = strReplace(%info, "\\c2", "\c2"); + %info = strReplace(%info, "\\c5", "\c5"); + %client.centerPrint(%info, 5); + } + case "SINFO": + if(isObject(%client = getField(%line, 1))) + { + %wires = getField(%line, 2); + %gates = getField(%line, 3); + %inports = getField(%line, 4); + %outports = getField(%line, 5); + + messageClient(%client, '', '\c3Wires\c6: %1', %wires); + messageClient(%client, '', '\c3Gates\c6: %1', %gates); + messageClient(%client, '', '\c3Ports\c6: %1 inputs | %2 outputs (%3 total)', %inports, %outports, %inports + %outports); + } + case "CB": + %data = getFields(%line, 1, getFieldCount(%line)); + %data = nextToken(%data, brick, "\t"); + while(%brick !$= "") + { + %data = nextToken(%data, argc, "\t"); + if(%argc > 0) + { + %data = nextToken(%data, args, "\t"); + for(%i = 1; %i < %argc; %i++) + { + %data = nextToken(%data, arg, "\t"); + %args = %args TAB %arg; + } + } + + if(isObject(%brick)) + %brick.getDatablock().LuaLogic_Callback(%brick, %args); + + %data = nextToken(%data, brick, "\t"); + } + case "TEST": + talk("Time: " @ getField(%line, 1)); + } +} + +function LuaLogicTCP::onConnectFailed(%this) +{ + lualogic_print("tcp failed to connect"); +} + +function LuaLogicTCP::onDisconnect(%this) +{ + lualogic_print("tcp disconnected"); + %this.isConnected = false; + cancel(%this.lualogicTick); +} diff --git a/utilities.cs b/utilities.cs new file mode 100644 index 0000000..34d46b0 --- /dev/null +++ b/utilities.cs @@ -0,0 +1,221 @@ + +function lualogic_escapelogicfunction(%text){ + %text = strReplace(%text, "\\", "\\/"); + + %text = strReplace(%text, "\r", "\\r"); + %text = strReplace(%text, "\n", "\\n"); + %text = strReplace(%text, "\t", "\\t"); + %text = strReplace(%text, ";" , "\\:"); + + return %text; +} + +function lualogic_registergatedefinition(%data) +{ + if(!isObject(%data)) + return; + %id = %data.getID(); + + if((%idx = $LuaLogic::GateDefinitionIDX[%id]) $= "") + { + %idx = $LuaLogic::NumGateDefintions+0; + $LuaLogic::GateDefinitionIDX[%id] = %idx; + $LuaLogic::NumGateDefintions++; + } + + %def = %id @ ";" @ + %data.logicUIName @ ";" @ + %data.logicUIDesc @ ";" @ + lualogic_escapelogicfunction(%data.logicInit) @ ";" @ + lualogic_escapelogicfunction(%data.logicUpdate) @ ";" @ + lualogic_escapelogicfunction(%data.logicInput) @ ";" @ + (%ports = %data.numLogicPorts) + ; + + for(%i = 0; %i < %ports; %i++) + { + %def = %def @";"@ %data.logicPortType[%i] @";"@ %data.logicPortPos[%i] @";"@ %data.logicPortDir[%i] + @";"@ (%data.logicPortCauseUpdate[%i] == true) @";"@ %data.logicPortUIName[%i]; + } + + $LuaLogic::GateDefintion[%idx] = %def; +} + +function lualogic_print(%text) +{ + echo("LuaLogic -> ", %text); +} + +function lualogic_roundpos(%pos) +{ + return mFloor(getWord(%pos, 0)*4)/4 SPC mFloor(getWord(%pos, 1)*4)/4 SPC mFloor(getWord(%pos, 2)*10)/10; +} + +function lualogic_roundstudpos(%pos) +{ + return mFloor(getWord(%pos, 0)*2)/2 SPC mFloor(getWord(%pos, 1)*2)/2 SPC mFloor(getWord(%pos, 2)*5)/5; +} + +function lualogic_pos(%pos) +{ + %pos = lualogic_roundpos(%pos); + return getWord(%pos, 0)/0.25 SPC getWord(%pos, 1)/0.25 SPC getWord(%pos, 2)/0.1; +} + +function lualogic_studpos(%pos) +{ + %pos = lualogic_roundstudpos(%pos); + return getWord(%pos, 0)/0.5*2 + 1 SPC getWord(%pos, 1)/0.5*2 + 1 SPC getWord(%pos, 2)/0.2*2; +} + +function lualogic_postobrick(%pos) +{ + return getWord(%pos, 0)*0.25 SPC getWord(%pos, 1)*0.25 SPC getWord(%pos, 2)*0.1; +} + +function lualogic_connect(%port) +{ + if(isObject(LuaLogicTCP)) + LuaLogicTCP.delete(); + %tcp = new TCPObject(LuaLogicTCP); + %tcp.connect("127.0.0.1:" @ %port); +} + +function lualogic_send(%data) +{ + if(isObject(LuaLogicTCP) && LuaLogicTCP.isConnected) + { + while(strpos(%data, ";;") != -1) + %data = strReplace(%data, ";;", "; ;"); + + if(strlen(LuaLogicTCP.data) + strlen(%data) >= 1024) + LuaLogicTCP.sendData(); + + if(LuaLogicTCP.data $= "") + LuaLogicTCP.data = %data; + else + LuaLogicTCP.data = LuaLogicTCP.data @ ";" @ %data; + } +} + +function lualogic_sendgatedefinitions() +{ + for(%i = 0; %i < $LuaLogic::NumGateDefintions; %i++) + lualogic_send("GD;" @ $LuaLogic::GateDefintion[%i]); +} + +function lualogic_sendoptions() +{ + lualogic_send("OPT;TICK_ENABLED;" @ $Pref::Server::LuaLogic::OPT_TICK_ENABLED); + lualogic_send("OPT;TICK_TIME;" @ $Pref::Server::LuaLogic::OPT_TICK_TIME); + lualogic_send("OPT;FX_UPDATES;" @ $Pref::Server::LuaLogic::OPT_FX_UPDATES); + lualogic_send("OPT;FX_TIME;" @ $Pref::Server::LuaLogic::OPT_FX_TIME); +} + +function lualogic_sendinput(%gate, %argc, %arg0, %arg1, %arg2, %arg3, %arg4, %arg5, %arg6, %arg7, %arg8, %arg9, %arg10, %arg11, %arg12, %arg13, %arg14, %arg15) +{ + %args = %arg0; + for(%i = 1; %i < %argc; %i++) + %args = %args @ ";" @ %arg[%i]; + + if(%argc > 0) + lualogic_send("IN;" @ %gate.getID() @ ";" @ %argc @ ";" @ %args); + else + lualogic_send("IN;" @ %gate.getID() @ ";" @ %argc); +} + +function lualogic_ss(%obj, %state) +{ + lualogic_send("SG;" @ %obj @ ";" @ (%state == true)); +} + +function lualogic_definecolor(%color, %rgb, %allowTransparency) +{ + %r = getWord(%rgb, 0); + %g = getWord(%rgb, 1); + %b = getWord(%rgb, 2); + + %alpha = %allowTransparency ? 0.001 : 1; + + %bestDist = 9e9; + + for(%i = 0; %i < 64; %i++) + { + %crgba = getColorIDTable(%i); + if(getWord(%crgba, 3) >= %alpha) + { + %dr = getWord(%crgba, 0) - %r; + %dg = getWord(%crgba, 1) - %g; + %db = getWord(%crgba, 2) - %b; + %dist = %dr*%dr + %dg*%dg + %db*%db; + + if(%dist < %bestDist) + { + %bestDist = %dist; + %bestColor = %i; + } + } + } + + $LuaLogic::Color[%color] = %bestColor; + return %bestColor; +} + +function lualogic_iscolor(%color) +{ + return $LuaLogic::Color[%color] !$= ""; +} + +function lualogic_getcolor(%color) +{ + if($LuaLogic::Color[%color] !$= "") + return $LuaLogic::Color[%color]; + return 0; +} + +function lualogic_defineprint(%print, %file) +{ + %count = getNumPrintTextures(); + for(%i = 0; %i < %count; %i++) + { + if(getPrintTexture(%i) $= %file) + { + $LuaLogic::Print[%print] = %i; + return %i; + } + } + + return ""; +} + +function lualogic_isprint(%print) +{ + return $LuaLogic::Print[%print] !$= ""; +} + +function lualogic_getprint(%print) +{ + if($LuaLogic::Print[%print] !$= "") + return $LuaLogic::Print[%print]; + return 0; +} + +function lualogic_readfile(%filename){ + %filestr=""; + + %file=new FileObject(); + %success=%file.openForRead(%filename); + + if(%success){ + while(!%file.isEOF()){ + %line = %file.readLine(); + %filestr = %filestr @ %line @ "\n"; + } + }else{ + echo("LuaLogic: Failed to read file \"" @ %filename @ "\""); + } + %file.close(); + %file.delete(); + + return %filestr; +}