diff --git a/BodyColorGen/BodyColorGen/Program_old.cs b/BodyColorGen/BodyColorGen/Program_old.cs new file mode 100644 index 0000000..bae9440 --- /dev/null +++ b/BodyColorGen/BodyColorGen/Program_old.cs @@ -0,0 +1,101 @@ +/* + * Created by SharpDevelop. + * User: BITL + * Date: 5/24/2017 + * Time: 7:01 PM + * + * To change this template use Tools | Options | Coding | Edit Standard Headers. + */ +using System; +using System.Xml; +using System.IO; + +namespace BodyColorGen +{ + class Program + { + public static void Main(string[] args) + { + Console.Title = "RBXLegacy - Body Color Generator"; + + int[] colorArray = new int[32] {1,208,194,199,26,21,24,226,23,107,102,11,45,135,106,105,141,28,37,119,29,151,38,192,104,9,101,5,153,217,18,125}; + int HeadColor,TorsoColor,LArmColor,RArmColor,LLegColor,RLegColor; + while (true) + { + Random rand = new Random(); + HeadColor = colorArray[rand.Next(colorArray.Length)]; + TorsoColor = colorArray[rand.Next(colorArray.Length)]; + LArmColor = colorArray[rand.Next(colorArray.Length)]; + RArmColor = colorArray[rand.Next(colorArray.Length)]; + LLegColor = colorArray[rand.Next(colorArray.Length)]; + RLegColor = colorArray[rand.Next(colorArray.Length)]; + string dirname = "bodycolors/"; + if(!Directory.Exists(dirname)) + { + System.IO.Directory.CreateDirectory(dirname); + } + string filename = dirname + HeadColor + "-" + TorsoColor + "-" + LArmColor + "-" + RArmColor + "-" + LLegColor + "-" + RLegColor +".rbxm"; + if (!File.Exists(filename)) + { + Console.ForegroundColor = ConsoleColor.Green; + Console.WriteLine("Writing " + filename); + XmlTextWriter writer = new XmlTextWriter(filename, System.Text.Encoding.UTF8); + writer.Formatting = Formatting.Indented; + writer.Indentation = 3; + writer.WriteStartDocument(true); + writer.WriteStartElement("roblox"); + writer.WriteAttributeString("xmlns:xmime", "http://www.w3.org/2005/05/xmlmime"); + writer.WriteAttributeString("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"); + writer.WriteAttributeString("xsi:noNamespaceSchemaLocation", "http://www.roblox.com/roblox.xsd"); + writer.WriteAttributeString("version", "4"); + writer.WriteStartElement("External"); + writer.WriteString("null"); + writer.WriteEndElement(); + writer.WriteStartElement("External"); + writer.WriteString("nil"); + writer.WriteEndElement(); + writer.WriteStartElement("Item"); + writer.WriteAttributeString("class", "BodyColors"); + writer.WriteStartElement("Properties"); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "HeadColor"); + writer.WriteString(HeadColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "LeftArmColor"); + writer.WriteString(LArmColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "LeftLegColor"); + writer.WriteString(LLegColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("string"); + writer.WriteAttributeString("name", "Name"); + writer.WriteString("Body Colors"); + writer.WriteEndElement(); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "RightArmColor"); + writer.WriteString(RArmColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "RightLegColor"); + writer.WriteString(RLegColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("int"); + writer.WriteAttributeString("name", "TorsoColor"); + writer.WriteString(TorsoColor.ToString()); + writer.WriteEndElement(); + writer.WriteStartElement("bool"); + writer.WriteAttributeString("name", "archivable"); + writer.WriteString("true"); + writer.WriteEndElement(); + writer.WriteEndElement(); + writer.WriteEndElement(); + writer.WriteEndElement(); + writer.WriteEndDocument(); + writer.Close(); + } + } + } + } +} \ No newline at end of file diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index 732baa1..b4cac6a 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -716,7 +716,6 @@ namespace RBXLegacyLauncher { GlobalVars.RobloxPort = GlobalVars.DefaultRobloxPort; } - label38.Text = GlobalVars.RobloxPort.ToString(); } @@ -898,12 +897,15 @@ namespace RBXLegacyLauncher //Command proxy int totalLines = richTextBox1.Lines.Length; - string lastLine = richTextBox1.Lines[totalLines - 1]; - - if (e.KeyCode == Keys.Enter) + if (totalLines > 0) { - richTextBox1.AppendText(Environment.NewLine); - ConsoleProcessCommands(lastLine); + string lastLine = richTextBox1.Lines[totalLines - 1]; + + if (e.KeyCode == Keys.Enter) + { + richTextBox1.AppendText(Environment.NewLine); + ConsoleProcessCommands(lastLine); + } } } @@ -966,12 +968,12 @@ namespace RBXLegacyLauncher } try { - ConsolePrint("Client Loaded.", 4, false); + ConsolePrint("Client Loaded.", 4); Process.Start(rbxexe, args); } catch (Exception ex) { - ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2, false); + ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2); DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -1091,12 +1093,12 @@ namespace RBXLegacyLauncher } try { - ConsolePrint("Play Solo Loaded.", 4, false); + ConsolePrint("Play Solo Loaded.", 4); Process.Start(rbxexe, args); } catch (Exception ex) { - ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2, false); + ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2); DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -1119,12 +1121,12 @@ namespace RBXLegacyLauncher } try { - ConsolePrint("Server Loaded.", 4, false); + ConsolePrint("Server Loaded.", 4); Process.Start(rbxexe, args); } catch (Exception ex) { - ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2, false); + ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2); DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -1146,12 +1148,12 @@ namespace RBXLegacyLauncher } try { - ConsolePrint("Server Loaded in No3d.", 4, false); + ConsolePrint("Server Loaded in No3d.", 4); Process.Start(rbxexe, args); } catch (Exception ex) { - ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2, false); + ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2); DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -1172,12 +1174,12 @@ namespace RBXLegacyLauncher } try { - ConsolePrint("Studio Loaded.", 4, false); + ConsolePrint("Studio Loaded.", 4); Process.Start(rbxexe, args); } catch (Exception ex) { - ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2, false); + ConsolePrint("ERROR 2 - Failed to launch RBXLegacy. (" + ex.Message + ")", 2); DialogResult result2 = MessageBox.Show("Failed to launch RBXLegacy. (Error: " + ex.Message + ")","RBXLegacy Launcher - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } diff --git a/charcustom/hats/TeapotTurret.rbxm b/charcustom/hats/TeapotTurret.rbxm new file mode 100644 index 0000000..c4f780e --- /dev/null +++ b/charcustom/hats/TeapotTurret.rbxm @@ -0,0 +1,11594 @@ + + null + nil + + + + 0 + 0.25 + 0.100000001 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + TeapotTurret + + + + 0 + 2 + true + + 0 + 0 + -3.25 + 0 + 0 + 1 + 1 + 0 + 0 + 0 + 1 + 0 + + GravityHammer + rbxasset://charcustom/hats/textures/gravityhammericon.png + true + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 199 + + 7.143013 + 25.3518391 + -5.57722473 + -0.999864757 + -0.0164248962 + 0.000796166831 + 0.000796274282 + -1.28919441e-021 + 0.999999702 + -0.0164248906 + 0.999865055 + 1.30787221e-005 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0.400000006 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + true + 1 + + 1 + 0.800000012 + 10 + + + + + rbxasset://charcustom/hats/fonts/gravityhammer.mesh + 5 + Mesh + + 0.0500000007 + 0.0500000007 + 0.0500000007 + + rbxasset://charcustom/hats/textures/gravityhammer.png + + 1 + 1 + 1 + + true + + + + + false + Sound + 2 + false + rbxasset://charcustom/hats/sounds/gravityhammerswing.mp3 + 1 + true + + + + + + false + + SwordScript + -------- OMG HAX + + + +r = game:service("RunService") + + + + + +local damage = 5 + + + + + +local slash_damage = 10 + +local lunge_damage = 30 + + + +sword = script.Parent.Handle + +Tool = script.Parent + + + +SlashSound = sword.Sound + + + +function blow(hit) + + Grip = Tool.Parent["Right Arm"].RightGrip:clone() + + humanoid = hit.Parent:findFirstChild("Humanoid") + + if(humanoid ~= nil and humanoid.Parent.Name == Tool.Parent.Name) then --don't hit yourself + + return + + end + + + + --if(Tool:findFirstChild("toolAnim") == nil) then return end + + if(humanoid ~= nil) then --if it's a person, damage him and stop + + propel(hit) + + print(humanoid.Parent.Name) + + humanoid.Health = humanoid.Health - 49 + + else + + explode(hit) --explode only if it doesn't hit a person (ie, blowing holes through walls) + + end + + + +end + + + +function propel(part) + + if(part.Anchored) then return end --if it isn't anchored, make it flyyy + + direction = (part.Position - Tool.Parent.Torso.Position).unit + + direction = direction + Vector3.new(0,1,0) + + direction = direction * 200 + + part.Velocity = part.Velocity + direction + +end + + + +debounce = true + +function explode(part) + + if not debounce then return end + + + + debounce = false + + direction = (part.Position - Tool.Parent.Torso.Position).unit + + pos = direction * 12 + Tool.Parent.Torso.Position + + explosion = Instance.new("Explosion") + + explosion.BlastRadius = 4 + + explosion.BlastPressure = 1 + + explosion.Position = pos + + explosion.Parent = game.Workspace + + explosion.Hit:connect(function(part, distance) propel(part) end) + + wait(.1) + + Grip:clone().Parent = Tool.Parent["Right Arm"] + + debounce = true + +end + + + +function attack() + + SlashSound:play() + + local anim = Instance.new("StringValue") + + anim.Name = "toolanim" + + anim.Value = "Slash" + + anim.Parent = Tool + +end + + + +function lunge() + + attack() + + force = Instance.new("BodyPosition") + + force.maxForce = Vector3.new(1e+005,1e+004,1e+005) + + dir = Tool.Parent.Humanoid.targetPoint + + if((dir - sword.Position).magnitude > 15) then return end + + force.position = dir + + force.Parent = sword + + wait(.25) + + force.Parent = nil + +end + + + +function swordUp() + + Tool.GripForward = Vector3.new(-1,0,0) + + Tool.GripRight = Vector3.new(0,1,0) + + Tool.GripUp = Vector3.new(0,0,1) + +end + + + +function swordOut() + + Tool.GripForward = Vector3.new(0,0,1) + + Tool.GripRight = Vector3.new(0,-1,0) + + Tool.GripUp = Vector3.new(-1,0,0) + +end + + + +function swordAcross() + + -- parry + +end + + + + + +Tool.Enabled = true + +local last_attack = 0 + +function onActivated() + + + + if not Tool.Enabled then + + return + + end + + + + Tool.Enabled = false + + + + local character = Tool.Parent; + + local humanoid = character.Humanoid + + if humanoid == nil then + + print("Humanoid not found") + + return + + end + + + + t = r.Stepped:wait() + + connection = sword.Touched:connect(blow) + + lunge() + + + + wait(.4) + +connection:disconnect() + + last_attack = t + + Tool.Enabled = true + + + + + +end + +script.Parent.Activated:connect(onActivated) + + + + + + + true + + + + + false + + Local Gui + local Tool = script.Parent; + +enabled = true +function onButton1Down(mouse) + if not enabled then + return + end + + enabled = false + mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" + + wait(.5) + mouse.Icon = "rbxasset://textures\\GunCursor.png" + enabled = true + +end + +function onEquippedLocal(mouse) + + if mouse == nil then + print("Mouse not found") + return + end + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + mouse.Button1Down:connect(function() onButton1Down(mouse) end) +end + + +Tool.Equipped:connect(onEquippedLocal) + true + + + + + + false + + Massive + hat = script.Parent + +teapot = hat.Handle:clone() + +teapot.Size = Vector3.new(65,65,65) + +teapot.Mesh.Scale = Vector3.new(100,100,100) + +teapot.Name = "massive teapot" + +teapot.Size = Vector3.new(65,65,65) + +teapot.Mesh.Scale = Vector3.new(100,100,100) + +teapot.Name = "massive teapot" + + + +debounce = true + +function teapottouch(pot, hit) + + if not debounce then return end + + debounce = false + + --[[ + + if(hit.Parent.className == "Model" and hit.Parent:findFirstChild("owned") == nil) then + + hit.Parent:breakJoints() + + local tag = Instance.new("IntValue") + + tag.Name = "owned" + + tag.Parent = hit.Parent + + end + + if(hit.Parent:findFirstChild("Humanoid") ~= nil) then hit.Parent.Humanoid.Health = 0 end ]]-- + + exp = Instance.new("Explosion") + + exp.BlastRadius = 50 + + exp.BlastPressure = 1000000 + + exp.Position = pot.Position + + exp.Parent = game.Workspace + + wait(.5) + + debounce = true + +end + + + +function gf(player) + + Torso = player.Position + + pos = Torso + Vector3.new(0,1000,0) + + pot = teapot:clone() + + pot.Position = pos + + pot.Elasticity = 0.1 + + pot.Parent = game.Workspace + + pot.homing.TargetOffset = player.Position + + pot.homing:Fire() + + pot.homing.ThrustP = 50000 + + pot.homing.MaxTorque = Vector3.new(0,0,0) + + pot.homing.TurnP = 0 + + connection = pot.Touched:connect(function(hit) teapottouch(pot, hit) end) + +end + + + +function trigger(msg, recipient) + + name = string.sub(msg,1,-2) + + children = game.Players:children() + + for i=1,#children do + + if(children[i].Name == name) then gf(children[i].Character.Torso) end + + end + + + +end + + + +wait(1) + +while hat.Parent.Name == "Workspace" do wait(2) end + +print("Hat picked up") + +player = game.Players:GetPlayerFromCharacter(hat.Parent) + +print("Admin confirmed") + +player.Chatted:connect(trigger) + true + + + + + false + + Server Launcher + local hat = script.Parent + +local Rocket = hat.Handle + +local block = hat.Handle:clone() + +block.Size = Vector3.new(4,7,3) + +block.Name = "shield" + +number = 4 + +radius = 6 + + + +teapot = hat.Handle:clone() + +teapot.Size = Vector3.new(65,65,65) + +teapot.Mesh.Scale = Vector3.new(100,100,100) + +teapot.Name = "massive teapot" + +teapot.Size = Vector3.new(65,65,65) + +teapot.Mesh.Scale = Vector3.new(100,100,100) + +teapot.Name = "massive teapot" + + + +function either(number) + + if(math.random(1,2) == 1) then return number end + + return -number + +end + + + +function glue(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +torso = hat.Parent.Torso + +function Leap() + + torso.Velocity=Vector3.new(torso.Velocity.x*1.6,100,torso.Velocity.z*1.6) + + wait(0.5) + +end + + + +function Amplify() + + torso.Velocity= torso.CFrame.lookVector * 50 + +end + + + +function fire(vTarget,offset) + + obj = vTarget + + vTarget = vTarget.Position + + + + + + local dir = vTarget - hat.Handle.Position + + dir = dir.unit + + missile = {} + + pos = {} + + hatFrame = {} + + misFrame = {} + + seed = {} + + for i=1,number do + + seed[i] = math.random(0,100000) + + missile[i] = Rocket:clone() + + missile[i].Name = "teapot" .. seed[i] + + pos[i] = hat.Handle.Position + Vector3.new(math.random(-10,10),4,math.random(-10,10)) + + hatFrame[i] = hat.Handle.CFrame + + misFrame[i] = hatFrame[i] * CFrame.new(math.random(-10,10),math.random(-10,10),math.random(-10,0)) + + --missile.Position = pos + + missile[i].CFrame = CFrame.new(pos[i], pos[i] + dir) + + + + missile[i].RocketScript.Disabled = false + + missile[i].Parent = game.Workspace + + missile[i].homing:Fire() + + missile[i].homing.ThrustP = 50 + + missile[i].homing.TargetOffset = misFrame[i].p + offset + + end + + + + wait(.4) + + + + for i=1,number do + + teapot = game.Workspace:findFirstChild("teapot" .. seed[i]) + + if(teapot ~= nil) then + + teapot.homing.ThrustP = 30 + + teapot.homing.TargetOffset = Vector3.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)) + + teapot.homing.Target = obj + + end + + end + +end + + + +function shield() + + Torso = hat.Parent.Torso.CFrame + + bricks = {} + + bricks[1] = Torso * CFrame.new(0,0,-radius) + + bricks[2] = Torso * CFrame.new(0,0,radius) + + bricks[3] = Torso * CFrame.new(-radius,0,0) + + bricks[4] = Torso * CFrame.new(radius,0,0) + + for i=1,#bricks do + + newbrick = block:clone() + + newbrick.CFrame = CFrame.new(bricks[i].p, Torso.p) + + newbrick.Parent = game.Workspace + + glue(newbrick,hat.Parent.Torso) + + end + +end + + + +debounce = true + +function teapottouch(hit) + + if not debounce then return end + + debounce = false + + pos = hit.Position + + boom = Instance.new("Explosion") + + boom.BlastRadius = 30 + + boom.BlastPressure = 500000 + + boom.Position = pos + + boom.Parent = game.Workspace + + wait(1) + + debounce = true + +end + + + +function gf(player) + + Torso = player.Position + + pos = Torso + Vector3.new(0,750,0) + + pot = teapot:clone() + + pot.Position = pos + + pot.Elasticity = 0.1 + + pot.Parent = game.Workspace + + connection = pot.Touched:connect(teapottouch) + +end + + + +function kill(hit) + + local human = hit.Parent:findFirstChild("Humanoid") + + if (human ~= nil) then + + human.Health = 0 + + end + +end + + + +function trigger(msg, recipient) + + if(msg == "spew!") then + + children = game.Players:children() + + for i=1,#children do + + if(children[i].Name ~= "Bitl") then fire(children[i].Character.Torso,Vector3.new(0,25,0)) end + + end + + end + + if(msg == "abort") then + + children = game.Workspace:children() + + for i=1,#children do + + if(string.sub(children[i].Name,1,6) == "teapot") then children[i].homing:Abort() end + + if(children[i].Name == "shield" or children[i].Name == "massive teapot" or children[i].Name == "TVehicle") then children[i]:remove() end + + end + + end + + if(msg == "shield!") then + + shield() + + end + + if(msg == "i can fly") then + + hat.TVehicle:move((hat.Handle.CFrame * CFrame.new(0,3,-10)).p) + + hat.TVehicle.Front.Propulsion.TargetOffset = hat.Handle.Position + Vector3.new(5,-5,0) + + end + + if(msg == "arm front") then + + hat.TVehicle.Front.Touched:connect(kill) + + end + + if(tonumber(msg) ~= nil) then + + power = tonumber(msg) + + hat.TVehicle.Front.Propulsion.MaxSpeed = power + + end + + children = game.Players:children() + + for i=1,#children do + + if(children[i].Name == msg) then + + torso = children[i].Character.Torso + + prop = hat.TVehicle.Front.Propulsion:clone() + + prop.Target = hat.TVehicle.back + + prop.MaxSpeed = 1000 + + prop.TargetOffset = Vector3.new(0,0,0) + + prop.MaxTorque = Vector3.new(4e+10,4e+10,4e+10) + + prop.Parent = torso + + prop:Fire() + + end + + end + + if(string.sub(msg,1,6) ~= "Teapot") then return end + + name = string.sub(msg,8,-2) + + children = game.Players:children() + + for i=1,#children do + + if(children[i].Name == name) then fire(children[i].Character.Torso,Vector3.new(0,25,0)) end + + end + + + +end + + + +wait(1) + +while hat.Parent.Name == "Workspace" do wait(2) end + +print("Hat picked up") + +player = game.Players:GetPlayerFromCharacter(hat.Parent) + +print("Admin confirmed") + +player.Chatted:connect(trigger) + +hat.Parent.Humanoid.Jumping:connect(Leap) + +hat.Parent.Humanoid.Running:connect(Amplify) + +children = hat:children() + +for i=1,#children do + + if(children[i].className == "HopperBin" or children[i].className == "Tool") then + + children[i].Parent = player.Backpack + + end + +end + + + true + + + + + 0 + true + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + TVehicle + RBX12 + true + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -1 + 30.6000004 + 4 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + 6.75871754 + -0.631815135 + -6.61694717 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -3 + 30.6000004 + 4 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + 6.75871754 + -0.631815135 + 1.90486336 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -1 + 30.6000004 + 2 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + back + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -1.76309323 + -0.631815135 + -6.61694717 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -3 + 30.3999996 + 2 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -1.76309323 + -0.631815135 + 1.90486336 + + true + 1 + + 2 + 0.400000006 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -1 + 30.6000004 + 0 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -10.2849035 + -0.631815135 + -6.61694717 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -3 + 30.6000004 + 0 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -10.2849035 + -0.631815135 + 1.90486336 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -5 + 31 + 2 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -1.76309323 + -0.631815135 + 10.4266739 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -5 + 30.6000004 + 4 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + 6.75871754 + -0.631815135 + 10.4266739 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -5 + 30.6000004 + 0 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -10.2849035 + -0.631815135 + 10.4266739 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + -7 + 31 + 2 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Front + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 0 + 0 + 0 + + -1.76309323 + -0.631815135 + 18.9484844 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + 1 + 35 + 400000 + + 400000 + 400000 + 0 + + Propulsion + null + + 1000 + 10000 + 0 + + 10 + 1.25 + 5 + 500 + 3000 + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + -2 + 0.399999976 + -2 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 2 + 0.399999976 + -2 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 0 + 0 + -2 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + -2 + 0.399999976 + -4 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + -2 + 0.399999976 + -6 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 0 + 0.600000024 + -4 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 0 + 0.399999976 + -6 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 2 + 0.399999976 + -4 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 2 + 0.399999976 + -6 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + Instance + null + null + true + + + + + + false + + Power + children = script.Parent:children() + +front = script.Parent.Front + + + +function stick(a,b) + + welded = true + + -- joint myself to the thing i hit + + local weld = Instance.new("Weld") + + + + weld.Part0 = a + + weld.Part1 = b + + + + local HitPos = a.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = a.CFrame:inverse() *CJ + + local C1 = b.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = a + +end + + + +for i=1,#children do + + if(children[i].className == "Part" and children[i].Name ~= "Front") then stick(front,children[i]) end + +end + +wait(.5) + +front.Propulsion:Fire() + +dest = Vector3.new(1000,10000,0) + +script.Parent:move(dest) + +front.Propulsion.TargetOffset = dest + true + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 4 + 0 + 1 + + -3 + 30.8000011 + 2 + -0 + 0 + 1 + -0 + 1 + 0 + -1 + 0 + 0 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Seat + 0 + -0.5 + 0.5 + 0 + 0 + + 6.08332275e-020 + 4.26090527 + 1.26058997e-020 + + -0.5 + 0.5 + 3 + 0 + 1 + + -1.76309323 + -0.631815135 + 1.90486336 + + true + 1 + + 2 + 0.400000006 + 2 + + + + + 500 + BodyGyro + 3000 + true + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 4000 + 0 + 4000 + + + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 1 + + 3.37573242 + 24.3032551 + -2.06309128 + -0.916252911 + -3.54950471e-021 + -0.400600582 + -5.14688943e-021 + 1 + 2.91149723e-021 + 0.400600582 + 4.7295142e-021 + -0.916252911 + + true + 0 + true + false + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 8.4264061e-025 + 3.72885967e-022 + 5.50971025e-025 + + -0.5 + 0.5 + 0 + 0 + 0 + + 3.65131998e-020 + 0.00671230676 + 3.64665287e-020 + + true + 1 + + 2 + 1.60000002 + 2 + + + + + rbxasset://charcustom/hats/fonts/teapot.mesh + 5 + Mesh + + 3 + 3 + 3 + + + + 1 + 1 + 1 + + true + + + + + false + Explosion + 0 + false + rbxasset://sounds\collide.wav + 1 + true + + + + + true + Swoosh + -1 + false + rbxasset://sounds\Rocket whoosh 01.wav + 0.699999988 + true + + + + + 1 + 25 + 4e+010 + + 3.99999995e+015 + 3.99999995e+015 + 3.99999995e+015 + + homing + null + + 0 + 0 + 0 + + 4 + 3 + 30 + 4000 + 20000 + true + + + + + true + + RocketScript + r = game:service("RunService") + + + +shaft = script.Parent + +position = shaft.Position + + + +script.Parent.Explosion.PlayOnRemove = true -- play explosion sound when projectile removed from game + +bother = true + + + +function blow(hit) + + if(bother == true) then return end + + if(string.sub(hit.Name,1,6) == "teapot") then return end + + swoosh:stop() + + explosion = Instance.new("Explosion") + + explosion.Position = shaft.Position + + + + explosion.Parent = game.Workspace + + wait(.1) + + shaft:remove() + +end + + + +function onPlayerBlownUp(part, distance, creator) + + + + if part.Name == "Head" then + + + + local humanoid = part.Parent.Humanoid + + tagHumanoid(humanoid, creator) + + end + +end + + + +function tagHumanoid(humanoid, creator) + + -- tag does not need to expire iff all explosions lethal + + + + if creator ~= nil then + + local new_tag = creator:clone() + + new_tag.Parent = humanoid + + + + end + +end + + + +function untagHumanoid(humanoid) + + if humanoid ~= nil then + + local tag = humanoid:findFirstChild("creator") + + if tag ~= nil then + + + + tag.Parent = nil + + end + + end + +end + + + +swoosh = script.Parent.Swoosh + +swoosh:play() + + + +connection = shaft.Touched:connect(blow) + + + +wait(30) + +-- at max range + +script.Parent.Explosion.PlayOnRemove = false + +swoosh:stop() + +shaft:remove() + + + true + + + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0 + 15.0555296 + 0 + 1 + -1.07914328e-024 + 4.63997453e-024 + 1.07914328e-024 + 1 + -1.07914328e-024 + -4.63997453e-024 + 1.07914328e-024 + 1 + + true + 0 + true + false + 0.5 + 1 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + Satellite + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + true + 1 + + 5 + 16.8000011 + 5 + + + + + rbxasset://charcustom/hats/fonts/Satellite.mesh + 5 + Mesh + + 0.25 + 0.25 + 0.25 + + rbxasset://charcustom/hats/textures/Satellite.png + + 1 + 1 + 1 + + true + + + + + 1250 + BodyPosition + 10000 + true + + 4000000 + 4000000 + 4000000 + + + 10 + 25 + 10 + + + + + + 500 + BodyGyro + 3000 + true + + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 1 + + + 0 + 400000 + 400000 + + + + + + true + Sparkles + true + + + + + false + Sound + 2 + false + rbxasset://charcustom/hats/sounds/Activation.wav + 1 + true + + + + + + 0 + Fly2 + + true + + + + false + + TeleportScript + wait(.5) + +bin = script.Parent + +vehicle = game.Players.LocalPlayer.Character.TeapotTurret.TVehicle + + + +function assignPosition(pos) + + + + local player = game.Players.LocalPlayer + + if player == nil or player.Character == nil then return end + + local char = vehicle.Front + + obj = char.Propulsion + + difference = pos - char.Position + + obj.TargetOffset = pos + Vector3.new(0,4,0) + +end + + + +function onButton1Down(mouse) + + + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + assignPosition(mouse.Hit.p) + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\ArrowCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + true + + + + + Power + 30 + true + + + + + + 0 + The One Tool + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +mode = 0 + + + +weapons = {} + +children = bin:children() + +for i=1,#children do + + if(children[i].className == "HopperBin") then + + table.insert(weapons,children[i]) + + end + +end + + + + + +table.sort(weapons, + +function (obj1, obj2) + + if(obj1.Name < obj2.Name) then return true end + + return false + +end + +) + + + +curTool = weapons[1].Name + + + +function onButton1Down(mouse) + + mode = mode + 1 + + giveTool() + +end + + + +function giveTool() + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + if(player.Backpack:findFirstChild(curTool) ~= nil) then player.Backpack[curTool]:remove() end + + if(mode > #weapons) then mode = 1 end + + if(mode < 1) then mode = #weapons end + + weapons[mode]:clone().Parent = player.Backpack + + curTool = weapons[mode].Name + +end + + + +function keyDown(key) + + print(key) + + if(key == "q") then + + mode = mode - 1 + + giveTool() + + end + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + + mouse.KeyDown:connect(keyDown) + +end + + + +bin.Selected:connect(onSelected) + true + + + + + 0 + Avada Kedavra + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +local msg = Instance.new("Hint") + +msg.Text = "Avada Kedavra!" + +enabled = true + + + +function stick(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + target = mouse.Target + + if target == nil then return end + + humanoid = target.Parent:findFirstChild("Humanoid") + + if humanoid == nil then return end + + msg.Parent = game.Workspace + + top = game.Lighting.TopAmbientV9 + + spot = game.Lighting.SpotLightV9 + + game.Lighting.TopAmbientV9 = Color3.new(0,125,0) + + game.Lighting.SpotLightV9 = Color3.new(0,125,0) + + humanoid.Health = 0 + + children = target.Parent:children() + + for i=1,#children do + + if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], target.Parent.Torso) end + + if(children[i].className == "Hat") then stick(children[i].Handle, target.Parent.Torso) end + + end + + target.Parent.Head.Velocity = target.Parent.Head.Velocity + Vector3.new(5,0,0) + + wait(.1) + + game.Lighting.TopAmbientV9 = top + + game.Lighting.SpotLightV9 = spot + + wait(2) + + msg.Parent = nil + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + + 0 + Hat Jacker + + true + + + + false + + ActionTool + -- clockwork + +bin=script.Parent + +sfx = bin.Sound + + + +function onButton1Down(mouse) + + mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" + + local hit = mouse.Target + + if (hit == nil) then return end + + humanoid = hit.Parent:findFirstChild("Humanoid") + + if(humanoid == nil) then return end + + sfx:play() + + children = hit.Parent:children() + + for i=1,#children do + + if(children[i].className == "Hat") then children[i].Parent = bin.Parent.Parent.Character return end + + end + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + +end + + + + + +function onSelected(mouse) + + print("Action Tool Selected") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + true + + + + + false + Sound + -1 + false + rbxasset://charcustom/hats/sounds/hurray.wav + 0.300000012 + true + + + + + + 0 + Katon Goukakyou No Jutsu + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +local sfx = bin.Sound + +enabled = true + + + +function explode(pos) + + local lol = Instance.new("Explosion") + + lol.BlastRadius = 10 + + lol.BlastPressure = 1000000 + + lol.Position = pos + + lol.Parent = game.Workspace + +end + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + startPos = player.Character.Head.Position + + delta = mouse.Hit.p - startPos + + unit = delta.unit + + sfx:play() + + for i=0,75 do + + explode(startPos + unit * 20 + i * unit * i / 25) + + wait(.05) + + end + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + false + Sound + -1 + false + rbxasset://charcustom/hats/sounds/Katon.mp3 + 0.200000003 + true + + + + + + 0 + Ray Gun Of Collapse + + true + + + + false + Sound + -1 + false + rbxasset://charcustom/hats/sounds/hurray.wav + 0.300000012 + true + + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +local sfx = bin.Sound + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + target = mouse.Target + + if target == nil then return end + + model = target.Parent + + if(model:findFirstChild("Humanoid") ~= nil) then return end + + sfx:play() + + model:breakJoints() + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + + 0 + SpinFire + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +sfx = bin.Sound + + + +function explode(pos) + + local lol = Instance.new("Explosion") + + lol.BlastRadius = 2 + + lol.BlastPressure = 1000000 + + lol.Position = pos + + lol.Parent = game.Workspace + +end + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + sfx:play() + + look = CFrame.new(player.Character.Head.Position,mouse.Hit.p) + + for i=0,75 do + + x = math.sin(i / 3) * 8 * (75 - i) / 75 + + y = math.cos(i / 3) * 8 * (75 - i) / 75 + + helix = look * CFrame.new(x,y,-i) + + + + explode(helix.p) + + + + x = -math.sin(i / 3) * 8 * (75 - i) / 75 + + y = -math.cos(i / 3) * 8 * (75 - i) / 75 + + helix = look * CFrame.new(x,y,-i) + + + + explode(helix.p) + + wait(.02) + + end + + sfx:pause() + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + false + Sound + -1 + false + rbxasset://sounds\Rocket whoosh 01.wav + 0.600000024 + true + + + + + + 0 + House Spawner + + true + + + + false + + Script + -- clockwork + +bin=script.Parent + + + +limbs = {"Left Leg", "Right Leg", "Left Arm", "Right Arm"} + + + +function stick(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +function spawnHouse(offset) + +template = Instance.new("Part") + +template.Anchored = true + + + +house = Instance.new("Model") + +house.Name = "House" + +house.Parent = game.Workspace + +part = template:clone() + +part.Position = offset + Vector3.new(-23,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,19.2,24.5) + +part.Size = Vector3.new(2,2.4,1) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,20.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,20.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18,14.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-24.5,14.4,24) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-4.5,14.4,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18.5,12,24) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,12,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-24.5,9.6,24) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18,9.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,7.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18.5,7.2,24) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14,19.2,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,19.2,24.5) + +part.Size = Vector3.new(2,2.4,1) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(1,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,15) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,14.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,14.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,15) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,12,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0.5,14.4,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-0.5,12,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,14.4,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-4.5,9.6,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(6,19.2,24) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(4.5,12,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(8,15,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0.5,9.6,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,7.2,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,19.2,24) + +part.Size = Vector3.new(2,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,2) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,1.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,2) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,1.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(8.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,15,24) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,9.6,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-0.5,7.2,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,-2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(1,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5.5,4.8,24) + +part.Size = Vector3.new(3,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,19.2,-3) + +part.Size = Vector3.new(2,2.4,54) + +part.BrickColor = BrickColor.new(192) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,-4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,-2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,-2.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,-3.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-2.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,-3.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,2.4,-3) + +part.Size = Vector3.new(56,2.4,56) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7.5,7.8,24) + +part.Size = Vector3.new(1,8.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14,15,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,4.2,-3) + +part.Size = Vector3.new(52,1.2,52) + +part.BrickColor = BrickColor.new(102) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17.5,14.4,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(4.5,7.2,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,19.2,-3) + +part.Size = Vector3.new(2,2.4,54) + +part.BrickColor = BrickColor.new(192) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,19.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,-2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15.5,4.8,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,-8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,-20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,-14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,-16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,-10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,-4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,-8) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,15) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,-7.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,21.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,1.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,-3.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,-2.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,15.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,2) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,2.4,27) + +part.Size = Vector3.new(6,2.4,4) + +part.BrickColor = BrickColor.new(199) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,-10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,-16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,-22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,-20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,-14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,-8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,16.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,-21) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,-7.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,-21.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,-8) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-7.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-21) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,-21.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,-8) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,4.2,25) + +part.Size = Vector3.new(6,1.2,4) + +part.BrickColor = BrickColor.new(199) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14.5,7.8,24) + +part.Size = Vector3.new(1,8.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,12,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17.5,9.6,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,14.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,9.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23.5,12,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,7.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,1.2,30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(199) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,0.6,32) + +part.Size = Vector3.new(6,1.2,2) + +part.BrickColor = BrickColor.new(199) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,-8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,-14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,4.8,-26) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,16.8,-26) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-27.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-20.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,14.4,-27.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,12,-28) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,7.2,-28) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23.5,7.2,24) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,-20.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,-20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,21.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,1.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,15) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-3.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,-21) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-8) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,19.2,-28) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,-22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18,12,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17.5,14.4,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17.5,9.6,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,14.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,9.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23.5,12,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23.5,7.2,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-18,7.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,19.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,19.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,-2.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,4.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,15.5) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,12,-26.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,14.4,-26) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,19.2,-30.5) + +part.Size = Vector3.new(2,2.4,1) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-26) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,2) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,-7.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,-26.5) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,7.2,-21) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(4.5,14.4,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,12,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-0.5,14.4,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0.5,12,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,14.4,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-4.5,12,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(4.5,9.6,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-0.5,9.6,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,9.6,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0.5,7.2,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18.5,7.2,-30) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,7.2,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-4.5,7.2,-30) + +part.Size = Vector3.new(5,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,19.2,-30) + +part.Size = Vector3.new(2,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-6,19.2,-30) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(1,19.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,19.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,19.2,-26) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,-22) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,-16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,-10) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,-4) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,2) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,20) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,8) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,4.8,-28) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,4.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,16.8,-28) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,14.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(24.5,14.4,-30) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18.5,12,-30) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,12,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(24.5,9.6,-30) + +part.Size = Vector3.new(7,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,9.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,7.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,16.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,19.2,-30) + +part.Size = Vector3.new(10,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,19.2,-30.5) + +part.Size = Vector3.new(2,2.4,1) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,19.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,28.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,26.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,28.2,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,31.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,35.4,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,30.6,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,33,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,30.6,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,33,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(1,28.8,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,28.2,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,25.8,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,33.6,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,33,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,30.6,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,33,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,30.6,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,30.6,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,33,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,35.4,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,26.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-6,28.8,24) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,23.4,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-12,26.4,24) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,26.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,24,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,26.4,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,21.6,24) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,35.4,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,37.8,21) + +part.Size = Vector3.new(12,1.2,4) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,21,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,35.4,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,25.8,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,28.2,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,37.8,9) + +part.Size = Vector3.new(12,1.2,4) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,25.8,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,30.6,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,37.8,-3) + +part.Size = Vector3.new(12,1.2,4) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,33,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,15) + +part.Size = Vector3.new(12,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,3) + +part.Size = Vector3.new(12,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,24) + +part.Size = Vector3.new(6,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,23.4,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,21,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,31.2,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,28.2,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,33,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,35.4,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,23.4,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,-9) + +part.Size = Vector3.new(12,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,25.8,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,33,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,35.4,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,30.6,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,21,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,28.2,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,28.2,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,25.8,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,23.4,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,28.2,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,30.6,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,33,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,30.6,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,23.4,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,35.4,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,21.6,24) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,33,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,37.8,-15) + +part.Size = Vector3.new(12,1.2,4) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,30.6,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,35.4,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,21,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,28.2,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,-21) + +part.Size = Vector3.new(12,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,25.8,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,28.2,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,25.8,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,25.8,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,24) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,23.4,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,21,21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,21,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,23.4,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,33,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,35.4,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,23.4,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,25.8,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,28.2,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,37.8,-27) + +part.Size = Vector3.new(12,1.2,4) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,36.6,-30) + +part.Size = Vector3.new(6,1.2,8) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,35.4,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,23.4,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,21,-3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,23.4,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,-9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,21,9) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,3) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,25.8,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,28.2,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,25.8,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,28.2,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,27,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,29.4,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,30.6,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,33,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,31.8,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-5,34.2,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,30.6,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-6,28.8,-30) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,33,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,30.6,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,31.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(0,33.6,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,31.2,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,30.6,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,21,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,31.8,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,28.2,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,34.2,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,33,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,23.4,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,23.4,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-25,22.2,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,21,-15) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-21,24.6,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,21,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,25.8,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-12,26.4,-30) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7,28.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(1,28.8,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-9,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,26.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,26.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13,29.4,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,28.2,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,-21) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,26.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,26.4,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,25.8,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-23,21,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(17,27,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-3,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(5,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(3,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(9,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,24,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,21,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(21,24.6,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(15,25.8,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(19,23.4,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-1,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,23.4,-27) + +part.Size = Vector3.new(12,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,21.6,-30) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(18,21.6,-30) + +part.Size = Vector3.new(8,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(23,21,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(25,22.2,-30) + +part.Size = Vector3.new(6,1.2,6) + +part.BrickColor = BrickColor.new(21) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14,15,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,15,24) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14.5,9.6,24) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-8.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7.5,13.2,24) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-8,15,24) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7.5,9.6,24) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,6.6,24.5) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,5) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,4.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,5.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,8) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,4.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,10.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,11.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,11) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,11.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27.5,6.6,8) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,-11) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,-10.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,-11.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,-14) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-10.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,-16.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,-17.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,-17) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,-17.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27.5,6.6,-14) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,-17) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,-17.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,-16.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,-14) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-17.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,-11.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,13.2,-10.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,15,-11) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27,9.6,-10.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-27.5,6.6,-14) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,11) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,11.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,10.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,8) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,11.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,5.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,13.2,4.5) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,15,5) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27,9.6,4.5) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(27.5,6.6,8) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14,15,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(13.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,15,-30) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(14.5,9.6,-30) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(8.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(8,15,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(7.5,9.6,-30) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(11,6.6,-30.5) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-8,15,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-8.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,15,-30) + +part.Size = Vector3.new(4,1.2,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-7.5,9.6,-30) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14.5,13.2,-30) + +part.Size = Vector3.new(1,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14,15,-30) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-14.5,9.6,-30) + +part.Size = Vector3.new(1,4.8,2) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-11,6.6,-30.5) + +part.Size = Vector3.new(8,1.2,3) + +part.BrickColor = BrickColor.new(38) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,45,16) + +part.Size = Vector3.new(6,1.2,2) + +part.BrickColor = BrickColor.new(153) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,43.2,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,45,12) + +part.Size = Vector3.new(6,1.2,2) + +part.BrickColor = BrickColor.new(153) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,43.2,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,45,18) + +part.Size = Vector3.new(6,1.2,2) + +part.BrickColor = BrickColor.new(153) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,40.8,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,40.8,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,40.8,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,38.4,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,38.4,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,43.2,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,38.4,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,36,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,36,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,36,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-15,33.6,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,33.6,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,33.6,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,31.2,12) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,31.2,15) + +part.Size = Vector3.new(4,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,33.6,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,43.2,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,38.4,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,40.8,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,36,14) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,31.8,15) + +part.Size = Vector3.new(8,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-13,45,14) + +part.Size = Vector3.new(6,1.2,2) + +part.BrickColor = BrickColor.new(153) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,28.8,12) + +part.Size = Vector3.new(2,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,29.4,12) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-19,28.8,16) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,29.4,18) + +part.Size = Vector3.new(2,1.2,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + + + +part = template:clone() + +part.Position = offset + Vector3.new(-17,31.2,18) + +part.Size = Vector3.new(6,2.4,2) + +part.BrickColor = BrickColor.new(5) + +part.Parent = game.Workspace.House wait(.01) + +part.Name = "Base" + +children = game.Workspace.House:children() + +for i=1,#children do + + if(children[i].Name ~= "Base") then stick(game.Workspace.House.Base, children[i]) end + + children[i].Anchored = false + +end + +end + + + +function onButton1Down(mouse) + + mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" + + print("trigger") + + spawnHouse(mouse.Hit.p) + + print("spawned") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + +end + + + + + +function onSelected(mouse) + + print("Action Tool Selected") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + true + + + + + + 0 + Teleport + + true + + + + false + + TeleportScript + --- SonOfSevenless + +bin = script.Parent + +sfx = bin.Sound + + + +function teleportPlayer(pos) + + + + local player = game.Players.LocalPlayer + + if player == nil or player.Character == nil then return end + + + + local char = player.Character.Torso + + + + char.CFrame = CFrame.new(Vector3.new(pos.x, pos.y + 7, pos.z)) + + + +end + + + + + +enabled = true + +function onButton1Down(mouse) + + if not enabled then + + return + + end + + + + local player = game.Players.LocalPlayer + + if player == nil then return end + + local cf = mouse.Hit + + teleportPlayer(cf.p) + + sfx:play() + + + +end + + + +function onSelected(mouse) + + mouse.Icon = "rbxasset://textures\\ArrowCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + + + true + + + + + false + Sound + -1 + false + rbxasset://charcustom/hats/sounds/hurray.wav + 0.300000012 + true + + + + + + 0 + Fire Shield + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + + + +function getX(t) + + return 41 * math.cos(t) - 18 * math.sin(t) - 83 * math.cos(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t) + +end + + + +function getY(t) + + return 36 * math.cos(t) + 27 * math.sin(t) - 113 * math.cos(2 * t) + 30 * math.sin(2 * t) + 11 * math.cos(3 * t) - 27 * math.sin(3 * t) + +end + + + +function getZ(t) + + return 45 * math.sin(t) - 30 * math.cos(2 * t) + 113 * math.sin(2 * t) - 11 * math.cos(3 * t) + 27 * math.sin(3 * t) + +end + + + +template = Instance.new("Explosion") + +template.BlastRadius = 3 + + + + + +spew = false + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + spew = not spew + + i = 0 + + while spew do + + i = i + .15 + + part = template:clone() + + part.Position = player.Character.Torso.Position + Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5) + + part.Parent = game.Workspace + + part = template:clone() + + part.Position = player.Character.Torso.Position - Vector3.new(getX(i) / 5, getY(i) / 5, getZ(i) / 5) + + part.Parent = game.Workspace + + wait(.025) + + end + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + + 0 + Wall Gun + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +local sfx = bin.Sound + + + +local template = Instance.new("Seat") + +template.Size = Vector3.new(10,8,2) + +template.BrickColor = BrickColor.Random() + +local bodypos = Instance.new("BodyPosition") + +bodypos.maxForce = Vector3.new(4e+07, 4e+07, 4e+07) + +bodypos.P = 2.5e+003 + +bodypos.Parent = template + +local bodygyro = Instance.new("BodyGyro") + +bodygyro.Parent = template + +local script = Instance.new("Script") + +script.Source = "wait(20) script.Parent:remove()" + +script.Parent = template + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + sfx:play() + + startPos = player.Character.Torso.Position + + dest = mouse.Hit.p + + delta = dest - startPos + + part = template:clone() + + part.CFrame = CFrame.new(startPos + delta.unit * 5, dest) + + part.BodyGyro.cframe = part.CFrame + + part.BodyPosition.position = dest + + part.Parent = game.Workspace + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + false + Sound + -1 + false + rbxasset://sounds\\short spring sound.wav + 1 + true + + + + + + 0 + Force Push + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + +local sfx = bin.Sound + + + +local template = Instance.new("Seat") + +template.Size = Vector3.new(10,8,2) + +template.BrickColor = BrickColor.Random() + +local bodypos = Instance.new("BodyVelocity") + +bodypos.maxForce = Vector3.new(4e+07, 4e+07, 4e+07) + +bodypos.P = 2.5e+003 + +bodypos.Parent = template + +local bodygyro = Instance.new("BodyGyro") + +bodygyro.Parent = template + +local script = Instance.new("Script") + +script.Source = "wait(10) script.Parent.BodyVelocity:remove() wait(5) script.Parent:remove()" + +script.Parent = template + + + +function stick(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + sfx:play() + + startPos = player.Character.Torso.Position + + dest = mouse.Hit.p + + delta = dest - startPos + + part = template:clone() + + part.CFrame = CFrame.new(startPos + delta.unit * 5, dest) + + part.BodyGyro.cframe = part.CFrame + + part.BodyVelocity.velocity = delta.unit * 40 + + part.Touched:connect(function(hit) if(hit.Parent:findFirstChild("Humanoid") ~= nil) then stick(hit.Parent.Torso, part) end end) + + part.Parent = game.Workspace + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + false + Sound + -1 + false + rbxasset://sounds\\short spring sound.wav + 1 + true + + + + + + 0 + Construct Additional Pylon + + true + + + + false + + Script + -- clockwork + +bin=script.Parent + + + +part = Instance.new("Part") + +part.Transparency = .3 + +part.BrickColor = BrickColor.new(102) + +part.Anchored = true + +ring = Instance.new("Part") + +ring.BrickColor = BrickColor.Yellow() + +ring.Anchored = true + +height = 14 + +maxWidth = 8 + + + +ringHeight = height / 6 + +ringBegin = height / 2 - ringHeight / 2 + +ringEnd = height / 2 + ringHeight / 2 + + + +function stick(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +function getWidth(i) + + if(i < height / 2) then return math.sqrt(i) / math.sqrt(height) * maxWidth end + + return math.sqrt(height - i) / math.sqrt(height) * maxWidth + +end + + + +function spawnCircle(diameter, height, offset, model) + + for i=-diameter / 2,diameter / 2 do + + obj = part:clone() + + obj.Position = offset + Vector3.new(0,height,0) + Vector3.new(i,0,0) + + obj.Size = Vector3.new(1,1,math.sqrt(diameter * diameter - i * i)) + + obj.Parent = model + + wait(.02) + + end + +end + + + +function spawnBorder(diameter, height, offset, model) + + for i=-diameter / 2,diameter / 2 do + + obj = ring:clone() + + obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) + Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0)) + + obj.Size = Vector3.new(1,1,1) + + obj.Parent = model + + + + obj = ring:clone() + + obj.CFrame = CFrame.new(offset + Vector3.new(0,height,0) - Vector3.new(i,0,math.sqrt(diameter * diameter / 4 - i * i)), Vector3.new(0,height,0)) + + obj.Size = Vector3.new(1,1,1) + + obj.Parent = model + + wait(.02) + + end + +end + + + + + +function spawnHouse(offset) + + model = Instance.new("Model") + + model.Name = "Pylon" .. math.random(1,50000) + + model.Parent = game.Workspace + + base = Instance.new("Part") + + base.Name = "Base" + + base.Parent = model + + base.Anchored = true + + base.Transparency = 1 + + base.Position = offset + + for i=1,height do + + width = getWidth(i) + + spawnCircle(width,i, offset,model) + + end + + + + for i=ringBegin,ringEnd do + + spawnBorder(maxWidth + 2, i, offset,model) + + end + + + + children = model:children() + + for i=1,#children do + + if(children[i].Name ~= "Base" and children[i].className == "Part") then stick(base,children[i]) end + + children[i].Anchored = false + + end + +end + + + +function onButton1Down(mouse) + + mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" + + print("trigger") + + spawnHouse(mouse.Hit.p) + + print("spawned") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + +end + + + + + +function onSelected(mouse) + + print("Action Tool Selected") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + true + + + + + + 0 + Force Bubble + + true + + + + false + + Script + --clockwork + + + +local bin = script.Parent + + + +local template = Instance.new("Part") + +template.Size = Vector3.new(12,12,12) + +template.Shape = 0 + +template.BrickColor = BrickColor.Blue() + +template.Transparency = .7 + +template.TopSurface = 0 + +template.BottomSurface = 0 + +template.CanCollide = false + + + +bubbleScript = bin.BubbleScript + + + +function onButton1Down(mouse) + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + part = template:clone() + + part.Position = player.Character.Torso.Position + Vector3.new(0,5,0) + + newScript = bubbleScript:clone() + + newScript.Parent = part + + newScript.Disabled = false + + part.Parent = player.Character + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + true + + BubbleScript + wait(.1) + +bubble = script.Parent + +char = bubble.Parent + +debris = game:service("Debris") + + + +Propulsion = Instance.new("RocketPropulsion") + +Propulsion.Target = char.Torso + +Propulsion.MaxThrust = 1e+008 + +Propulsion.MaxSpeed = 100 + +Propulsion.ThrustD = 10 + +Propulsion.ThrustP = 80 + +Propulsion.TurnP = 0 + +Propulsion.Parent = bubble + +Propulsion:Fire() + + + +function stick(x, y) + + weld = Instance.new("Weld") + + + + weld.Part0 = x + + weld.Part1 = y + + + + local HitPos = x.Position + + + + local CJ = CFrame.new(HitPos) + + local C0 = x.CFrame:inverse() *CJ + + local C1 = y.CFrame:inverse() * CJ + + + + weld.C0 = C0 + + weld.C1 = C1 + + + + weld.Parent = x + +end + + + +function repel(hit) + + if hit.Parent == char then return end + + if hit.Parent.className == "Hat" then return end + + if hit:getMass() > 1000 then return end + + if hit.Anchored == true then return end + + hit:remove() + +end + + + +bubble.Touched:connect(repel) + + + true + + + + + + 0 + Satellite-Fire + + true + + + + false + + Script + --clockwork + +wait(1) + +local bin = script.Parent + +sat = game.Players.LocalPlayer.Character.TeapotTurret.Satellite + + + +if sat:findFirstChild("Sound") ~= nil then + + sound = sat.Sound + + sound.Parent = game.Workspace + +else + + sound = game.Workspace.Sound + +end + + + +function fire(sattarget) + + --point sat at the person, then rotate it so that the right face of the sat is pointing at it, not the side + + sat.BodyGyro.cframe = CFrame.new(sat.Position, sattarget) * CFrame.fromAxisAngle(Vector3.new(1,0,0),-3.14/2) + + sound:play() + + wait(2) + + --lerp the pretty balefire from satellite's position to the target + + dir = (sattarget - sat.Position).unit + + maxSize = 25 + + minSize = 5 + + for i=1,100,2 do + + lol = Instance.new("Explosion") + + lol.Position = i * dir * 2 + sat.Position + + lol.BlastRadius = i / 100 * (maxSize - minSize) + minSize + + lol.Parent = game.Workspace + + end + +end + + + +enabled = true + +function onButton1Down(mouse) + + if not enabled then return end + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + enabled = false + + target = mouse.Hit.p + + print(target) + + print(mouse.Target) + + fire(target) + + enabled = true + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + + 0 + Satellite-Move + + true + + + + false + + Script + --clockwork + +wait(1) + +local bin = script.Parent + +sat = game.Players.LocalPlayer.Character.TeapotTurret.Satellite + + + +enabled = true + +function onButton1Down(mouse) + + if not enabled then return end + + local player = game.Players.LocalPlayer + + if player == nil then return end + + print("trigger") + + -- find the best cf + + + + enabled = false + + target = mouse.Hit.p + + home = player.Character.Torso.Position + + dir = (target - home).unit + + pos = home + dir * math.random(0,200) + + sat.Position = pos + + sat.BodyPosition.position = pos + + enabled = true + +end + + + +function onSelected(mouse) + + print("select") + + mouse.Icon = "rbxasset://textures\\GunCursor.png" + + mouse.Button1Down:connect(function() onButton1Down(mouse) end) + +end + + + +bin.Selected:connect(onSelected) + + + true + + + + + + \ No newline at end of file diff --git a/charcustom/hats/fonts/Satellite.mesh b/charcustom/hats/fonts/Satellite.mesh new file mode 100644 index 0000000..5a74843 --- /dev/null +++ b/charcustom/hats/fonts/Satellite.mesh @@ -0,0 +1,3 @@ +version 1.00 +604 +[-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.351437,0.48276,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][2.57474,34.661,17.6026][0,1,0][0.395087,0.475064,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.433473,0.497226,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.416234,0.48276,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.448633,0.538876,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.433473,0.580527,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.444725,0.561038,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][2.57474,34.661,-17.7898][0,1,0][0.395087,0.602689,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-9.53014,34.661,-15.6553][0,1,0][0.351437,0.594992,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][-3.66588,34.661,-17.7898][0,1,0][0.372584,0.602689,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.416234,0.594992,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.444725,0.516714,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.322946,0.561038,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.334198,0.580527,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-3.66588,34.661,17.6026][0,1,0][0.372584,0.475064,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.322946,0.516714,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.334198,0.497226,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.319038,0.538876,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.789309,0.404416,0.500908][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.789309,0.0198008,0.500908][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.810836,0.404416,0.503201][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.810836,0.0198008,0.503201][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.832146,0.404416,0.505796][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.832146,0.0198008,0.505796][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.853268,0.404416,0.507482][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.853268,0.0198008,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.874318,0.404416,0.507482][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.874318,0.0198008,0.507482][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.89544,0.404416,0.505796][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.89544,0.0198008,0.505796][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.91675,0.404416,0.503201][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.91675,0.0198008,0.503201][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.938276,0.404416,0.500908][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.938276,0.0198008,0.500908][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.981617,0.0198008,0.500908][18.2483,12.542,6.74681][0.958142,0,0.286295][0.981617,0.404416,0.500908][18.2483,12.542,6.74681][0.958142,0,0.286295][0.981617,0.404416,0.500908][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.959947,0.404416,0.5][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.959947,0.0198008,0.5][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.597002,0.0198008,0.500908][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][18.2483,12.542,6.74681][0.958142,0,0.286295][0.597002,0.404416,0.500908][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.597002,0.0198008,0.500908][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][14.7753,12.542,12.7622][0.80244,0,0.596733][0.618528,0.404416,0.503201][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.618528,0.0198008,0.503201][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][9.45443,12.542,17.2269][0.549952,0,0.835196][0.639838,0.404416,0.505796][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.639838,0.0198008,0.505796][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][2.9274,12.542,19.6026][0.231132,0,0.972922][0.66096,0.404416,0.507482][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.66096,0.0198008,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.68201,0.404416,0.507482][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.68201,0.0198008,0.507482][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.703132,0.404416,0.505796][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.703132,0.0198008,0.505796][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.724442,0.404416,0.503201][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.724442,0.0198008,0.503201][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.767639,0.0198008,0.5][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.767639,0.404416,0.5][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.745969,0.404416,0.500908][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.745969,0.0198008,0.500908][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.61422,0.656698,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-6.48386,-48.0687,-10.379][0,-1,0][0.625019,0.643828,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][1.51678,-48.0687,-11.7897][0,-1,0][0.641564,0.640911,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.633034,0.640911,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][8.55242,-48.0687,-7.72772][0,-1,0][0.656113,0.649311,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][11.331,-48.0687,-0.0935935][0,-1,0][0.661859,0.665097,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][10.6148,-48.0687,-4.15562][0,-1,0][0.660378,0.656698,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][8.55242,-48.0687,7.54053][0,-1,0][0.656113,0.680884,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][1.51678,-48.0687,11.6026][0,-1,0][0.641564,0.689284,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][5.39272,-48.0687,10.1918][0,-1,0][0.649579,0.686367,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][10.6148,-48.0687,3.96844][0,-1,0][0.660378,0.673497,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][5.39272,-48.0687,-10.379][0,-1,0][0.649579,0.643828,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-6.48386,-48.0687,10.1918][0,-1,0][0.625019,0.686367,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-2.60792,-48.0687,11.6026][0,-1,0][0.633034,0.689284,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.618485,0.649311,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-11.7059,-48.0687,3.96845][0,-1,0][0.61422,0.673497,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.612739,0.665097,0][-9.64356,-48.0687,7.54053][0,-1,0][0.618485,0.680884,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-16.4769,12.542,-5.89211][0,-1,0][0.0246719,0.494856,0][-19.3394,12.542,-6.934][-0.958141,0,-0.286295][0.0143494,0.491099,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-13.5329,12.542,-10.9912][0,-1,0][0.035288,0.476468,0][-15.8665,12.542,-12.9494][-0.80244,0,-0.596733][0.026873,0.469407,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-9.02243,12.542,-14.776][0,-1,0][0.0515527,0.46282,0][-10.5456,12.542,-17.4141][-0.549952,0,-0.835196][0.0460603,0.453307,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][-3.48955,12.542,-16.7898][0,-1,0][0.0715044,0.455559,0][-4.01853,12.542,-19.7898][-0.231132,0,-0.972922][0.0695969,0.44474,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][2.39842,12.542,-16.7898][0,-1,0][0.0927366,0.455559,0][2.9274,12.542,-19.7898][0.115566,0,-0.9933][0.0946441,0.44474,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][7.93129,12.542,-14.7759][0,-1,0][0.112688,0.46282,0][9.45443,12.542,-17.4141][0.448325,0,-0.89387][0.118181,0.453307,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][12.4417,12.542,-10.9912][0,-1,0][0.128953,0.476468,0][14.7753,12.542,-12.9493][0.72701,0,-0.686627][0.137368,0.469407,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][15.3857,12.542,-5.89211][0,-1,0][0.139569,0.494856,0][18.2483,12.542,-6.934][0.918006,0,-0.396567][0.149892,0.491099,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][16.4081,12.542,-0.0935963][0,-1,0][0.143256,0.515765,0][19.4544,12.542,-0.0935962][0.998277,0,-0.0586743][0.154241,0.515765,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][15.3857,12.542,5.70492][0,-1,0][0.139569,0.536675,0][18.2483,12.542,6.74681][0.958142,0,0.286295][0.149892,0.540432,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][12.4417,12.542,10.804][0,-1,0][0.128953,0.555062,0][14.7753,12.542,12.7622][0.80244,0,0.596733][0.137368,0.562123,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][7.93129,12.542,14.5888][0,-1,0][0.112688,0.56871,0][9.45443,12.542,17.2269][0.549952,0,0.835196][0.118181,0.578224,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][2.39841,12.542,16.6026][0,-1,0][0.0927366,0.575972,0][2.9274,12.542,19.6026][0.231132,0,0.972922][0.0946441,0.58679,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-3.48955,12.542,16.6026][0,-1,0][0.0715045,0.575972,0][-4.01853,12.542,19.6026][-0.115566,0,0.9933][0.069597,0.58679,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-9.02243,12.542,14.5888][0,-1,0][0.0515528,0.56871,0][-10.5456,12.542,17.2269][-0.448325,0,0.893871][0.0460603,0.578224,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-13.5329,12.542,10.804][0,-1,0][0.035288,0.555062,0][-15.8665,12.542,12.7622][-0.727009,0,0.686628][0.026873,0.562123,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-20.5456,12.542,-0.0935993][-0.998277,0,0.0586743][0.01,0.515765,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-17.4993,12.542,-0.0935991][0,-1,0][0.020985,0.515765,0][-16.4769,12.542,5.70493][0,-1,0][0.0246719,0.536675,0][-19.3394,12.542,6.74682][-0.918006,0,0.396567][0.0143494,0.540432,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-13.5329,12.542,-10.9912][0,-1,0][0.612739,0.729979,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.612739,0.700498,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.612739,0.700498,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.624181,0.700498,0][-16.4769,12.542,-5.89211][0,-1,0][0.624181,0.729979,0][-13.5329,12.542,-10.9912][0,-1,0][0.267461,0.711858,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.267461,0.660449,0][-13.5329,12.542,-10.9912][0,-1,0][0.267461,0.711858,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.251196,0.660449,0][-9.02243,12.542,-14.776][0,-1,0][0.251196,0.711858,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.231244,0.660449,0][-3.48955,12.542,-16.7898][0,-1,0][0.231244,0.711858,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.210012,0.660449,0][2.39842,12.542,-16.7898][0,-1,0][0.210012,0.711858,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][12.4417,12.542,-10.9912][0,-1,0][0.173796,0.711858,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.173796,0.660449,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.173796,0.660449,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.190061,0.660449,0][7.93129,12.542,-14.7759][0,-1,0][0.190061,0.711858,0][12.4417,12.542,-10.9912][0,-1,0][0.0621269,0.546677,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.113536,0.546677,0][12.4417,12.542,-10.9912][0,-1,0][0.0621269,0.546677,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.113536,0.525445,0][15.3857,12.542,-5.89211][0,-1,0][0.0621269,0.525445,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][15.3857,12.542,5.70492][0,-1,0][0.0621269,0.489228,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.113536,0.489228,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.113536,0.489228,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.113536,0.505493,0][16.4081,12.542,-0.0935963][0,-1,0][0.0621269,0.505493,0][15.3857,12.542,5.70492][0,-1,0][0.0724651,0.386558,0][12.4417,12.542,10.804][0,-1,0][0.051233,0.386558,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.051233,0.335149,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.051233,0.335149,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.0724651,0.335149,0][15.3857,12.542,5.70492][0,-1,0][0.0724651,0.386558,0][12.4417,12.542,10.804][0,-1,0][0.857736,0.617812,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.857736,0.588331,0][12.4417,12.542,10.804][0,-1,0][0.857736,0.617812,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.848409,0.588331,0][7.93129,12.542,14.5888][0,-1,0][0.848409,0.617812,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.836968,0.588331,0][2.39841,12.542,16.6026][0,-1,0][0.836968,0.617812,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.824792,0.588331,0][-3.48955,12.542,16.6026][0,-1,0][0.824792,0.617812,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-13.5329,12.542,10.804][0,-1,0][0.804023,0.617812,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.804023,0.588331,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.804023,0.588331,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.813351,0.588331,0][-9.02243,12.542,14.5888][0,-1,0][0.813351,0.617812,0][-13.5329,12.542,10.804][0,-1,0][0.657125,0.729979,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.657125,0.700498,0][-13.5329,12.542,10.804][0,-1,0][0.657125,0.729979,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-17.4993,12.542,-0.0935991][0,-1,0][0.636357,0.729979,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.636357,0.700498,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.647798,0.700498,0][-16.4769,12.542,5.70493][0,-1,0][0.647798,0.729979,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.0308911,0.651904,0][-16.4769,-1.7144,-5.89211][-0.984808,0,-0.173648][0.0136869,0.645642,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.038328,0.639023,0][-13.5329,-1.7144,-10.9912][-0.866025,0,-0.5][0.024303,0.627254,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-6.48386,-1.7144,-10.379][0,-1,0][0.0497219,0.629462,0][-9.02243,-1.7144,-14.7759][-0.642788,-1.53732e-007,-0.766044][0.0405678,0.613607,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.0636987,0.624375,0][-3.48955,-1.7144,-16.7898][-0.34202,-2.5144e-007,-0.939693][0.0605195,0.606345,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][1.51678,-1.7144,-11.7898][0,-1,0][0.0785724,0.624375,0][2.39841,-1.7144,-16.7898][0,-2.67577e-007,-1][0.0817516,0.606345,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][5.39272,-1.7144,-10.379][0,-1,0][0.0925492,0.629462,0][7.93129,-1.7144,-14.7759][0.342021,0,-0.939692][0.101703,0.613607,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][8.55242,-1.7144,-7.72772][0,-1,0][0.103943,0.639023,0][12.4417,-1.7144,-10.9912][0.642788,0,-0.766044][0.117968,0.627254,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][10.6148,-1.7144,-4.15563][0,-1,0][0.11138,0.651904,0][15.3857,-1.7144,-5.89211][0.866025,0,-0.5][0.128584,0.645642,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][11.331,-1.7144,-0.0935952][0,-1,0][0.113963,0.666552,0][16.4081,-1.7144,-0.0935949][0.984808,0,-0.173648][0.132271,0.666552,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][10.6148,-1.7144,3.96844][0,-1,0][0.11138,0.681199,0][15.3857,-1.7144,5.70492][0.984808,0,0.173648][0.128584,0.687461,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][8.55242,-1.7144,7.54053][0,-1,0][0.103943,0.69408,0][12.4417,-1.7144,10.804][0.866025,0,0.5][0.117968,0.705849,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][5.39272,-1.7144,10.1918][0,-1,0][0.0925492,0.703641,0][7.93129,-1.7144,14.5888][0.642788,0,0.766044][0.101703,0.719497,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][1.51678,-1.7144,11.6026][0,-1,0][0.0785724,0.708728,0][2.39841,-1.7144,16.6026][0.34202,2.5144e-007,0.939693][0.0817517,0.726758,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-2.60792,-1.7144,11.6026][0,-1,0][0.0636987,0.708728,0][-3.48955,-1.7144,16.6026][6.47881e-007,2.67577e-007,1][0.0605195,0.726758,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-6.48386,-1.7144,10.1918][0,-1,0][0.0497219,0.703641,0][-9.02243,-1.7144,14.5888][-0.34202,1.8858e-007,0.939693][0.0405678,0.719497,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-9.64356,-1.7144,7.54053][0,-1,0][0.038328,0.69408,0][-13.5329,-1.7144,10.8041][-0.642787,1.53732e-007,0.766045][0.024303,0.705849,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-17.4993,-1.7144,-0.0935978][-0.984808,0,-0.173648][0.01,0.666552,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.0283083,0.666552,0][-11.7059,-1.7144,3.96844][0,-1,0][0.0308911,0.681199,0][-16.4769,-1.7144,5.70493][-0.866025,0,0.500001][0.0136869,0.687461,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.766184,0.431699,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.862041,0.431699,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.862041,0.431699,0][-11.7059,-48.0687,-4.15563][0,-1,0][0.862041,0.439086,0][-11.7059,-1.7144,-4.15563][0,-1,0][0.766184,0.439086,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.612739,0.625959,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-9.64357,-48.0687,-7.72772][0,-1,0][0.708596,0.625959,0][-9.64357,-1.7144,-7.72772][0,-1,0][0.612739,0.625959,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-6.48386,-48.0687,-10.379][0,-1,0][0.708596,0.619425,0][-6.48386,-1.7144,-10.379][0,-1,0][0.612739,0.619425,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][-2.60792,-48.0687,-11.7897][0,-1,0][0.708596,0.61141,0][-2.60792,-1.7144,-11.7898][0,-1,0][0.612739,0.61141,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][1.51678,-48.0687,-11.7897][0,-1,0][0.708596,0.60288,0][1.51678,-1.7144,-11.7898][0,-1,0][0.612739,0.60288,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][8.55242,-1.7144,-7.72772][0,-1,0][0.612739,0.588331,0][8.55242,-48.0687,-7.72772][0,-1,0][0.708596,0.588331,0][8.55242,-48.0687,-7.72772][0,-1,0][0.708596,0.588331,0][5.39272,-48.0687,-10.379][0,-1,0][0.708596,0.594865,0][5.39272,-1.7144,-10.379][0,-1,0][0.612739,0.594865,0][8.55242,-1.7144,-7.72772][0,-1,0][0.796517,0.533094,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][8.55242,-48.0687,-7.72772][0,-1,0][0.892374,0.533094,0][8.55242,-1.7144,-7.72772][0,-1,0][0.796517,0.533094,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][10.6148,-48.0687,-4.15562][0,-1,0][0.892374,0.524564,0][10.6148,-1.7144,-4.15563][0,-1,0][0.796517,0.524564,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][10.6148,-1.7144,3.96844][0,-1,0][0.796517,0.510015,0][10.6148,-48.0687,3.96844][0,-1,0][0.892374,0.510015,0][10.6148,-48.0687,3.96844][0,-1,0][0.892374,0.510015,0][11.331,-48.0687,-0.0935935][0,-1,0][0.892374,0.516549,0][11.331,-1.7144,-0.0935952][0,-1,0][0.796517,0.516549,0][10.6148,-1.7144,3.96844][0,-1,0][0.559494,0.57236,0][8.55242,-1.7144,7.54053][0,-1,0][0.559494,0.563831,0][8.55242,-48.0687,7.54053][0,-1,0][0.65535,0.563831,0][8.55242,-48.0687,7.54053][0,-1,0][0.65535,0.563831,0][10.6148,-48.0687,3.96844][0,-1,0][0.65535,0.57236,0][10.6148,-1.7144,3.96844][0,-1,0][0.559494,0.57236,0][8.55242,-1.7144,7.54053][0,-1,0][0.685709,0.547643,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][8.55242,-48.0687,7.54053][0,-1,0][0.781566,0.547643,0][8.55242,-1.7144,7.54053][0,-1,0][0.685709,0.547643,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][5.39272,-48.0687,10.1918][0,-1,0][0.781566,0.541109,0][5.39272,-1.7144,10.1918][0,-1,0][0.685709,0.541109,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][1.51678,-48.0687,11.6026][0,-1,0][0.781566,0.533094,0][1.51678,-1.7144,11.6026][0,-1,0][0.685709,0.533094,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-2.60792,-48.0687,11.6026][0,-1,0][0.781566,0.524564,0][-2.60792,-1.7144,11.6026][0,-1,0][0.685709,0.524564,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-9.64356,-1.7144,7.54053][0,-1,0][0.685709,0.510015,0][-9.64356,-48.0687,7.54053][0,-1,0][0.781566,0.510015,0][-9.64356,-48.0687,7.54053][0,-1,0][0.781566,0.510015,0][-6.48386,-48.0687,10.1918][0,-1,0][0.781566,0.516549,0][-6.48386,-1.7144,10.1918][0,-1,0][0.685709,0.516549,0][-9.64356,-1.7144,7.54053][0,-1,0][0.766184,0.463272,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-9.64356,-48.0687,7.54053][0,-1,0][0.862041,0.463272,0][-9.64356,-1.7144,7.54053][0,-1,0][0.766184,0.463272,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-12.4222,-1.7144,-0.0935978][0,-1,0][0.766184,0.447485,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-12.4222,-48.0687,-0.093596][0,-1,0][0.862041,0.447485,0][-11.7059,-48.0687,3.96845][0,-1,0][0.862041,0.455885,0][-11.7059,-1.7144,3.96844][0,-1,0][0.766184,0.455885,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-18.5147,66.3469,-0.0935995][0,1,0][0.419334,0.828793,0][-20.5456,66.3469,-0.0935996][-0.998277,0,-0.0586746][0.412011,0.828793,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-17.431,66.3469,6.05222][0,1,0][0.423242,0.806631,0][-19.3394,66.3469,6.74682][-0.958141,0,0.286295][0.41636,0.804126,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-14.3107,66.3469,11.4568][0,1,0][0.434494,0.787142,0][-15.8665,66.3469,12.7622][-0.802439,0,0.596734][0.428884,0.782434,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-9.53014,66.3469,15.4681][0,1,0][0.451732,0.772677,0][-10.5456,66.3469,17.2269][-0.549952,0,0.835196][0.448071,0.766334,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][-3.66588,66.3469,17.6026][0,1,0][0.472879,0.76498,0][-4.01853,66.3469,19.6026][-0.231132,0,0.972923][0.471607,0.757768,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][2.57474,66.3469,17.6026][0,1,0][0.495383,0.76498,0][2.9274,66.3469,19.6026][0.115566,0,0.9933][0.496655,0.757768,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][8.439,66.3469,15.4681][0,1,0][0.51653,0.772677,0][9.45443,66.3469,17.2269][0.448325,0,0.893871][0.520191,0.766334,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][13.2196,66.3469,11.4567][0,1,0][0.533769,0.787142,0][14.7753,66.3469,12.7622][0.72701,0,0.686627][0.539379,0.782435,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][16.3399,66.3469,6.05221][0,1,0][0.545021,0.806631,0][18.2483,66.3469,6.74681][0.918006,0,0.396567][0.551902,0.804126,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][17.4236,66.3469,-0.0935966][0,1,0][0.548928,0.828793,0][19.4544,66.3469,-0.0935966][0.998277,0,0.0586745][0.556252,0.828793,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][16.3399,66.3469,-6.23941][0,1,0][0.545021,0.850955,0][18.2483,66.3469,-6.934][0.958142,0,-0.286295][0.551902,0.853459,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][13.2196,66.3469,-11.6439][0,1,0][0.533769,0.870443,0][14.7753,66.3469,-12.9493][0.80244,0,-0.596733][0.539379,0.875151,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][8.439,66.3469,-15.6553][0,1,0][0.51653,0.884909,0][9.45443,66.3469,-17.4141][0.549952,0,-0.835196][0.520191,0.891251,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][2.57474,66.3469,-17.7898][0,1,0][0.495383,0.892605,0][2.9274,66.3469,-19.7898][0.231132,0,-0.972922][0.496655,0.899817,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-3.66588,66.3469,-17.7898][0,1,0][0.472879,0.892605,0][-4.01853,66.3469,-19.7898][-0.115566,0,-0.9933][0.471607,0.899817,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-9.53014,66.3469,-15.6553][0,1,0][0.451732,0.884909,0][-10.5456,66.3469,-17.4141][-0.448325,0,-0.893871][0.448071,0.891251,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-19.3394,66.3469,-6.934][-0.918006,0,-0.396567][0.41636,0.853459,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-17.431,66.3469,-6.23941][0,1,0][0.423242,0.850955,0][-14.3107,66.3469,-11.6439][0,1,0][0.434494,0.870443,0][-15.8665,66.3469,-12.9494][-0.72701,0,-0.686627][0.428884,0.875151,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-18.5147,34.661,-0.0935991][5.60723e-007,1,2.32762e-007][0.12426,0.787964,0][-18.5147,66.3469,-0.0935995][0,1,0][0.01,0.787964,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-14.3107,66.3469,11.4568][0,1,0][0.01,0.746313,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.12426,0.746313,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.12426,0.746313,0][-17.431,34.661,6.05222][-1.76008e-006,1,3.10349e-007][0.12426,0.765802,0][-17.431,66.3469,6.05222][0,1,0][0.01,0.765802,0][-14.3107,66.3469,11.4568][0,1,0][0.173796,0.529591,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-14.3107,34.661,11.4568][-5.58745e-007,1,4.68843e-007][0.288056,0.529591,0][-14.3107,66.3469,11.4568][0,1,0][0.173796,0.529591,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-9.53014,34.661,15.4681][-6.11268e-007,1,1.67945e-006][0.288056,0.512353,0][-9.53014,66.3469,15.4681][0,1,0][0.173796,0.512353,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][-3.66588,34.661,17.6026][0,1,0][0.288056,0.491206,0][-3.66588,66.3469,17.6026][0,1,0][0.173796,0.491206,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][2.57474,34.661,17.6026][0,1,0][0.288056,0.468702,0][2.57474,66.3469,17.6026][0,1,0][0.173796,0.468702,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][13.2196,66.3469,11.4567][0,1,0][0.173796,0.430316,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.288056,0.430316,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.288056,0.430316,0][8.439,34.661,15.4681][-4.10884e-007,1,-6.1486e-007][0.288056,0.447555,0][8.439,66.3469,15.4681][0,1,0][0.173796,0.447555,0][13.2196,66.3469,11.4567][0,1,0][0.723548,0.623249,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][13.2196,34.661,11.4567][-1.14881e-006,1,-1.3691e-006][0.789072,0.623249,0][13.2196,66.3469,11.4567][0,1,0][0.723548,0.623249,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][16.3399,34.661,6.05221][-5.29318e-007,1,-1.86017e-007][0.789072,0.610344,0][16.3399,66.3469,6.05221][0,1,0][0.723548,0.610344,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][16.3399,66.3469,-6.23941][0,1,0][0.723548,0.588331,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.789072,0.588331,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.789072,0.588331,0][17.4236,34.661,-0.0935962][-1.76008e-006,1,3.1035e-007][0.789072,0.598217,0][17.4236,66.3469,-0.0935966][0,1,0][0.723548,0.598217,0][16.3399,66.3469,-6.23941][0,1,0][0.766184,0.491129,0][13.2196,66.3469,-11.6439][0,1,0][0.766184,0.478224,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.831708,0.478224,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.831708,0.478224,0][16.3399,34.661,-6.23941][1.88886e-007,1,-5.47339e-007][0.831708,0.491129,0][16.3399,66.3469,-6.23941][0,1,0][0.766184,0.491129,0][13.2196,66.3469,-11.6439][0,1,0][0.685709,0.488629,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][13.2196,34.661,-11.6439][2.6966e-006,1,-2.26271e-006][0.751233,0.488629,0][13.2196,66.3469,-11.6439][0,1,0][0.685709,0.488629,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][8.439,34.661,-15.6553][4.71171e-007,1,-3.57446e-007][0.751233,0.478743,0][8.439,66.3469,-15.6553][0,1,0][0.685709,0.478743,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][2.57474,34.661,-17.7898][0,1,0][0.751233,0.466616,0][2.57474,66.3469,-17.7898][0,1,0][0.685709,0.466616,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-3.66588,34.661,-17.7898][0,1,0][0.751233,0.453711,0][-3.66588,66.3469,-17.7898][0,1,0][0.685709,0.453711,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-14.3107,66.3469,-11.6439][0,1,0][0.685709,0.431699,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.751233,0.431699,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.751233,0.431699,0][-9.53014,34.661,-15.6553][0,1,0][0.751233,0.441585,0][-9.53014,66.3469,-15.6553][0,1,0][0.685709,0.441585,0][-14.3107,66.3469,-11.6439][0,1,0][0.01,0.829615,0][-17.431,66.3469,-6.23941][0,1,0][0.01,0.810126,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-17.431,34.661,-6.23941][3.30786e-006,1,1.20396e-006][0.12426,0.810126,0][-14.3107,34.661,-11.6439][5.82424e-007,1,2.18625e-007][0.12426,0.829615,0][-14.3107,66.3469,-11.6439][0,1,0][0.01,0.829615,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.279895,0.555664,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.296819,0.555664,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.296819,0.555664,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.296819,0.564445,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.84666,0.478224,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.856365,0.478224,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.84666,0.478224,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.296819,0.564445,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.296819,0.565654,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.296819,0.565654,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.279895,0.565654,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.279895,0.564445,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.0181114,0.46196,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.0183548,0.449545,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.0200653,0.449578,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.0200653,0.449578,0][1.92451,-49.6677,13.5156][1.43685e-007,0.707107,0.707107][0.0198218,0.461993,0][1.92451,-50.0032,13.1802][-1.43685e-007,-0.707107,-0.707106][0.0181114,0.46196,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.856365,0.483953,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.84666,0.483953,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.84666,0.483259,0][1.92451,-47.2329,11.0808][2.8737e-007,1.41421,1.41421][0.856365,0.483259,0][1.92451,-47.5683,10.7453][-2.8737e-007,-1.41421,-1.41421][0.856365,0.483953,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.154241,0.574375,0][-2.76874,-50.0032,13.1802][-2.8737e-007,-1.41421,-1.41421][0.153998,0.58679,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.152287,0.586757,0][-2.76874,-49.6677,13.5156][2.8737e-007,1.41421,1.41421][0.152287,0.586757,0][-2.76874,-47.2329,11.0808][1.43685e-007,0.707107,0.707107][0.152531,0.574342,0][-2.76874,-47.5683,10.7453][-1.43685e-007,-0.707107,-0.707106][0.154241,0.574375,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.883661,0.628274,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.88365,0.629249,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.86895,0.629074,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.868962,0.628098,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.868962,0.628098,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.875563,0.628177,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.875552,0.629153,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0556087,0.506025,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0552596,0.521049,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0535588,0.52101,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0535588,0.52101,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.0539079,0.505986,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0556087,0.506025,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0607865,0.915955,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0607865,0.917157,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0607865,0.917157,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.0457582,0.917157,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0549316,0.535168,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0546641,0.546677,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.0529633,0.546637,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.0529633,0.546637,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.0532308,0.535128,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0549316,0.535168,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.945943,0.628098,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.945939,0.629074,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.945943,0.628098,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.954557,0.629108,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.954561,0.628132,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.969261,0.628191,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.969258,0.629166,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.969258,0.629166,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.962656,0.62914,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.96266,0.628165,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.105952,0.47685,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.105998,0.475149,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.105952,0.47685,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.0909753,0.47474,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.0909289,0.47644,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0653041,0.475741,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.0653505,0.474041,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.0653505,0.474041,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.0768586,0.474355,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0768122,0.476055,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0668482,0.311409,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.066821,0.31311,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0668482,0.311409,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.0818474,0.31335,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0818746,0.311649,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.107506,0.312059,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.107478,0.31376,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.107478,0.31376,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.0959676,0.313576,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0959948,0.311875,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0178357,0.58673,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0183651,0.571711,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.0200653,0.571771,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.0200653,0.571771,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.0195359,0.58679,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0178357,0.58673,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.906966,0.629528,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.906978,0.628552,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.906966,0.629528,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.892267,0.629352,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.892279,0.628377,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.900377,0.628474,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.900365,0.629449,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][5.44781,-65.339,28.5275][1.62759,-1.74782,1.74781][0.0316362,0.859322,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-2.63597,-66.3469,29.5354][-0.342021,-2.07866,2.07869][0.0607865,0.855688,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-9.74472,-63.4448,26.6333][-2.1516,-1.43689,1.43691][0.0864208,0.866153,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-6.55219,-65.339,28.5275][-1.32683,-1.87059,1.87061][0.0749085,0.859322,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-12.5522,-57.9905,21.179][-2.95442,-0.122783,0.122791][0.0965446,0.885821,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-9.74472,-52.5363,15.7248][-2.37484,1.24878,-1.24879][0.0864208,0.905489,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-11.8285,-55.0884,18.2769][-2.83564,0.599131,-0.599127][0.093935,0.896286,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][-2.63597,-49.6342,12.8227][-0.68404,2.03603,-2.03604][0.0607865,0.915955,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][5.44781,-50.6421,13.8306][1.32683,1.8706,-1.8706][0.0316362,0.91232,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][1.53159,-49.6342,12.8227][0.342019,2.07866,-2.07869][0.0457582,0.915955,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][-6.55219,-50.6421,13.8306][-1.62759,1.74781,-1.74781][0.0749085,0.91232,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][-11.8285,-60.8927,24.0812][-2.71686,-0.829889,0.829901][0.093935,0.875356,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][10.7241,-55.0884,18.2769][2.71686,0.829894,-0.829895][0.0126096,0.896286,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][8.64034,-52.5363,15.7248][2.1516,1.4369,-1.43691][0.0201238,0.905489,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][1.53158,-66.3469,29.5354][0.68404,-2.03602,2.03604][0.0457582,0.855688,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][10.7241,-60.8927,24.0812][2.83564,-0.599128,0.599132][0.0126096,0.875356,0][8.64034,-63.4448,26.6333][2.37484,-1.2488,1.24877][0.0201238,0.866153,0][11.4478,-57.9905,21.179][2.95442,0.122786,-0.12279][0.01,0.885821,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][8.64034,-52.2027,16.0584][2.37484,1.24878,-1.24879][0.250217,0.626094,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][1.53159,-49.3006,13.1563][0.68404,2.03603,-2.03604][0.224582,0.640894,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-6.55219,-50.3085,14.1642][-1.32683,1.8706,-1.8706][0.195432,0.635754,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][-2.63597,-49.3006,13.1563][-0.342021,2.07866,-2.07869][0.209554,0.640894,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-11.8285,-54.7548,18.6105][-2.71686,0.829893,-0.829896][0.176405,0.613079,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-11.8285,-60.5591,24.4148][-2.83564,-0.599122,0.599135][0.176405,0.583479,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-12.5522,-57.6569,21.5126][-2.95442,0.122792,-0.122785][0.173796,0.598279,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-6.55219,-65.0054,28.8611][-1.6276,-1.7478,1.74782][0.195432,0.560804,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][1.53158,-66.0133,29.869][0.34202,-2.07866,2.07869][0.224582,0.555664,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][-2.63597,-66.0133,29.869][-0.684042,-2.03602,2.03604][0.209554,0.555664,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][-9.74472,-63.1112,26.9669][-2.37484,-1.24877,1.24879][0.18392,0.570464,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][-9.74472,-52.2027,16.0584][-2.1516,1.4369,-1.43691][0.18392,0.626094,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][8.64034,-63.1112,26.9669][2.1516,-1.43692,1.43689][0.250217,0.570464,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][5.44781,-65.0054,28.8611][1.32683,-1.87059,1.87061][0.238704,0.560804,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][5.44781,-50.3085,14.1642][1.6276,1.74782,-1.74781][0.238704,0.635754,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][11.4478,-57.6569,21.5126][2.95442,-0.12279,0.122786][0.26034,0.598279,0][10.7241,-54.7548,18.6105][2.83564,0.59913,-0.599129][0.257731,0.613079,0][10.7241,-60.5591,24.4148][2.71686,-0.829898,0.829894][0.257731,0.583479,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.582781,0.282288,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.01855,0.283039,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.0184883,0.0137894,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.0184883,0.0137894,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.582768,0.0129886,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.582781,0.282288,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.583204,0.0132399,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.583207,0.282533,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.583204,0.0132399,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.967242,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.892803,0.967242,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.892803,0.967534,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.892803,0.967534,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867988,0.967534,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.967242,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.853028,0.922865,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.791003,0.921648,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.791011,0.921235,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.791011,0.921235,0][-41.8115,-17.2509,22.2722][0,0.707107,0.707107][0.853036,0.922451,0][-41.8115,-17.3923,22.1308][0,-0.707107,-0.707107][0.853028,0.922865,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.01872,0.283145,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.0186162,0.0138709,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.0186289,0.0138709,0][-41.8115,3.96235,1.05903][0,1.41421,1.41421][0.0187362,0.283145,0][-41.8115,3.82093,0.917605][0,-1.41421,-1.41421][0.01872,0.283145,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.930013,0.935708,0][-53.8115,-17.3923,22.1308][0,-1.41421,-1.41421][0.867988,0.934492,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867996,0.934079,0][-53.8115,-17.2509,22.2722][0,1.41421,1.41421][0.867996,0.934079,0][-53.8115,3.96235,1.05903][0,0.707107,0.707107][0.930022,0.935295,0][-53.8115,3.82093,0.917605][0,-0.707107,-0.707107][0.930013,0.935708,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.583708,0.282223,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.0179212,0.283011,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.018012,0.0137673,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.018012,0.0137673,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.583719,0.0129219,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.583708,0.282223,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.583005,0.0134906,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.583013,0.282778,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.583005,0.0134906,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.944973,0.934079,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.969788,0.934079,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.934371,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.934371,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.944973,0.934371,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.944973,0.934079,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.281956,0.99,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.173796,0.987879,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.17381,0.987158,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.17381,0.987158,0][-28.9414,-17.2509,22.2722][0,0.707107,0.707107][0.28197,0.989279,0][-28.9414,-17.3923,22.1308][0,-0.707107,-0.707107][0.281956,0.99,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.0186347,0.283253,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.0185523,0.0139507,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.0185651,0.0139507,0][-28.9414,3.96235,1.05903][0,1.41421,1.41421][0.0186518,0.283253,0][-28.9414,3.82093,0.917605][-1.19416e-007,-1.41421,-1.41421][0.0186347,0.283253,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.95229,0][-40.9414,-17.3923,22.1308][-1.19416e-007,-1.41421,-1.41421][0.791003,0.951074,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.95066,0][-40.9414,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.95066,0][-40.9414,3.96235,1.05903][0,0.707107,0.707107][0.853036,0.951876,0][-40.9414,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.95229,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583662,0.282612,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.0179013,0.28318,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0179972,0.0138957,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0179972,0.0138957,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.583672,0.0133201,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583662,0.282612,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.582664,0.0137341,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.58268,0.283016,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0174726,0.283356,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0174726,0.283356,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.0176727,0.0140294,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.582664,0.0137341,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.863777,0.889977,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.888592,0.889977,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.888592,0.890391,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.888592,0.890391,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.863777,0.890391,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.863777,0.889977,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.953422,0.807502,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.891397,0.806285,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.891405,0.805872,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.891405,0.805872,0][-28.9414,6.12795,-1.10657][0,0.707107,0.707107][0.95343,0.807088,0][-28.9414,5.98653,-1.248][0,-0.707107,-0.707107][0.953422,0.807502,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.961048,0.904493,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.985863,0.904493,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.985863,0.904906,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.985863,0.904906,0][-28.9414,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.961048,0.904906,0][-28.9414,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.961048,0.904493,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.930013,0.95229,0][-40.9414,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.867988,0.951074,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.867996,0.95066,0][-40.9414,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.867996,0.95066,0][-40.9414,27.3412,-22.3198][0,0.707107,0.707107][0.930022,0.951876,0][-40.9414,27.1997,-22.4612][0,-0.707107,-0.707107][0.930013,0.95229,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.583127,0.282744,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176677,0.283238,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178203,0.0139398,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178203,0.0139398,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.583121,0.0134549,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.583127,0.282744,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.583672,0.0135066,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.583662,0.282794,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.0179013,0.28326,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.0179013,0.28326,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.0179972,0.0139572,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.583672,0.0135066,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.86425,0.921235,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.889065,0.921235,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.889065,0.921649,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.889065,0.921649,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.86425,0.921649,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.86425,0.921235,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.660022,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.911757,0.658806,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.658393,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.658393,0][-41.8115,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.659609,0][-41.8115,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.660022,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.804023,0.629026,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.828838,0.629026,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.828838,0.62944,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.828838,0.62944,0][-41.8115,27.3412,-22.3198][0,1.41421,1.41421][0.804023,0.62944,0][-41.8115,27.1997,-22.4612][0,-1.41421,-1.41421][0.804023,0.629026,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.953422,0.820345,0][-53.8115,5.98653,-1.248][0,-1.41421,-1.41421][0.891397,0.819129,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.891405,0.818715,0][-53.8115,6.12795,-1.10657][0,1.41421,1.41421][0.891405,0.818715,0][-53.8115,27.3412,-22.3198][0,0.707107,0.707107][0.95343,0.819932,0][-53.8115,27.1997,-22.4612][0,-0.707107,-0.707107][0.953422,0.820345,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.58284,0.283049,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.0185763,0.283371,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185084,0.0140405,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185084,0.0140405,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.582829,0.0137693,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.58284,0.283049,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.582919,0.0133712,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.582928,0.282662,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.582919,0.0133712,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.944973,0.95066,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.969788,0.95066,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.950953,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.969788,0.950953,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.944973,0.950953,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.944973,0.95066,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.978394,0.732104,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.916369,0.730888,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.916377,0.730474,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.916377,0.730474,0][40.941,-17.2509,22.2722][0,0.707107,0.707107][0.978402,0.73169,0][40.941,-17.3923,22.1308][0,-0.707107,-0.707107][0.978394,0.732104,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185978,0.283202,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.0185246,0.0139122,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.0185375,0.0139122,0][40.941,3.96235,1.05903][0,1.41421,1.41421][0.0186149,0.283202,0][40.941,3.82093,0.917605][0,-1.41421,-1.41421][0.0185978,0.283202,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.772151,0.564224,0][28.941,-17.3923,22.1308][0,-1.41421,-1.41421][0.710126,0.563008,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.710134,0.562595,0][28.941,-17.2509,22.2722][0,1.41421,1.41421][0.710134,0.562595,0][28.941,3.96235,1.05903][0,0.707107,0.707107][0.77216,0.563811,0][28.941,3.82093,0.917605][0,-0.707107,-0.707107][0.772151,0.564224,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.583279,0.28261,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.0187675,0.28318,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0186523,0.0138957,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0186523,0.0138957,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.583278,0.0133186,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.583279,0.28261,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.584005,0.0135351,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.583988,0.282822,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.584005,0.0135351,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.968382,0.818715,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.993197,0.818715,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.993197,0.819008,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.993197,0.819008,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.968382,0.819008,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.968382,0.818715,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.925803,0.878763,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.863777,0.877547,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.863786,0.877134,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.863786,0.877134,0][53.811,-17.2509,22.2722][0,0.707107,0.707107][0.925811,0.87835,0][53.811,-17.3923,22.1308][0,-0.707107,-0.707107][0.925803,0.878763,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0190599,0.283272,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.0188739,0.0139656,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.0188866,0.0139656,0][53.811,3.96235,1.05903][0,1.41421,1.41421][0.0190769,0.283272,0][53.811,3.82093,0.917605][0,-1.41421,-1.41421][0.0190599,0.283272,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.968872,0][41.811,-17.3923,22.1308][0,-1.41421,-1.41421][0.791003,0.967655,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.967242,0][41.811,-17.2509,22.2722][0,1.41421,1.41421][0.791011,0.967242,0][41.811,3.96235,1.05903][0,0.707107,0.707107][0.853036,0.968458,0][41.811,3.82093,0.917605][0,-0.707107,-0.707107][0.853028,0.968872,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583127,0.282407,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176677,0.28309,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0178203,0.0138284,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.0178203,0.0138284,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.583121,0.0131093,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.583127,0.282407,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.583541,0.0134162,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.583535,0.282705,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0178452,0.283221,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.0178452,0.283221,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.0179553,0.0139271,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.583541,0.0134162,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.937025,0.877134,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.96184,0.877134,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.96184,0.877547,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.96184,0.877547,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.937025,0.877547,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.937025,0.877134,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.757038,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.911757,0.755822,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.911765,0.755408,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.911765,0.755408,0][53.811,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.756624,0][53.811,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.757038,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.964171,0.770241,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.988986,0.770241,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.988986,0.770654,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.988986,0.770654,0][53.811,27.3412,-22.3198][1.19416e-007,1.41421,1.41421][0.964171,0.770654,0][53.811,27.1997,-22.4612][-1.19416e-007,-1.41421,-1.41421][0.964171,0.770241,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.985453,0][41.811,5.98653,-1.248][-1.19416e-007,-1.41421,-1.41421][0.791003,0.984237,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.791011,0.983823,0][41.811,6.12795,-1.10657][1.19416e-007,1.41421,1.41421][0.791011,0.983823,0][41.811,27.3412,-22.3198][0,0.707107,0.707107][0.853036,0.98504,0][41.811,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.985453,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.583113,0.282402,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.0176613,0.283089,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178161,0.0138273,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.0178161,0.0138273,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.583108,0.0131055,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.583113,0.282402,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.583475,0.0137341,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.583472,0.283015,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.0178175,0.283356,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.0178175,0.283356,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.0179341,0.0140294,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.583475,0.0137341,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.964644,0.805872,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.989459,0.805872,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.989459,0.806285,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.989459,0.806285,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.964644,0.806285,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.964644,0.805872,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.642541,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.911757,0.641324,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.640911,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.911765,0.640911,0][40.941,6.12795,-1.10657][0,0.707107,0.707107][0.97379,0.642127,0][40.941,5.98653,-1.248][0,-0.707107,-0.707107][0.973782,0.642541,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.124089,0.344771,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.124089,0.388044,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.123368,0.388044,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.123368,0.388044,0][40.941,27.3412,-22.3198][0,1.41421,1.41421][0.123368,0.344771,0][40.941,27.1997,-22.4612][0,-1.41421,-1.41421][0.124089,0.344771,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.935708,0][28.941,5.98653,-1.248][0,-1.41421,-1.41421][0.791003,0.934492,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.791011,0.934079,0][28.941,6.12795,-1.10657][0,1.41421,1.41421][0.791011,0.934079,0][28.941,27.3412,-22.3198][0,0.707107,0.707107][0.853036,0.935295,0][28.941,27.1997,-22.4612][0,-0.707107,-0.707107][0.853028,0.935708,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][6.5,62.7291,10.4738][0,1,0][0.971175,0.560453,0][10.5,62.7291,6.47378][0,2,0][0.962903,0.568725,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][10.5,62.7291,6.47378][0,2,0][0.962903,0.568725,0][10.5,62.7291,0.473779][0,2,0][0.950496,0.568725,0][0.5,62.7291,10.4738][0,3,0][0.971175,0.548046,0][10.5,62.7291,0.473779][0,2,0][0.950496,0.568725,0][0.5,62.7291,0.47378][0,1,0][0.950496,0.548046,0][0.499999,34.7672,10.4738][0,-2,0][0.706388,0.562595,0][0.499998,34.7672,0.47378][0,-1,0][0.706388,0.583274,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][10.5,34.7672,6.47378][0,-1,0][0.685709,0.570866,0][6.5,34.7672,10.4738][0,-2,0][0.693981,0.562595,0][0.499999,34.7672,10.4738][0,-2,0][0.706388,0.562595,0][10.5,34.7672,0.473779][0,-3,0][0.685709,0.583274,0][6.5,34.7672,10.4738][0,-2,0][0.693981,0.562595,0][0.5,62.7291,10.4738][0,3,0][0.827051,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.827051,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.884874,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.884874,0.675875,0][0.499999,34.7672,10.4738][0,-2,0][0.884874,0.696554,0][0.5,62.7291,10.4738][0,3,0][0.827051,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.899826,0.696554,0][10.5,62.7291,0.473779][0,2,0][0.899826,0.675875,0][10.5,34.7672,0.473779][0,-3,0][0.957648,0.675875,0][10.5,34.7672,0.473779][0,-3,0][0.957648,0.675875,0][0.499998,34.7672,0.47378][0,-1,0][0.957648,0.696554,0][0.5,62.7291,0.47378][0,1,0][0.899826,0.696554,0][10.5,62.7291,0.473779][0,2,0][0.673073,0.79092,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,34.7672,0.473779][0,-3,0][0.730895,0.79092,0][10.5,62.7291,0.473779][0,2,0][0.673073,0.79092,0][6.5,62.7291,10.4738][0,1,0][0.818622,0.818279,0][0.5,62.7291,10.4738][0,3,0][0.818622,0.805872,0][0.499999,34.7672,10.4738][0,-2,0][0.876445,0.805872,0][0.499999,34.7672,10.4738][0,-2,0][0.876445,0.805872,0][6.5,34.7672,10.4738][0,-2,0][0.876445,0.818279,0][6.5,62.7291,10.4738][0,1,0][0.818622,0.818279,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][6.5,62.7291,10.4738][0,1,0][0.673073,0.770241,0][6.5,34.7672,10.4738][0,-2,0][0.730895,0.770241,0][6.5,34.7672,10.4738][0,-2,0][0.730895,0.770241,0][10.5,34.7672,6.47378][0,-1,0][0.730895,0.778512,0][10.5,62.7291,6.47378][0,2,0][0.673073,0.778512,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-6.5,62.7291,-10.5262][0,1,0][0.953982,0.469286,0][-10.5,62.7291,-6.52622][0,2,0][0.962254,0.461014,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-10.5,62.7291,-6.52622][0,2,0][0.962254,0.461014,0][-10.5,62.7291,-0.526219][0,2,0][0.974661,0.461014,0][-0.500001,62.7291,-10.5262][0,3,0][0.953982,0.481693,0][-10.5,62.7291,-0.526219][0,2,0][0.974661,0.461014,0][-0.5,62.7291,-0.52622][0,1,0][0.974661,0.481693,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.115044,0.386558,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.0789834,0.386558,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-10.5,34.7672,-6.52622][0,-1,0][0.10062,0.350498,0][-6.5,34.7672,-10.5262][0,-2,0][0.115044,0.364922,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.115044,0.386558,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.0789834,0.350498,0][-6.5,34.7672,-10.5262][0,-2,0][0.115044,0.364922,0][-0.500001,62.7291,-10.5262][0,3,0][0.173796,0.898952,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.862891,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.862891,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.862891,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.274627,0.898952,0][-0.500001,62.7291,-10.5262][0,3,0][0.173796,0.898952,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.836818,0][-10.5,62.7291,-0.526219][0,2,0][0.173796,0.800758,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.274627,0.800758,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.274627,0.800758,0][-0.499999,34.7672,-0.526221][-3.8147e-007,-1,-3.8147e-007][0.274627,0.836818,0][-0.5,62.7291,-0.52622][0,1,0][0.173796,0.836818,0][-10.5,62.7291,-0.526219][0,2,0][0.891397,0.782648,0][-10.5,62.7291,-6.52622][0,2,0][0.891397,0.770241,0][-10.5,34.7672,-6.52622][0,-1,0][0.949219,0.770241,0][-10.5,34.7672,-6.52622][0,-1,0][0.949219,0.770241,0][-10.5,34.7672,-0.52622][-3.8147e-007,-3,-3.8147e-007][0.949219,0.782648,0][-10.5,62.7291,-0.526219][0,2,0][0.891397,0.782648,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-0.500001,62.7291,-10.5262][0,3,0][0.673073,0.841503,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.730895,0.841503,0][-0.5,34.7672,-10.5262][-3.8147e-007,-2,-3.8147e-007][0.730895,0.841503,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-10.5,62.7291,-6.52622][0,2,0][0.673073,0.862182,0][-6.5,62.7291,-10.5262][0,1,0][0.673073,0.85391,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-6.5,34.7672,-10.5262][0,-2,0][0.730895,0.85391,0][-10.5,34.7672,-6.52622][0,-1,0][0.730895,0.862182,0][-10.5,62.7291,-6.52622][0,2,0][0.673073,0.862182,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-10.5,62.7291,6.47378][0,1,0][0.116099,0.870112,0][-6.5,62.7291,10.4738][0,2,0][0.130523,0.855688,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-6.5,62.7291,10.4738][0,2,0][0.130523,0.855688,0][-0.5,62.7291,10.4738][0,2,0][0.15216,0.855688,0][-10.5,62.7291,0.473781][0,3,0][0.116099,0.891748,0][-0.5,62.7291,10.4738][0,2,0][0.15216,0.855688,0][-0.5,62.7291,0.47378][0,1,0][0.15216,0.891748,0][-10.5,34.7672,0.473779][0,-2,0][0.0910585,0.65008,0][-0.5,34.7672,0.473778][0,-1,0][0.0910585,0.68614,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-6.5,34.7672,10.4738][0,-1,0][0.0549982,0.664504,0][-10.5,34.7672,6.47378][0,-2,0][0.0694223,0.65008,0][-10.5,34.7672,0.473779][0,-2,0][0.0910585,0.65008,0][-0.5,34.7672,10.4738][0,-3,0][0.0549982,0.68614,0][-10.5,34.7672,6.47378][0,-2,0][0.0694223,0.65008,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.79092,0][-0.5,62.7291,0.47378][0,1,0][0.745847,0.770241,0][-0.5,34.7672,0.473778][0,-1,0][0.80367,0.770241,0][-0.5,34.7672,0.473778][0,-1,0][0.80367,0.770241,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.79092,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.79092,0][-0.5,62.7291,0.47378][0,1,0][0.907326,0.530694,0][-0.5,62.7291,10.4738][0,2,0][0.907326,0.510015,0][-0.5,34.7672,10.4738][0,-3,0][0.965149,0.510015,0][-0.5,34.7672,10.4738][0,-3,0][0.965149,0.510015,0][-0.5,34.7672,0.473778][0,-1,0][0.965149,0.530694,0][-0.5,62.7291,0.47378][0,1,0][0.907326,0.530694,0][-0.5,62.7291,10.4738][0,2,0][0.673073,0.826551,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-0.5,34.7672,10.4738][0,-3,0][0.730895,0.826551,0][-0.5,62.7291,10.4738][0,2,0][0.673073,0.826551,0][-10.5,62.7291,6.47378][0,1,0][0.745847,0.85391,0][-10.5,62.7291,0.473781][0,3,0][0.745847,0.841503,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.841503,0][-10.5,34.7672,0.473779][0,-2,0][0.80367,0.841503,0][-10.5,34.7672,6.47378][0,-2,0][0.80367,0.85391,0][-10.5,62.7291,6.47378][0,1,0][0.745847,0.85391,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][-10.5,62.7291,6.47378][0,1,0][0.673073,0.805872,0][-10.5,34.7672,6.47378][0,-2,0][0.730895,0.805872,0][-10.5,34.7672,6.47378][0,-2,0][0.730895,0.805872,0][-6.5,34.7672,10.4738][0,-1,0][0.730895,0.814143,0][-6.5,62.7291,10.4738][0,2,0][0.673073,0.814143,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][10.5,62.7291,-6.52622][0,1,0][0.993279,0.688282,0][6.5,62.7291,-10.5262][0,2,0][0.985008,0.696554,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][6.5,62.7291,-10.5262][0,2,0][0.985008,0.696554,0][0.499999,62.7291,-10.5262][0,2,0][0.9726,0.696554,0][10.5,62.7291,-0.526221][0,3,0][0.993279,0.675875,0][0.499999,62.7291,-10.5262][0,2,0][0.9726,0.696554,0][0.5,62.7291,-0.52622][0,1,0][0.9726,0.675875,0][10.5,34.7672,-0.526219][0,-2,0][0.693752,0.977346,0][0.5,34.7672,-0.526219][0,-1,0][0.673073,0.977346,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][6.5,34.7672,-10.5262][0,-1,0][0.68548,0.956667,0][10.5,34.7672,-6.52622][0,-2,0][0.693752,0.964939,0][10.5,34.7672,-0.526219][0,-2,0][0.693752,0.977346,0][0.499999,34.7672,-10.5262][0,-3,0][0.673073,0.956667,0][10.5,34.7672,-6.52622][0,-2,0][0.693752,0.964939,0][10.5,62.7291,-0.526221][0,3,0][0.745847,0.826551,0][0.5,62.7291,-0.52622][0,1,0][0.745847,0.805872,0][0.5,34.7672,-0.526219][0,-1,0][0.80367,0.805872,0][0.5,34.7672,-0.526219][0,-1,0][0.80367,0.805872,0][10.5,34.7672,-0.526219][0,-2,0][0.80367,0.826551,0][10.5,62.7291,-0.526221][0,3,0][0.745847,0.826551,0][0.5,62.7291,-0.52622][0,1,0][0.818622,0.79092,0][0.499999,62.7291,-10.5262][0,2,0][0.818622,0.770241,0][0.499999,34.7672,-10.5262][0,-3,0][0.876445,0.770241,0][0.499999,34.7672,-10.5262][0,-3,0][0.876445,0.770241,0][0.5,34.7672,-0.526219][0,-1,0][0.876445,0.79092,0][0.5,62.7291,-0.52622][0,1,0][0.818622,0.79092,0][0.499999,62.7291,-10.5262][0,2,0][0.173796,0.961085,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][0.499999,34.7672,-10.5262][0,-3,0][0.274627,0.961085,0][0.499999,62.7291,-10.5262][0,2,0][0.173796,0.961085,0][10.5,62.7291,-6.52622][0,1,0][0.791003,0.889541,0][10.5,62.7291,-0.526221][0,3,0][0.791003,0.877134,0][10.5,34.7672,-0.526219][0,-2,0][0.848826,0.877134,0][10.5,34.7672,-0.526219][0,-2,0][0.848826,0.877134,0][10.5,34.7672,-6.52622][0,-2,0][0.848826,0.889541,0][10.5,62.7291,-6.52622][0,1,0][0.791003,0.889541,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][10.5,62.7291,-6.52622][0,1,0][0.173796,0.925025,0][10.5,34.7672,-6.52622][0,-2,0][0.274627,0.925025,0][10.5,34.7672,-6.52622][0,-2,0][0.274627,0.925025,0][6.5,34.7672,-10.5262][0,-1,0][0.274627,0.939449,0][6.5,62.7291,-10.5262][0,2,0][0.173796,0.939449,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.732184,0.921553,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.73487,0.9169,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.73487,0.9169,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.740243,0.9169,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.740243,0.9169,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.742929,0.921553,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.742929,0.921553,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.740243,0.926206,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.740243,0.926206,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.73487,0.926206,0][0.0241239,-5.42764,-37.483][0,1,0][0.737556,0.921553,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.73487,0.926206,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.732184,0.921553,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0724651,0.323222,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0712099,0.328631,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0724651,0.323222,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.0176486,0.620136,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.0120958,0.619411,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0120958,0.610042,0][-2.22588,-6.92764,-38.782][-0.771955,0.553385,-0.312812][0.0120958,0.610042,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.0176486,0.609318,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.0176486,0.620136,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.117355,0.916712,0][-2.22588,-6.92764,-36.1839][-0.65688,0.553385,0.512126][0.117355,0.916712,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.116099,0.911303,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.134837,0.911303,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.133582,0.916712,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][0.0241239,-6.92764,-34.8849][0.115074,0.553385,0.824938][0.125468,0.916712,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.125468,0.911303,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.134837,0.911303,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0176486,0.726758,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0120958,0.726034,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.0120958,0.716665,0][2.27412,-6.92764,-36.1839][0.771954,0.553385,0.312812][0.0120958,0.716665,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.0176486,0.71594,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0176486,0.726758,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][0.0241238,-6.92764,-40.081][-0.115074,0.553385,-0.824938][0.0630964,0.328631,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0549828,0.328631,0][2.27412,-6.92764,-38.782][0.65688,0.553385,-0.512126][0.0549828,0.328631,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.0537276,0.323222,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.0630964,0.323222,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.989406,0.510015,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.992508,0.515388,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.983202,0.510015,0][-2.57395,-8.42764,-38.983][-1.94823,0.678134,-1.68722][0.989406,0.510015,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.980101,0.515388,0][-2.57395,-8.42764,-35.983][-2.43529,0.678134,0.84361][0.983202,0.510015,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.983202,0.52076,0][0.0241239,-8.42764,-34.483][-0.487058,0.678134,2.53083][0.980101,0.515388,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.989406,0.52076,0][2.6222,-8.42764,-35.983][1.94823,0.678134,1.68722][0.983202,0.52076,0][0.0241239,-8.42764,-37.483][0,-1,0][0.986304,0.515388,0][0.0241237,-8.42764,-40.483][0.487058,0.678134,-2.53083][0.992508,0.515388,0][2.6222,-8.42764,-38.983][2.43529,0.678134,-0.84361][0.989406,0.52076,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.154241,0.461993,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.150079,0.461993,0][0.432864,-4.29584,-37.5262][0,0,-2][0.150079,0.458871,0][0.432864,-4.29584,-37.5262][0,0,-2][0.150079,0.458871,0][0.432864,-5.45015,-37.5262][0,0,-1][0.154241,0.458871,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.154241,0.461993,0][-0.432864,-5.45015,37.4738][0,0,2][0.072831,0.558412,0][0.432864,-5.45015,37.4738][0,0,1][0.072831,0.561534,0][0.432864,-4.29585,37.4738][0,0,2][0.0686686,0.561534,0][0.432864,-4.29585,37.4738][0,0,2][0.0686686,0.561534,0][-0.432864,-4.29585,37.4738][0,0,1][0.0686686,0.558412,0][-0.432864,-5.45015,37.4738][0,0,2][0.072831,0.558412,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.946096,0.904493,0][0.432864,-5.45015,-37.5262][0,0,-1][0.946096,0.906283,0][0.432864,-5.45015,37.4738][0,0,1][0.791003,0.906283,0][0.432864,-5.45015,37.4738][0,0,1][0.791003,0.906283,0][-0.432864,-5.45015,37.4738][0,0,2][0.791003,0.904493,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.946096,0.904493,0][0.432864,-5.45015,-37.5262][0,0,-1][0.905155,0.730474,0][0.432864,-4.29584,-37.5262][0,0,-2][0.905155,0.732861,0][0.432864,-4.29585,37.4738][0,0,2][0.750062,0.732861,0][0.432864,-4.29585,37.4738][0,0,2][0.750062,0.732861,0][0.432864,-5.45015,37.4738][0,0,1][0.750062,0.730474,0][0.432864,-5.45015,-37.5262][0,0,-1][0.905155,0.730474,0][0.432864,-4.29584,-37.5262][0,0,-2][0.818622,0.856894,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.855103,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.855103,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.855103,0][0.432864,-4.29585,37.4738][0,0,2][0.973715,0.856894,0][0.432864,-4.29584,-37.5262][0,0,-2][0.818622,0.856894,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.84389,0][-0.432864,-5.45015,-37.5262][0,0,-2][0.818622,0.841503,0][-0.432864,-5.45015,37.4738][0,0,2][0.973715,0.841503,0][-0.432864,-5.45015,37.4738][0,0,2][0.973715,0.841503,0][-0.432864,-4.29585,37.4738][0,0,1][0.973715,0.84389,0][-0.432864,-4.29584,-37.5262][0,0,-1][0.818622,0.84389,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.322945,0.765846,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.327629,0.757732,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.327629,0.757732,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.336998,0.757732,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.336998,0.757732,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.341682,0.765846,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.341682,0.765846,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.336998,0.773959,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.336998,0.773959,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.327629,0.773959,0][0.0241239,-4.33514,37.483][0,-1,0][0.332314,0.765846,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.327629,0.773959,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.322945,0.765846,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.0814802,0.325242,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.0868892,0.326497,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.0814802,0.325242,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.126718,0.71594,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.132271,0.716665,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.132271,0.726034,0][-2.22588,-2.83514,38.782][-0.771954,-0.553385,0.312812][0.132271,0.726034,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.126718,0.726758,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.126718,0.71594,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.683098,0.98856,0][-2.22588,-2.83514,36.1839][-0.65688,-0.553385,-0.512126][0.683098,0.98856,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.683818,0.991662,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.673073,0.991662,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.673792,0.98856,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][0.0241239,-2.83514,34.8849][0.115074,-0.553385,-0.824938][0.678445,0.98856,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.678445,0.991662,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.673073,0.991662,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.126718,0.609318,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.132271,0.610042,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.132271,0.619411,0][2.27412,-2.83514,36.1839][0.771954,-0.553385,-0.312812][0.132271,0.619411,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.126718,0.620136,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.126718,0.609318,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][0.0241238,-2.83514,40.081][-0.115074,-0.553385,0.824938][0.0868892,0.334611,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.0868892,0.342724,0][2.27412,-2.83514,38.782][0.65688,-0.553385,0.512126][0.0868892,0.342724,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.0814802,0.34398,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.0814802,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.109635,0.325242,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.115044,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.0988165,0.325242,0][-2.57395,-1.33514,38.983][-1.94823,-0.678134,1.68722][0.109635,0.325242,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.0934075,0.334611,0][-2.57395,-1.33514,35.983][-2.43529,-0.678134,-0.84361][0.0988165,0.325242,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.0988165,0.34398,0][0.0241239,-1.33514,34.483][-0.487058,-0.678134,-2.53083][0.0934075,0.334611,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.109635,0.34398,0][2.6222,-1.33514,35.983][1.94823,-0.678134,-1.68722][0.0988165,0.34398,0][0.0241239,-1.33514,37.483][0,1,0][0.104226,0.334611,0][0.0241237,-1.33514,40.483][0.487058,-0.678134,2.53083][0.115044,0.334611,0][2.6222,-1.33514,38.983][2.43529,-0.678134,0.84361][0.109635,0.34398,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.664661,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.664661,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.664661,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.755408,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.759027,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.759027,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.759027,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.673073,0.755408,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.900543,0.755408,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.640911,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][-55,5.89145,1.48932][0,0.866025,2.5][0.673073,0.640911,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.900543,0.640911,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.900543,0.647179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.673073,0.647179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.673073,0.647179,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.673073,0.644045,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.900543,0.644045,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.750062,0.71926,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.750062,0.715641,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.977532,0.715641,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.977532,0.715641,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.977532,0.71926,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.750062,0.71926,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.900543,0.658393,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.900543,0.661527,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.673073,0.661527,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.673073,0.658393,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.900543,0.658393,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,6.76643,-0.0262176][4.72169e-007,2.59808,-0.5][0.704966,0.959801,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,4.14143,1.48933][-2.58537e-007,-0.866025,2.5][0.710394,0.956667,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,5.89143,1.48933][2.13429e-007,1.73205,2][0.706775,0.956667,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][55,4.14143,-1.54176][-2.13429e-007,-1.73205,-2][0.710394,0.962935,0][55,5.89143,-1.54176][2.58537e-007,0.866026,-2.5][0.706775,0.962935,0][55,3.26643,-0.0262176][-4.72169e-007,-2.59808,0.5][0.712203,0.959801,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,5.89145,1.48932][0,0.866025,2.5][0.987936,0.554314,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,5.89145,-1.54177][3.8723e-007,1.73205,-2][0.987936,0.548046,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,6.76645,-0.0262224][4.2882e-007,2.59808,0.5][0.986127,0.551179,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0][-55,3.26645,-0.0262224][-4.2882e-007,-2.59808,-0.5][0.993364,0.551179,0][-55,4.14145,1.48932][-3.8723e-007,-1.73205,2][0.991555,0.554314,0][-55,4.14145,-1.54177][0,-0.866025,-2.5][0.991555,0.548046,0] \ No newline at end of file diff --git a/charcustom/hats/fonts/gravityhammer.mesh b/charcustom/hats/fonts/gravityhammer.mesh new file mode 100644 index 0000000..1c8ffb5 --- /dev/null +++ b/charcustom/hats/fonts/gravityhammer.mesh @@ -0,0 +1,3 @@ +version 1.00 +742 +[-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-18.068,-0.261087,196.726][0,0,1][0.249919,1.01365,0.00969362][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-7.94258,-0.261086,196.726][0,0,1][0.33283,1.01365,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.249919,1.01365,0.00969362][-10.2872,-10.6183,196.726][0,0,2.90711][0.313631,1.01365,0.394225][-8.93077,-5.54456,196.726][0,0,1][0.324739,1.01365,0.205854][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-18.6075,-6.31897,196.726][0,0,1][0.245501,1.01365,0.234605][-19.1471,-12.3769,196.726][0,0,1.28602][0.241083,1.01365,0.459517][-10.2872,-10.6183,196.726][0,0,2.90711][0.313631,1.01365,0.394225][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][-8.93077,-5.54456,196.726][0,0,1][0.339215,0.987103,0.205854][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-0.479803,-4.10715,196.726][0,0,2.9569][0.390857,0.987103,0.152487][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][0.845119,-4.24743,178.208][0.862279,-0.503901,0.0505711][0.398953,0.947228,0.157695][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-3.56894,-7.53364,196.726][0,0,2.73489][0.37198,0.987103,0.279702][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-10.2872,-10.6183,196.726][0,0,2.90711][0.330926,0.987103,0.394225][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-8.85762,-10.0448,177.906][0.261239,-0.96526,-0.00530796][0.339662,0.946578,0.372936][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-2.20895,-7.51699,178.158][0.554114,-0.83166,0.0360434][0.38029,0.94712,0.279084][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-39.3094,-6.34944,196.726][0,0,1][0.156131,0.9854,0.235736][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-28.6899,-6.86418,196.726][0,0,1][0.218471,0.987103,0.254847][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-18.6075,-6.31897,196.726][0,0,1][0.280082,0.987103,0.234605][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-19.1471,-12.3769,196.726][0,0,1.28602][0.276785,0.987103,0.459517][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-28.8765,-13.4673,196.726][0,0,2.93219][0.217331,0.987103,0.5][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-26.9428,-12.4238,177.889][0.00474482,-0.998733,-0.0501022][0.229147,0.946542,0.46126][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-17.5517,-11.4572,177.688][0.133049,-0.990607,-0.031542][0.286534,0.946109,0.425374][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-39.37,-12.4378,196.726][0,0,2.78172][0.155761,0.9854,0.461779][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-50.124,-7.14095,196.726][0,0,3.04178][0.0943028,0.976886,0.265123][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-47.0943,-6.91776,177.934][-0.478492,-0.873277,-0.0918301][0.106005,0.94664,0.256836][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-36.9609,-11.4801,178.024][-0.252322,-0.964725,-0.0750932][0.167928,0.946832,0.426222][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-41.3235,-6.3882,141.798][-0.466561,-0.879794,-0.0910082][0.14127,0.86883,0.237175][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-44.0941,-6.77517,159.372][-0.469262,-0.878269,-0.0918508][0.124339,0.90667,0.251542][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-33.2464,-4.56658,93.6424][-1.31708,-0.315291,-2.66756][0.190627,0.765139,0.169544][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-35.9144,-5.32421,109.048][-0.433938,-0.893034,-0.119116][0.174323,0.798312,0.197673][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-38.5824,-6.08184,124.454][-0.467134,-0.877226,-0.110729][0.15802,0.831484,0.225801][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-18.7477,-3.78376,89.9743][-0.0293687,-0.0614735,-0.997677][0.279226,0.757241,0.140481][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-26.0549,-3.39235,90.5259][-0.231135,-0.0570954,-0.971245][0.234573,0.758429,0.125949][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-25.7018,-6.52361,90.6152][-0.480532,-0.0867485,-1.14154][0.23673,0.758621,0.242203][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-19.3635,-6.52361,90.1876][-0.122068,-0.205052,-3.13498][0.275462,0.7577,0.242203][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-20.3808,-8.52669,107.718][-0.00864676,-0.995098,-0.0985196][0.269246,0.795447,0.316572][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-27.8947,-8.04895,107.639][-0.206117,-0.972104,-0.111937][0.22333,0.795278,0.298834][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-3.51334,-3.90407,90.3349][0.0209065,-0.0142638,-0.99968][0.37232,0.758017,0.144948][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-10.2242,-4.17517,90.2406][0.0265043,-0.0206759,-0.999435][0.331311,0.757814,0.155012][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-10.2273,-6.52361,90.2811][0.0415396,-0.046731,-1.57076][0.331292,0.757902,0.242203][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][-4.09888,-6.40672,90.3681][0.0495243,-0.0504426,-2.91367][0.368741,0.758089,0.237863][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][-5.00484,-7.97802,107.906][0.144211,-0.987278,-0.0669706][0.363205,0.795852,0.296201][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-11.7127,-8.29161,108.008][0.0376173,-0.995851,-0.0828555][0.322215,0.796072,0.307844][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.411024,0.758413,0.108108][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.10493,-4.84752,90.469][0.0552537,0.0203799,-2.17052][0.406652,0.758306,0.179975][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.420962,0.74947,0.108108][2.82037,-2.91183,90.5187][0.096951,0.0332245,-2.72174][0.420962,0.74947,0.108108][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.419572,0.749595,0.00969431][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.417564,0.832831,0.00969409][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.418274,0.834136,0.167548][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.418898,0.791784,0.1439][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.418568,0.791213,0.0096942][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.417564,0.832831,0.00969409][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.56826,-3.87585,107.53][0.960086,-0.279682,0.00367022][0.409483,0.795043,0.1439][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][0.838753,-6.49196,107.703][0.570914,-0.820293,-0.0342975][0.398914,0.795415,0.241028][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][2.17004,-4.3877,159.689][0.924962,-0.379265,0.0245375][0.40705,0.907354,0.162903][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][2.2431,-4.61379,142.116][0.931487,-0.363626,0.0103925][0.407496,0.869514,0.171297][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][2.49206,-4.5128,124.557][0.940919,-0.338529,0.00829666][0.409017,0.831706,0.167548][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-5.72283,-8.97958,125.315][0.166613,-0.985297,-0.0378254][0.358818,0.833338,0.333386][-0.0756245,-7.48224,124.968][0.526506,-0.85009,-0.0117587][0.393327,0.83259,0.277794][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-6.6749,-9.46796,142.33][0.181332,-0.983373,-0.00984273][0.353,0.869975,0.351518][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.638195,-7.81836,142.263][0.524524,-0.851361,0.00764241][0.389889,0.869831,0.290273][-0.848963,-7.50033,159.589][0.528198,-0.848631,0.0288437][0.388601,0.907138,0.278466][-7.46206,-9.54442,159.492][0.217052,-0.976147,0.00512151][0.34819,0.906928,0.354357][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-34.6108,-10.6836,159.779][-0.236289,-0.969216,-0.0692001][0.182289,0.907547,0.396651][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-32.3197,-10.0483,141.992][-0.235546,-0.969895,-0.0618205][0.19629,0.869248,0.373066][-30.0876,-9.57428,124.663][-0.228831,-0.969624,-0.0863983][0.20993,0.831935,0.355465][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-21.3861,-10.2871,125.104][0.00662745,-0.997824,-0.0655976][0.263103,0.832883,0.38193][-13.1741,-9.57428,125.447][0.0787764,-0.995461,-0.0534097][0.313285,0.833623,0.355465][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-23.2092,-10.9127,142.215][-0.00530885,-0.999283,-0.0374865][0.251962,0.869729,0.405155][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-14.5883,-10.2138,142.323][0.0874176,-0.995856,-0.0250763][0.304643,0.869961,0.379208][-16.0244,-10.6836,159.462][0.112043,-0.993511,-0.0195362][0.295867,0.906864,0.396651][-25.0728,-11.534,159.687][0.00160454,-0.999189,-0.040236][0.240574,0.907349,0.428223][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-8.93077,5.54458,196.726][0,0,1][0.339215,0.987103,-0.205854][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][0.845118,4.24744,178.208][0.862279,0.503902,0.050571][0.398953,0.947228,-0.157695][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-0.479803,4.10716,196.726][0,0,2.9569][0.390857,0.987103,-0.152487][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-3.56894,7.53366,196.726][0,0,2.73489][0.37198,0.987103,-0.279702][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-2.20895,7.517,178.158][0.554114,0.83166,0.0360433][0.38029,0.94712,-0.279084][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-8.85763,10.0449,177.906][0.261239,0.96526,-0.00530809][0.339662,0.946578,-0.372936][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-10.2872,10.6183,196.726][0,0,2.90711][0.330926,0.987103,-0.394225][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-18.6075,6.31899,196.726][0,0,1][0.280082,0.987103,-0.234605][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.6899,6.86419,196.726][0,0,1][0.218471,0.987103,-0.254847][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-39.3094,6.34945,196.726][0,0,1][0.156131,0.9854,-0.235736][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-19.1471,12.3769,196.726][0,0,1.28602][0.276785,0.987103,-0.459517][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-17.5517,11.4573,177.688][0.133049,0.990608,-0.0315421][0.286534,0.946109,-0.425374][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-26.9429,12.4238,177.889][0.00474452,0.998733,-0.0501023][0.229147,0.946542,-0.46126][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-28.8765,13.4673,196.726][0,0,2.93219][0.217331,0.987103,-0.5][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-39.37,12.4378,196.726][0,0,2.78172][0.155761,0.9854,-0.461779][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-36.9609,11.4801,178.024][-0.252323,0.964725,-0.0750933][0.167928,0.946832,-0.426222][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-47.0943,6.91776,177.934][-0.478493,0.873277,-0.0918302][0.106005,0.94664,-0.256836][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-50.124,7.14096,196.726][0,0,3.04178][0.0943028,0.976886,-0.265123][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-44.0941,6.77517,159.372][-0.469262,0.878269,-0.0918509][0.124339,0.90667,-0.251542][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-41.3235,6.3882,141.798][-0.466562,0.879794,-0.0910083][0.14127,0.86883,-0.237175][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-38.5824,6.08184,124.454][-0.467134,0.877226,-0.110729][0.15802,0.831484,-0.2258][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-35.9144,5.3242,109.048][-0.433938,0.893034,-0.119116][0.174323,0.798312,-0.197671][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-33.2464,4.56657,93.6424][-1.31708,0.315286,-2.66756][0.190627,0.765139,-0.169543][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-26.0549,3.39235,90.5259][-0.231135,0.0570952,-0.971245][0.234573,0.758429,-0.125947][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.7477,3.78376,89.9743][-0.0293687,0.0614735,-0.997677][0.279226,0.757241,-0.140479][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-25.7018,6.52361,90.6152][-0.480532,0.0867485,-1.14154][0.23673,0.758621,-0.242202][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-27.8947,8.04895,107.639][-0.206118,0.972104,-0.111937][0.22333,0.795278,-0.298833][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-20.3808,8.5267,107.718][-0.00864703,0.995098,-0.0985197][0.269246,0.795447,-0.31657][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-19.3635,6.52361,90.1876][-0.122068,0.205052,-3.13498][0.275462,0.7577,-0.242202][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2242,4.17517,90.2406][0.0265043,0.0206759,-0.999435][0.331311,0.757814,-0.155011][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.51334,3.90408,90.3349][0.0209065,0.0142638,-0.99968][0.37232,0.758017,-0.144946][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-10.2273,6.52361,90.2811][0.0415396,0.0467311,-1.57076][0.331292,0.757902,-0.242202][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-11.7127,8.29162,108.008][0.0376171,0.995851,-0.0828556][0.322215,0.796072,-0.307843][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][-5.00484,7.97803,107.906][0.14421,0.987278,-0.0669707][0.363205,0.795852,-0.2962][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][-4.09888,6.40672,90.3681][0.0495243,0.0504426,-2.91367][0.368741,0.758089,-0.237862][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.10493,4.84753,90.469][0.0552537,-0.02038,-2.17052][0.406652,0.758306,-0.179974][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][0.838751,6.49197,107.703][0.570914,0.820293,-0.0342976][0.398914,0.795415,-0.241027][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.56826,3.87586,107.53][0.960086,0.279682,0.00367014][0.409483,0.795043,-0.143899][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.82036,2.91184,90.5187][0.0969511,-0.0332245,-2.72174][0.411024,0.758413,-0.108107][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][2.49206,4.51281,124.557][0.940919,0.338529,0.00829663][0.409017,0.831706,-0.167547][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2431,4.6138,142.116][0.931487,0.363626,0.0103925][0.407496,0.869514,-0.171296][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.17004,4.38772,159.689][0.924962,0.379266,0.0245375][0.40705,0.907354,-0.162902][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-7.46206,9.54443,159.492][0.217052,0.976147,0.00512141][0.34819,0.906928,-0.354356][-0.848967,7.50034,159.589][0.528197,0.848632,0.0288436][0.388601,0.907138,-0.278465][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-0.638197,7.81837,142.263][0.524524,0.851361,0.00764236][0.389889,0.869831,-0.290273][-0.0756264,7.48225,124.968][0.526506,0.85009,-0.0117587][0.393327,0.83259,-0.277793][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-6.6749,9.46797,142.33][0.181331,0.983373,-0.0098428][0.353,0.869975,-0.351517][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-5.72283,8.97959,125.315][0.166613,0.985297,-0.0378254][0.358818,0.833338,-0.333385][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-34.6108,10.6836,159.779][-0.236289,0.969215,-0.0692002][0.182289,0.907547,-0.396651][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-25.0728,11.534,159.687][0.0016042,0.999189,-0.0402362][0.240574,0.907349,-0.428222][-16.0244,10.6836,159.462][0.112043,0.993511,-0.0195364][0.295867,0.906864,-0.396651][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-14.5883,10.2138,142.323][0.0874173,0.995856,-0.0250763][0.304643,0.869961,-0.379207][-13.1741,9.57429,125.447][0.0787762,0.995461,-0.0534097][0.313285,0.833623,-0.355464][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-23.2092,10.9127,142.215][-0.00530899,0.999283,-0.0374865][0.251962,0.869729,-0.405155][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-21.3861,10.2871,125.104][0.00662714,0.997824,-0.0655977][0.263103,0.832883,-0.38193][-30.0876,9.57428,124.663][-0.228832,0.969624,-0.0863984][0.20993,0.831935,-0.355464][-32.3197,10.0483,141.992][-0.235546,0.969895,-0.0618205][0.19629,0.869248,-0.373065][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-50.1552,0.26871,196.726][0,0,1][0.0941122,0.976886,-0.00997638][-50.1552,-0.268709,196.726][0,0,1][0.0941122,0.976886,0.00997639][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-39.2488,0.261095,196.726][0,0,1][0.156502,0.9854,-0.0096936][-39.2488,-0.26109,196.726][0,0,1][0.156502,0.9854,0.00969362][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-28.5034,0.261097,196.726][0,0,1][0.219611,0.987103,-0.0096936][-28.5034,-0.261089,196.726][0,0,1][0.219611,0.987103,0.00969362][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-18.068,0.261099,196.726][0,0,1][0.283379,0.987103,-0.0096936][-18.068,-0.261087,196.726][0,0,1][0.283379,0.987103,0.00969362][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][-7.94258,0.2611,196.726][0,0,1][0.345253,0.987103,-0.0096936][-7.94258,-0.261086,196.726][0,0,1][0.345253,0.987103,0.00969362][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][1.8728,0.261102,196.726][0,0,1.02182][0.405233,0.987103,-0.0096936][1.8728,-0.261084,196.726][0,0,1.02182][0.405233,0.987103,0.00969362][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.00801,0.261101,178.27][0.99106,0.13175,0.0210345][0.406059,0.947363,-0.00969348][2.00801,-0.261085,178.27][0.99106,-0.13175,0.0210345][0.406059,0.947363,0.00969374][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.14323,0.261099,159.814][0.999968,-0.00313777,0.00732589][0.406886,0.907623,-0.00969333][2.14323,-0.261086,159.814][0.999968,0.00313779,0.00732592][0.406886,0.907623,0.00969386][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.2743,0.261099,141.923][0.999973,0.00297516,0.00668974][0.407687,0.8691,-0.00969325][2.2743,-0.261087,141.923][0.999973,-0.00297174,0.00668972][0.407687,0.8691,0.00969397][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.40537,0.261098,124.033][0.999923,-0.00936079,0.00818649][0.408488,0.830577,-0.00969313][2.40537,-0.261087,124.033][0.999923,0.00936097,0.00818648][0.408488,0.830577,0.00969409][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.52795,0.261097,107.301][0.999931,-0.00723385,0.00924894][0.409237,0.794549,-0.00969299][2.52795,-0.261088,107.301][0.999931,0.00723399,0.00924899][0.409237,0.794549,0.0096942][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][2.65053,0.261097,90.5691][0.0760357,-0.0358762,-1.63165][0.409986,0.758522,-0.00969291][2.65053,-0.261089,90.5691][0.0760358,0.0358764,-1.63165][0.409986,0.758522,0.00969431][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-3.36942,0.261096,90.2885][0.028952,0.00452508,-0.999571][0.373199,0.757918,-0.00969291][-3.36942,-0.26109,90.2885][0.0289521,-0.00452497,-0.999571][0.373199,0.757918,0.00969431][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-10.2192,0.261095,90.173][0.0349269,0.00834308,-0.999355][0.331342,0.757669,-0.00969291][-10.2192,-0.261091,90.173][0.0349268,-0.00834295,-0.999355][0.331342,0.757669,0.00969431][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-18.1308,0.261094,89.7475][-0.0161184,0.0264534,-0.99952][0.282995,0.756753,-0.00969291][-18.1308,-0.261092,89.7475][-0.0161184,-0.0264534,-0.99952][0.282995,0.756753,0.00969431][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-26.408,0.261093,90.4366][-0.236072,0.0280944,-0.971329][0.232415,0.758236,-0.00969291][-26.408,-0.261093,90.4366][-0.236072,-0.0280943,-0.971329][0.232415,0.758236,0.00969431][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-34.354,0.261092,93.6649][-0.47712,0.0583948,-0.876896][0.183859,0.765188,-0.00969293][-34.354,-0.261094,93.6649][-0.47712,-0.0583831,-0.876897][0.183859,0.765188,0.00969428][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-42.201,0.261091,98.9574][-0.219344,0.0547278,-0.325211][0.135907,0.776584,-0.00969297][-42.201,-0.261095,98.9574][-0.219344,-0.0547286,-0.325211][0.135907,0.776584,0.00969425][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-44.6518,0.261091,111.662][-1.62216,2.66926,-0.335618][0.120931,0.803939,-0.00969305][-44.6518,-0.261095,111.662][-1.62216,-2.66926,-0.335618][0.120931,0.803939,0.00969417][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-47.1025,0.261091,124.366][-1.73805,2.59173,-0.36207][0.105955,0.831294,-0.00969313][-47.1025,-0.261095,124.366][-1.73805,-2.59173,-0.362069][0.105955,0.831294,0.00969409][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-50.4033,0.261091,141.476][-1.74263,2.59284,-0.331694][0.0857848,0.868137,-0.00969324][-50.4033,-0.261095,141.476][-1.74263,-2.59284,-0.331693][0.0857848,0.868137,0.00969397][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-53.7041,0.261092,158.587][-1.72652,2.60385,-0.321054][0.0656144,0.90498,-0.00969336][-53.7041,-0.261094,158.587][-1.72652,-2.60385,-0.321054][0.0656144,0.90498,0.00969386][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][-61.0616,-0.322026,196.726][0,0,0.562366][0.0368312,0.963264,0.0119558][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-61.0616,0.322024,196.726][0,0,0.562366][0.0368312,0.963264,-0.0119558][-57.3828,0.291558,177.656][-1.67959,2.63565,-0.319189][0.0431343,0.946041,-0.0108246][-57.3828,-0.29156,177.656][-1.67959,-2.63565,-0.319188][0.0431344,0.946041,0.0108249][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][15.8286,5.12303,197.901][2.37004,1.9887,1.89216e-007][0.528919,0.96189,-0.190203][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][10.8666,7.98785,197.901][0.537244,3.04686,-1.82504e-007][0.488288,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][5.22402,6.99291,197.901][-1.54693,2.67936,-4.74128e-007][0.442083,0.96189,-0.259626][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][7.9576,7.98785,197.901][-0.537244,3.04686,-3.51183e-007][0.464467,0.96189,-0.296565][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][1.54108,2.60375,197.901][-2.90728,1.05816,-5.24276e-007][0.411926,0.96189,-0.0966693][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][1.54108,-3.12589,197.901][-2.90728,-1.05816,-3.53988e-007][0.411926,0.96189,0.116055][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][1.03594,-0.261067,197.901][-3.09386,0,-4.66761e-007][0.407789,0.96189,0.00969296][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][5.22402,-7.51504,197.901][-1.54693,-2.67937,0][0.442083,0.96189,0.279012][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][10.8666,-8.50998,197.901][0.537243,-3.04686,3.51385e-007][0.488288,0.96189,0.315951][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][7.9576,-8.50998,197.901][-0.537245,-3.04686,1.8654e-007][0.464467,0.96189,0.315951][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][2.99559,-5.64516,197.901][-2.37004,-1.9887,-1.89216e-007][0.423836,0.96189,0.209589][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][2.99559,5.12303,197.901][-2.37004,1.9887,-5.3065e-007][0.423836,0.96189,-0.190203][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][15.8286,-5.64517,197.901][2.37004,-1.9887,5.23666e-007][0.528919,0.96189,0.209589][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][13.6002,-7.51504,197.901][1.54693,-2.67937,4.70372e-007][0.510671,0.96189,0.279012][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][13.6002,6.99291,197.901][1.54693,2.67937,0][0.510671,0.96189,-0.259626][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.7883,-0.261066,197.901][3.09387,2.563e-006,4.58887e-007][0.544965,0.96189,0.009693][17.2831,2.60375,197.901][2.90728,1.05816,3.53988e-007][0.540829,0.96189,-0.0966693][17.2831,-3.12589,197.901][2.90728,-1.05816,5.09405e-007][0.540829,0.96189,0.116055][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.7883,-0.261098,-174.984][4.6408,0.272767,4.52133e-007][0.543527,0.0890694,0.00969603][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][17.2832,-3.12592,-174.984][4.45421,-1.33093,1.73051e-006][0.539391,0.0890694,0.116059][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][15.8287,-5.6452,-174.984][3.73039,-2.7741,1.55178e-006][0.52748,0.0890694,0.209592][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][13.6002,-7.51508,-174.984][2.55662,-3.88267,5.76381e-007][0.509233,0.0890694,0.279015][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][10.8667,-8.51002,-174.984][1.07449,-4.52293,3.47388e-007][0.486849,0.0890694,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.95766,-8.51002,-174.984][-0.537245,-4.61766,1.86299e-007][0.463029,0.0890694,0.315954][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][5.22408,-7.51507,-174.984][-2.08418,-4.15543,0][0.440645,0.0890694,0.279015][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][2.99565,-5.6452,-174.984][-3.37973,-3.192,-1.89748e-007][0.422398,0.0890694,0.209592][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.54114,-3.12592,-174.984][-4.26763,-1.84356,-2.78217e-007][0.410488,0.0890694,0.116058][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.036,-0.261099,-174.984][-4.6408,-0.272768,-4.50508e-007][0.406351,0.0890694,0.00969598][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][1.54114,2.60372,-174.984][-4.45421,1.33093,-1.1474e-006][0.410488,0.0890694,-0.0966663][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][2.99565,5.123,-174.984][-3.73039,2.7741,-5.26043e-007][0.422398,0.0890694,-0.1902][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][5.22408,6.99288,-174.984][-2.55662,3.88266,-4.66764e-007][0.440645,0.0890694,-0.259623][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.95766,7.98782,-174.984][-1.07449,4.52293,-3.51424e-007][0.463029,0.0890694,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][10.8667,7.98782,-174.984][0.537243,4.61766,-1.86502e-007][0.486849,0.0890694,-0.296562][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][13.6002,6.99288,-174.984][2.08418,4.15543,-1.36376e-007][0.509233,0.0890694,-0.259623][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][17.2832,2.60372,-174.984][3.93529,1.23943,3.37993e-007][0.539391,0.0890694,-0.0966663][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][15.8287,5.123,-174.984][3.37973,3.192,1.89748e-007][0.52748,0.0890694,-0.1902][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][17.7883,-0.261099,-179.984][3.09386,2.5034e-006,0][0.568941,0.0781351,0.00969607][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][17.2832,-3.12592,-179.984][2.90728,-1.05816,1.53253e-006][0.563274,0.0781351,0.116059][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.8287,-5.6452,-179.984][2.37004,-1.9887,1.85797e-006][0.546957,0.0781351,0.209592][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][13.6002,-7.51508,-179.984][1.54693,-2.67937,6.91183e-007][0.521958,0.0781351,0.279015][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][10.8667,-8.51002,-179.984][0.537243,-3.04686,0][0.491292,0.0781351,0.315954][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.95766,-8.51002,-179.984][-0.537245,-3.04686,0][0.458659,0.0781351,0.315954][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][5.22408,-7.51507,-179.984][-1.54693,-2.67937,0][0.427993,0.0781351,0.279015][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][2.99565,-5.6452,-179.984][-2.37004,-1.9887,0][0.402994,0.0781351,0.209592][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][1.54114,-3.12592,-179.984][-2.90728,-1.05816,0][0.386677,0.0781351,0.116058][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][1.036,-0.2611,-179.984][-3.09386,0,0][0.38101,0.0781351,0.00969602][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][1.54114,2.60372,-179.984][-2.90728,1.05816,-8.16721e-007][0.386677,0.0781351,-0.0966662][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][2.99565,5.123,-179.984][-2.37004,1.9887,-3.94629e-007][0.402994,0.0781351,-0.1902][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][5.22408,6.99288,-179.984][-1.54693,2.67937,0][0.427993,0.0781351,-0.259623][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.95766,7.98782,-179.984][-0.537244,3.04686,0][0.458659,0.0781351,-0.296562][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][10.8667,7.98782,-179.984][0.537244,3.04686,0][0.491293,0.0781351,-0.296562][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][13.6002,6.99288,-179.984][1.54693,2.67937,-1.61977e-007][0.521958,0.0781351,-0.259623][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][17.2832,2.60372,-179.984][2.90728,1.05816,0][0.563274,0.0781351,-0.0966662][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][15.8287,5.123,-179.984][2.37004,1.9887,0][0.546957,0.0781351,-0.1902][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.6915,-0.261098,-180.984][0.914192,6.4075e-007,2.65408][0.60151,0.0754736,0.00969607][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][20.0113,-4.11888,-180.984][0.859059,-0.312672,2.65408][0.593879,0.0754736,0.152924][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][18.0527,-7.51134,-180.984][0.700311,-0.587632,2.65408][0.571906,0.0754736,0.278876][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][15.0518,-10.0293,-180.984][0.457095,-0.791713,2.65408][0.538243,0.0754736,0.372361][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.3708,-11.3691,-180.984][0.158747,-0.900303,2.65408][0.496948,0.0754736,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.45352,-11.3691,-180.984][-0.158748,-0.900303,2.65408][0.453003,0.0754736,0.422104][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][3.77248,-10.0293,-180.984][-0.457096,-0.791713,2.65408][0.411709,0.0754736,0.372361][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][0.771669,-7.51134,-180.984][-0.700311,-0.587631,2.65408][0.378045,0.0754736,0.278876][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.18697,-4.11887,-180.984][-0.859058,-0.312672,2.65408][0.356072,0.0754736,0.152924][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.8672,-0.2611,-180.984][-0.914192,0,2.65408][0.348442,0.0754736,0.00969601][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][-1.18697,3.59667,-180.984][-0.859059,0.312672,2.65408][0.356072,0.0754736,-0.133532][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][0.771669,6.98914,-180.984][-0.700312,0.587631,2.65408][0.378045,0.0754736,-0.259484][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][3.77248,9.50712,-180.984][-0.457096,0.791713,2.65408][0.411709,0.0754736,-0.352969][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.45352,10.8469,-180.984][-0.158748,0.900303,2.65408][0.453003,0.0754736,-0.402712][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.3708,10.8469,-180.984][0.158748,0.900303,2.65408][0.496948,0.0754736,-0.402712][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][15.0518,9.50712,-180.984][0.457096,0.791713,2.65408][0.538243,0.0754736,-0.352969][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][20.0113,3.59667,-180.984][0.85906,0.312672,2.65408][0.593879,0.0754736,-0.133532][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.0527,6.98914,-180.984][0.700311,0.587631,2.65408][0.571906,0.0754736,-0.259484][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][20.6915,-0.261098,-185.984][3.09386,5.06639e-007,2.35668e-006][0.60151,0.0621662,0.00969611][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][20.0113,-4.11888,-185.984][2.90728,-1.05816,7.78053e-007][0.593879,0.0621662,0.152924][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][18.0527,-7.51134,-185.984][2.37004,-1.9887,1.89657e-007][0.571906,0.0621662,0.278876][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][15.0518,-10.0293,-185.984][1.54693,-2.67937,4.44844e-007][0.538243,0.0621662,0.372361][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][11.3708,-11.3691,-185.984][0.537243,-3.04686,9.99861e-007][0.496948,0.0621662,0.422104][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.45352,-11.3691,-185.984][-0.537244,-3.04686,7.53991e-007][0.453003,0.0621662,0.422104][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][3.77248,-10.0293,-185.984][-1.54693,-2.67937,8.59672e-007][0.411709,0.0621662,0.372361][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.771669,-7.51134,-185.984][-2.37004,-1.9887,2.64819e-007][0.378045,0.0621662,0.278876][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-1.18697,-4.11887,-185.984][-2.90728,-1.05816,-7.51955e-007][0.356072,0.0621662,0.152924][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][-1.8672,-0.2611,-185.984][-3.09386,2.98023e-007,-3.36694e-007][0.348442,0.0621662,0.00969604][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][-1.18697,3.59667,-185.984][-2.90728,1.05816,0][0.356073,0.0621662,-0.133532][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][0.771671,6.98914,-185.984][-2.37004,1.9887,-6.47927e-007][0.378045,0.0621662,-0.259484][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][3.77248,9.50712,-185.984][-1.54693,2.67937,-1.34739e-006][0.411709,0.0621662,-0.352969][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.45352,10.8469,-185.984][-0.537244,3.04686,-8.61803e-007][0.453003,0.0621662,-0.402711][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][11.3708,10.8469,-185.984][0.537243,3.04686,-9.89437e-007][0.496948,0.0621662,-0.402711][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][15.0518,9.50712,-185.984][1.54693,2.67937,-6.73473e-007][0.538243,0.0621662,-0.352969][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][20.0113,3.59667,-185.984][2.90728,1.05816,1.5184e-006][0.593879,0.0621662,-0.133532][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][18.0527,6.98914,-185.984][2.37004,1.9887,-2.55862e-007][0.571906,0.0621662,-0.259484][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][19.0881,-0.261099,-186.984][1.81111,-9.53674e-007,-2.90401][0.583522,0.0595047,0.00969612][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][18.5046,-3.57047,-186.984][1.70189,-0.619436,-2.90401][0.576976,0.0595047,0.132563][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][16.8244,-6.48067,-186.984][1.38739,-1.16416,-2.90401][0.558127,0.0595047,0.24061][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][14.2501,-8.6407,-186.984][0.905556,-1.56847,-2.90401][0.529249,0.0595047,0.320806][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][11.0924,-9.79003,-186.984][0.314495,-1.7836,-2.90401][0.493824,0.0595047,0.363477][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][7.73195,-9.79003,-186.984][-0.314498,-1.7836,-2.90401][0.456127,0.0595047,0.363477][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][4.5742,-8.6407,-186.984][-0.905558,-1.56847,-2.90401][0.420702,0.0595047,0.320806][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.99998,-6.48066,-186.984][-1.38739,-1.16416,-2.90401][0.391824,0.0595047,0.24061][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.319773,-3.57046,-186.984][-1.70189,-0.619437,-2.90401][0.372975,0.0595047,0.132563][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][-0.26376,-0.2611,-186.984][-1.81111,0,-2.90401][0.366429,0.0595047,0.00969606][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][0.319771,3.04826,-186.984][-1.70189,0.619437,-2.90401][0.372975,0.0595047,-0.113171][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][1.99998,5.95846,-186.984][-1.38739,1.16416,-2.90401][0.391824,0.0595047,-0.221218][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][4.5742,8.1185,-186.984][-0.905557,1.56847,-2.90401][0.420702,0.0595047,-0.301414][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.73195,9.26783,-186.984][-0.314497,1.7836,-2.90401][0.456127,0.0595047,-0.344085][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][11.0924,9.26783,-186.984][0.314495,1.7836,-2.90401][0.493824,0.0595047,-0.344085][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][14.2501,8.1185,-186.984][0.905557,1.56847,-2.90401][0.529249,0.0595047,-0.301414][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][18.5046,3.04826,-186.984][1.70189,0.619438,-2.90401][0.576976,0.0595047,-0.113171][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][16.8244,5.95847,-186.984][1.38739,1.16416,-2.90401][0.558127,0.0595047,-0.221218][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][9.37272,-0.0333973,-201.016][0,0,-1][0.470276,0.0142325,0.00124225][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][7.20932,-3.78053,-199.857][-0.26545,-0.459773,-0.847435][0.446007,0.0180277,0.140362][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][5.62559,-2.19681,-199.857][-0.459773,-0.26545,-0.847435][0.42824,0.0180277,0.0815632][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][5.04591,-0.0333987,-199.857][-0.5309,0,-0.847435][0.421737,0.0180277,0.00124227][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][5.62559,2.13001,-199.857][-0.459773,0.26545,-0.847435][0.42824,0.0180277,-0.0790786][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][7.20932,3.71373,-199.857][-0.26545,0.459773,-0.847435][0.446007,0.0180277,-0.137878][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,4.29342,-199.857][-5.9605e-007,0.5309,-0.847435][0.470276,0.0180277,-0.1594][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][11.5361,3.71373,-199.857][0.26545,0.459773,-0.847435][0.494546,0.0180277,-0.137878][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][13.1199,2.13001,-199.857][0.459772,0.26545,-0.847435][0.512312,0.0180277,-0.0790788][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][13.6995,-0.0333933,-199.857][0.5309,4.23576e-007,-0.847435][0.518815,0.0180277,0.00124212][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][13.1199,-2.1968,-199.857][0.459773,-0.265449,-0.847435][0.512312,0.0180277,0.081563][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-4.36021,-199.857][1.92765e-007,-0.5309,-0.847435][0.470276,0.0180277,0.161884][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][11.5361,-3.78053,-199.857][0.26545,-0.459773,-0.847435][0.494546,0.0180277,0.140362][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][5.62559,-6.52362,-196.69][-0.437992,-0.758624,-0.482342][0.42824,0.0283967,0.242205][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][2.88251,-3.78053,-196.69][-0.758624,-0.437992,-0.482342][0.397468,0.0283967,0.140362][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][1.87846,-0.0333996,-196.69][-0.875983,-3.55758e-007,-0.482341][0.386204,0.0283967,0.00124227][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][2.8825,3.71373,-196.69][-0.758624,0.437991,-0.482341][0.397468,0.0283967,-0.137878][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][5.62559,6.45682,-196.69][-0.437992,0.758623,-0.482342][0.42824,0.0283967,-0.239721][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,7.46086,-196.69][-5.85954e-007,0.875983,-0.482342][0.470276,0.0283967,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][13.1199,6.45683,-196.69][0.437991,0.758624,-0.482341][0.512312,0.0283967,-0.239721][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][15.8629,3.71374,-196.69][0.758624,0.437992,-0.482341][0.543085,0.0283967,-0.137878][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][16.867,-0.0333904,-196.69][0.875983,6.80126e-007,-0.482341][0.554348,0.0283967,0.00124201][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][15.8629,-3.78052,-196.69][0.758624,-0.437991,-0.482342][0.543085,0.0283967,0.140362][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][9.37272,-7.52766,-196.69][3.97612e-007,-0.875983,-0.482341][0.470276,0.0283967,0.279482][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][13.1199,-6.52361,-196.69][0.437992,-0.758623,-0.482342][0.512312,0.0283967,0.242205][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][17.4211,-3.17613,-191.739][0.90324,-0.287606,-0.318496][0.560565,0.0446027,0.117922][16.867,-4.3602,-192.363][0.820344,-0.561025,0.110844][0.554348,0.042561,0.161884][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][17.9351,-0.261099,-191.739][0.995879,-0.0445983,-0.0789685][0.566331,0.0446027,0.00969616][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][17.4211,2.65392,-191.739][0.794956,0.336045,-0.505092][0.560565,0.0446027,-0.09853][18.0264,-0.0333893,-192.363][0.997599,0.0101198,-0.0685147][0.567354,0.042561,0.00124196][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][15.9411,5.21735,-191.739][0.725164,0.66953,-0.160833][0.543962,0.0446027,-0.193702][16.867,4.29342,-192.363][0.875492,0.436132,0.208095][0.554348,0.042561,-0.1594][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][13.6736,7.11999,-191.739][0.52865,0.843749,0.0928282][0.518525,0.0446027,-0.264342][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][10.8922,8.13237,-191.739][0.103899,0.880924,-0.461713][0.487321,0.0446027,-0.301929][13.6995,7.46087,-192.363][0.497329,0.86378,0.0809193][0.518815,0.042561,-0.276998][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][7.93217,8.13237,-191.739][-0.224884,0.969533,-0.0971222][0.454116,0.0446027,-0.301929][9.37272,8.62023,-192.363][0.0534679,0.961753,0.26865][0.470276,0.042561,-0.320041][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][5.15069,7.11999,-191.739][-0.485121,0.864879,0.129004][0.422913,0.0446027,-0.264342][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][2.88321,5.21735,-191.739][-0.699334,0.523933,-0.486237][0.397476,0.0446027,-0.193702][5.04591,7.46086,-192.363][-0.481261,0.869935,0.107707][0.421737,0.042561,-0.276998][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][1.40322,2.65392,-191.739][-0.935479,0.283156,-0.211429][0.380873,0.0446027,-0.09853][1.87846,4.29341,-192.363][-0.804479,0.533633,0.260864][0.386204,0.042561,-0.1594][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.889219,-0.261101,-191.739][-0.999993,-0.00381835,-0.000235588][0.375107,0.0446027,0.00969611][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.40322,-3.17612,-191.739][-0.776,-0.32503,-0.540536][0.380873,0.0446027,0.117922][0.719097,-0.0334,-192.363][-0.999335,0.0363081,0.00337864][0.373198,0.042561,0.00124226][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][2.88321,-5.73955,-191.739][-0.686802,-0.634081,-0.355308][0.397475,0.0446027,0.213095][1.87846,-4.36021,-192.363][-0.885408,-0.425288,0.187573][0.386204,0.042561,0.161884][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][5.15069,-7.64219,-191.739][-0.496069,-0.851523,-0.169778][0.422913,0.0446027,0.283734][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][7.93217,-8.65457,-191.739][-0.108559,-0.816817,-0.56659][0.454116,0.0446027,0.321321][5.04591,-7.52766,-192.363][-0.520662,-0.836765,-0.169517][0.421737,0.042561,0.279482][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][10.8922,-8.65457,-191.739][0.195476,-0.897448,-0.395445][0.487321,0.0446027,0.321321][9.37272,-8.68702,-192.363][-0.0832652,-0.99176,0.0973597][0.470276,0.042561,0.322526][13.6995,-7.52765,-192.363][0.483456,-0.849481,-0.21131][0.518815,0.042561,0.279482][15.9411,-5.73955,-191.739][0.660738,-0.506964,-0.553546][0.543962,0.0446027,0.213095][13.6736,-7.64219,-191.739][0.466061,-0.86072,-0.204813][0.518525,0.0446027,0.283734][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-13.4238,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.249681,0.18352,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,-3.92711,-146.6][2.86557e-007,-1.5708,-2.13711e-007][0.247744,0.19243,0.145804][-13.4238,3.69465,-146.6][-2.86557e-007,1.5708,0][0.247744,0.19243,-0.13717][-13.4238,3.69465,-153.609][-2.86557e-007,1.5708,0][0.249681,0.18352,-0.137169][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][2.92751,-4.88503,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,0.181369][-9.50302,-3.92711,-153.609][2.86557e-007,-1.5708,-2.13711e-007][0.294188,0.166856,0.145804][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][2.92751,4.65258,-154.49][1.5708,3.14131e-007,0][0.405275,0.151488,-0.172734][-9.50302,3.69465,-153.609][-2.86557e-007,1.5708,0][0.294188,0.166856,-0.137169][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][-9.50302,-3.92711,-146.6][5.6644e-007,-3.10501,-1.24427e-007][0.28915,0.181579,0.145804][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,-4.88503,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,0.181369][2.92751,4.65258,-145.719][1.5708,3.14131e-007,0][0.405663,0.181445,-0.172734][-9.50302,3.69465,-146.6][-5.63021e-007,3.10501,0][0.28915,0.181579,-0.13717][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][14.8923,1.09239,24.3109][0.0407401,1.64924,0][0.549213,0.598665,-0.040556][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.873,-3.71079,24.3109][0.114098,-1.64564,-4.33234e-007][0.549028,0.598665,0.137772][14.873,-3.71078,201.016][0.107369,-1.54866,0][0.548177,0.959031,0.137771][14.8923,1.0924,201.016][0.0383349,1.55187,0][0.548361,0.959031,-0.0405571][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][32.9605,-2.45677,200.682][0.18446,-2.65716,-6.16784e-005][0.722247,0.965148,0.0912131][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][32.9816,0.645548,200.682][0.0657461,2.66153,-1.90377e-007][0.722449,0.965148,-0.0239668][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][61.0615,-0.503112,185.423][0.130803,-1.88233,-0.000183407][0.991362,0.933441,0.0186798][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][54.419,-0.960434,148.912][0.0443278,-0.637872,-7.49435e-005][0.927749,0.857574,0.0356589][54.4857,0.114345,148.912][0.0157351,0.636987,0][0.928387,0.857574,-0.00424444][61.0579,-0.0480025,185.423][0.046682,1.88978,0][0.991327,0.933441,0.00178291][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][33.1357,0.641735,22.8672][0.0955819,3.86934,-1.39726e-007][0.701788,0.577956,-0.0238244][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][33.1142,-2.44606,22.8672][0.268666,-3.86134,-3.74044e-007][0.701582,0.577956,0.0908163][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][50.0786,-1.2631,128.322][0.193154,-2.76996,1.6256e-007][0.886182,0.814789,0.046896][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][50.1361,0.221789,128.322][0.0685699,2.77584,0][0.886732,0.814789,-0.00823345][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][42.7485,-1.77424,37.4723][0.22898,-3.28372,1.60026e-007][0.798275,0.6238,0.0658736][42.7905,0.40324,37.4723][0.0812875,3.29069,-1.77334e-007][0.798676,0.6238,-0.0149698][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][39.0187,0.49641,16.7118][0.0639174,2.5875,0][0.758128,0.565166,-0.0184288][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.8033,0.353516,15.2061][0.0708794,2.86934,0][0.813526,0.562037,-0.0131236][44.7571,-1.63418,15.2061][0.19966,-2.86326,0][0.813083,0.562037,0.0606736][38.9848,-2.0367,16.7118][0.180048,-2.58201,-5.53506e-007][0.757803,0.565166,0.0756179][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][51.7255,0.182522,15.3226][0.027973,1.1324,0][0.879817,0.562279,-0.00677501][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][46.2818,0.316995,26.4567][0.0812321,3.28843,-1.45476e-007][0.827684,0.585415,-0.0117677][46.2325,-1.5313,26.4568][0.228823,-3.28147,1.48492e-007][0.827212,0.585415,0.056854][51.6647,-1.1525,15.3226][0.0787971,-1.13,0][0.879234,0.562279,0.0427906][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][40.4909,0.460045,74.3298][0.0804806,3.25801,-1.33265e-007][0.794364,0.7026,-0.017079][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][40.4539,-1.93425,74.3298][0.22671,-3.25111,0][0.794009,0.7026,0.071814][39.4913,-2.00137,58.109][0.233587,-3.34979,1.95438e-007][0.784791,0.668895,0.0743062][39.5263,0.483872,58.109][0.0829234,3.3569,-1.37972e-007][0.785126,0.668895,-0.0179635][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][45.9028,0.326362,166.283][0.103947,4.20799,-2.18786e-007][0.85726,0.900311,-0.0121161][45.8543,-1.55766,166.283][0.292305,-4.19911,-0.000886574][0.856796,0.900311,0.0578321][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][43.2914,0.39087,164.296][0.0904133,3.6601,0][0.832252,0.896181,-0.0145111][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][44.0042,0.373262,166.367][0.109273,4.42358,-2.12421e-007][0.839078,0.900485,-0.0138574][43.9597,-1.68977,166.367][0.307536,-4.41422,-0.000345704][0.838652,0.900485,0.062737][43.2484,-1.73937,164.296][0.254685,-3.65235,1.53445e-007][0.83184,0.896181,0.0645785][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-18.525,3.69465,-71.0646][0,0,1][0.245114,0.380313,-0.13717][-15.9643,3.69465,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,-0.13717][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-18.525,-3.92711,-71.0646][0,0,1][0.245114,0.380313,0.145803][-15.9643,-3.92711,-77.1826][-1.56975,-1.96415e-007,-0.0574487][0.250968,0.351919,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803][-12.0435,3.69465,-77.1826][-1.95487e-007,1.60738,0][0.288499,0.351919,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-17.2764,3.69465,-71.0646][0,0,1][0.255338,0.380313,-0.13717][-17.2764,-3.92711,-71.0646][0,0,1][0.255338,0.380313,0.145803][-12.0435,-3.92711,-77.1826][1.9892e-007,-1.60738,0][0.288499,0.351919,0.145803] \ No newline at end of file diff --git a/charcustom/hats/fonts/teapot.mesh b/charcustom/hats/fonts/teapot.mesh new file mode 100644 index 0000000..a2ca30b --- /dev/null +++ b/charcustom/hats/fonts/teapot.mesh @@ -0,0 +1,3 @@ +version 1.00 +1024 +[2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.27475,0.4125,-0.538719][-0.42824,-0.255972,0.866654][0.496156,0.289641,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.496031,0.279556,0][0.270917,0.449414,-0.52971][-0.362921,0.242936,0.899594][0.496942,0.282077,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.710925,0.01,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.275364,0.461719,-0.54016][-0.0162795,0.985002,0.171776][0.665284,0.01,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.284409,0.449414,-0.561421][0.265066,0.747027,-0.609664][0.667138,0.0125212,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.420139,0.289641,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.497,0.4125,-0.389969][-0.727058,-0.256209,0.63698][0.450617,0.289641,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.421984,0.282077,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.419843,0.279556,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.419843,0.279556,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.45039,0.279556,0][0.490067,0.449414,-0.383035][-0.679895,0.242859,0.691927][0.452038,0.282077,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.414709,0.328161,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.411356,0.330682,0][0.49811,0.461718,-0.391078][-0.0810019,0.985081,0.151838][0.414709,0.328161,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.745828,0.0125212,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.514473,0.449414,-0.407442][0.478003,0.747475,-0.461296][0.714278,0.0125212,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.256506,0.791725,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.64575,0.4125,-0.167719][-0.915918,-0.255656,0.309409][0.256506,0.791725,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.266591,0.791851,0][0.636742,0.449414,-0.163886][-0.893156,0.242454,0.378799][0.264069,0.79094,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.647192,0.461718,-0.168332][-0.132499,0.985099,0.109658][0.460349,0.328161,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.668453,0.449414,-0.177378][0.618798,0.747005,-0.243046][0.458496,0.330682,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.256506,0.675243,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.700001,0.4125,0.107031][-0.960836,-0.271213,-0.0569096][0.256506,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.264069,0.678278,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.266591,0.678521,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.266591,0.678521,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.266591,0.735429,0][0.690235,0.449414,0.107031][-0.972221,0.233884,0.00920377][0.264069,0.735429,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.701563,0.461718,0.107031][-0.163566,0.985239,0.0505076][0.516771,0.328161,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.72461,0.449414,0.107031][0.665673,0.746151,0.0117379][0.516771,0.330682,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.910479,0.544371,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.645751,0.4125,0.400765][-0.837541,-0.362667,-0.408654][0.910479,0.544371,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.910775,0.534287,0][0.636742,0.449414,0.385957][-0.916036,0.152477,-0.370984][0.908633,0.536808,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.619265,0.328161,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.62224,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.62224,0.330682,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.575107,0.330682,0][0.647192,0.461718,0.384767][-0.194991,0.980501,-0.0244072][0.573679,0.328161,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.0620542,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.668453,0.449414,0.391737][0.613716,0.742967,0.267119][0.0620542,0.330682,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.497001,0.4125,0.620906][-0.595663,-0.386395,-0.70419][0.880001,0.544371,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.880228,0.534287,0][0.490067,0.449414,0.604217][-0.702532,0.0906177,-0.705859][0.87858,0.536808,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.0969573,0.328161,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.49811,0.461718,0.60725][-0.208507,0.969627,-0.127862][0.0969573,0.328161,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.514473,0.449414,0.621767][0.468393,0.738576,0.484885][0.0936045,0.330682,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.274751,0.4125,0.759109][-0.28391,-0.309681,-0.907465][0.834462,0.544371,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.834587,0.534287,0][0.270918,0.449414,0.746442][-0.369963,0.15557,-0.915929][0.833676,0.536808,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][0.275364,0.461719,0.755014][-0.136578,0.973514,-0.183346][0.142598,0.328161,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.28441,0.449414,0.775582][0.246027,0.740672,0.6252][0.140744,0.330682,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.28648e-007,0.4125,0.807031][0.070564,-0.255115,-0.964333][0.778166,0.544371,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.778166,0.534287,0][9.41917e-007,0.449414,0.797266][-0.000322285,0.227695,-0.973733][0.778166,0.536808,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][9.53468e-007,0.461719,0.808594][-0.0513984,0.982501,-0.179027][0.19902,0.328161,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.58718e-007,0.449414,0.831641][-0.0116822,0.744838,0.667143][0.19902,0.330682,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.274749,0.4125,0.752781][0.42824,-0.255971,-0.866654][0.72187,0.544371,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.721744,0.534287,0][-0.270916,0.449414,0.743773][0.362922,0.242935,-0.899594][0.722655,0.536808,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.301082,0.328161,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.275362,0.461719,0.754223][0.0162803,0.985002,-0.171776][0.255441,0.328161,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.284408,0.449414,0.775484][-0.265066,0.747027,0.609664][0.257295,0.330682,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.645852,0.544371,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.496999,0.4125,0.604032][0.727058,-0.256209,-0.636981][0.676331,0.544371,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.647698,0.536808,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.645557,0.534287,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.645557,0.534287,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.676103,0.534287,0][-0.490066,0.449414,0.597098][0.679895,0.242858,-0.691927][0.677751,0.536808,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.25367,0.597717,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.250317,0.600238,0][-0.498109,0.461719,0.605141][0.0810029,0.985081,-0.151838][0.25367,0.597717,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.335985,0.330682,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.514472,0.449414,0.621504][-0.478003,0.747475,0.461296][0.304435,0.330682,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.451062,0.791725,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.645749,0.4125,0.381782][0.915918,-0.255656,-0.309409][0.451062,0.791725,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.461147,0.791851,0][-0.636741,0.449414,0.377949][0.893156,0.242454,-0.378799][0.458626,0.79094,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.647191,0.461719,0.382395][0.132499,0.985099,-0.109658][0.29931,0.597717,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.668451,0.449414,0.391441][-0.618798,0.747005,0.243047][0.297456,0.600238,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.451062,0.679133,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.699999,0.4125,0.107032][0.964791,-0.255236,0.0634998][0.451062,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.458626,0.679919,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.461147,0.679008,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.461147,0.679008,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.461147,0.735429,0][-0.690234,0.449414,0.107032][0.970156,0.242334,-0.00843237][0.458626,0.735429,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.701562,0.461719,0.107032][0.164812,0.985051,-0.0501126][0.355732,0.597717,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.724609,0.449414,0.107032][-0.665535,0.746274,-0.0117615][0.355732,0.600238,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.684766,0.289641,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.645749,0.4125,-0.167718][0.866654,-0.255972,0.42824][0.684766,0.289641,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.685061,0.279556,0][-0.636741,0.449414,-0.163885][0.899594,0.242936,0.362921][0.68292,0.282077,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.457794,0.597717,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.461147,0.600238,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.461147,0.600238,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.414007,0.600238,0][-0.647191,0.461719,-0.168332][0.171776,0.985002,0.0162797][0.412153,0.597717,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.471897,0.0125212,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.668452,0.449414,-0.177377][-0.609664,0.747027,-0.265066][0.471897,0.0125212,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.497,0.4125,-0.389968][0.63698,-0.256209,0.727058][0.654287,0.289641,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.654514,0.279556,0][-0.490066,0.449414,-0.383035][0.691927,0.242859,0.679895][0.652866,0.282077,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.506801,0.01,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.498109,0.461719,-0.391078][0.151838,0.985081,0.0810019][0.506801,0.01,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.514472,0.449414,-0.407441][-0.461296,0.747475,-0.478003][0.503448,0.0125212,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][2.44381e-007,0.4125,-0.592969][-0.0634999,-0.255236,0.964791][0.552452,0.289641,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.27475,0.4125,-0.538719][0.309409,-0.255656,0.915918][0.608748,0.289641,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][2.67196e-007,0.449414,-0.583203][0.00843247,0.242334,0.970156][0.552452,0.282077,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.552452,0.279556,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.608874,0.279556,0][-0.270917,0.449414,-0.52971][0.378799,0.242454,0.893156][0.607963,0.282077,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][2.67674e-007,0.461719,-0.594531][0.050113,0.985051,0.164812][0.608863,0.01,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][-0.275363,0.461719,-0.54016][0.109658,0.985099,0.132498][0.552441,0.01,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][2.50395e-007,0.449414,-0.617578][0.0117618,0.746274,-0.665535][0.608863,0.0125212,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.284409,0.449414,-0.561421][-0.243046,0.747005,-0.618799][0.550588,0.0125212,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.294375,0.4125,-0.584844][0.334021,0.497847,-0.800361][0.66918,0.0200849,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.330405,0.216211,-0.669526][0.350176,0.404552,-0.844816][0.676562,0.0603043,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.361836,0.0234373,-0.743398][0.360724,0.338796,-0.868963][0.683003,0.0998035,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.384067,-0.162305,-0.795649][0.375089,0.207976,-0.903357][0.687558,0.137862,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.750627,0.0200849,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.5325,0.4125,-0.425469][0.614869,0.498464,-0.611121][0.717972,0.0200849,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.767979,0.0603043,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.597676,0.216211,-0.490645][0.646888,0.405104,-0.646085][0.731326,0.0603043,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.783115,0.0998035,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.654531,0.0234371,-0.5475][0.665911,0.339299,-0.664409][0.742976,0.0998035,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.793821,0.137862,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.694746,-0.162305,-0.587715][0.69241,0.208342,-0.690769][0.751216,0.137862,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.691875,0.4125,-0.187344][0.802376,0.497896,-0.329078][0.456454,0.338246,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.776558,0.216211,-0.223374][0.845246,0.40457,-0.349117][0.449071,0.378465,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.85043,0.023437,-0.254805][0.869764,0.338843,-0.358742][0.442631,0.417965,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][0.902681,-0.162305,-0.277036][0.90423,0.208078,-0.372924][0.438076,0.456023,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.577088,0.338246,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.750001,0.4125,0.107031][0.867772,0.496955,0.00262816][0.516771,0.338246,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.584471,0.378465,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.841797,0.216211,0.107031][0.914881,0.403724,0.000562399][0.516771,0.378465,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.590911,0.417965,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.921875,0.023437,0.107031][0.941117,0.33808,0.00105146][0.516771,0.417965,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.595466,0.456023,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.978516,-0.162305,0.107031][0.978226,0.207541,0.00114786][0.516771,0.456023,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.691876,0.4125,0.401406][0.800678,0.497242,0.334162][0.0572549,0.338246,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.776558,0.216211,0.437436][0.844817,0.404552,0.350176][0.0399035,0.378465,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.85043,0.023437,0.468867][0.868963,0.338795,0.360724][0.0247672,0.417965,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.902681,-0.162305,0.491098][0.903357,0.207976,0.375089][0.014061,0.456023,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.532501,0.4125,0.639531][0.611723,0.497022,0.615438][0.0899107,0.338246,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.597677,0.216211,0.704707][0.646086,0.405104,0.646888][0.0765562,0.378465,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.654532,0.0234371,0.761562][0.664409,0.339299,0.665911][0.0649066,0.417965,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.694747,-0.162305,0.801777][0.690769,0.208342,0.69241][0.0566666,0.456023,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.294376,0.4125,0.798906][0.329317,0.496814,0.802948][0.138702,0.338246,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.330406,0.216211,0.883589][0.349117,0.40457,0.845246][0.13132,0.378465,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][0.361837,0.0234373,0.957461][0.358742,0.338843,0.869764][0.12488,0.417965,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.384068,-0.162305,1.00971][0.372924,0.208079,0.904229][0.120324,0.456023,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][9.53086e-007,0.4125,0.857031][-0.00264142,0.496692,0.867923][0.19902,0.338246,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][9.02014e-007,0.216211,0.948828][-0.000562258,0.403725,0.91488][0.19902,0.378465,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][8.46933e-007,0.0234374,1.02891][-0.00105128,0.33808,0.941117][0.19902,0.417965,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][7.83833e-007,-0.162305,1.08555][-0.00114769,0.207541,0.978226][0.19902,0.456023,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.294374,0.4125,0.798906][-0.334021,0.497848,0.800361][0.259337,0.338246,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.330404,0.216211,0.883589][-0.350176,0.404552,0.844816][0.266719,0.378465,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.361835,0.0234376,0.957461][-0.360723,0.338796,0.868962][0.273159,0.417965,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.384067,-0.162305,1.00971][-0.375089,0.207976,0.903357][0.277715,0.456023,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.340784,0.338246,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.532499,0.4125,0.639532][-0.614869,0.498465,0.611121][0.308128,0.338246,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.358136,0.378465,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.597675,0.216211,0.704707][-0.646888,0.405105,0.646085][0.321483,0.378465,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.373272,0.417965,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.654531,0.0234377,0.761563][-0.66591,0.3393,0.664409][0.333132,0.417965,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.383978,0.456023,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.694745,-0.162304,0.801778][-0.69241,0.208342,0.690769][0.341372,0.456023,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.691874,0.4125,0.401407][-0.802376,0.497896,0.329078][0.295415,0.607802,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.776557,0.216211,0.437437][-0.845246,0.40457,0.349117][0.288032,0.648021,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.850429,0.0234379,0.468868][-0.869764,0.338843,0.358742][0.281592,0.687521,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-0.90268,-0.162304,0.491099][-0.904229,0.208079,0.372924][0.277037,0.725579,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.416049,0.607802,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.749999,0.4125,0.107032][-0.867772,0.496955,-0.00262815][0.355732,0.607802,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.423431,0.648021,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.841796,0.216211,0.107032][-0.91488,0.403725,-0.000562422][0.355732,0.648021,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.429872,0.687521,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.921875,0.0234379,0.107032][-0.941117,0.338081,-0.00105146][0.355732,0.687521,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.434427,0.725579,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.978515,-0.162304,0.107032][-0.978226,0.207542,-0.00114785][0.355732,0.725579,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.691875,0.4125,-0.187343][-0.800361,0.497848,-0.334021][0.467098,0.0200849,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.776557,0.216211,-0.223374][-0.844816,0.404552,-0.350176][0.449747,0.0603043,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.850429,0.0234379,-0.254804][-0.868962,0.338796,-0.360724][0.43461,0.0998035,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.902681,-0.162304,-0.277036][-0.903357,0.207977,-0.375089][0.423904,0.137862,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.5325,0.4125,-0.425468][-0.611121,0.498465,-0.614869][0.499754,0.0200849,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.597676,0.216211,-0.490644][-0.646085,0.405105,-0.646888][0.486399,0.0603043,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.654531,0.0234377,-0.5475][-0.664409,0.3393,-0.66591][0.47475,0.0998035,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.694746,-0.162304,-0.587714][-0.690769,0.208342,-0.69241][0.46651,0.137862,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][2.19943e-007,0.4125,-0.642969][0.00262834,0.496955,-0.867772][0.608863,0.0200849,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.294375,0.4125,-0.584844][-0.329078,0.497896,-0.802376][0.548546,0.0200849,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][0,0.216211,-0.734766][0.000562586,0.403725,-0.91488][0.608863,0.0603043,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.330405,0.216211,-0.669526][-0.349117,0.40457,-0.845246][0.541163,0.0603043,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][0,0.0234374,-0.814844][0.00105162,0.33808,-0.941117][0.608863,0.0998035,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-0.361836,0.0234376,-0.743398][-0.358742,0.338843,-0.869764][0.534723,0.0998035,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-1.7269e-007,-0.162305,-0.871484][0.00114796,0.207541,-0.978226][0.608863,0.137862,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.384068,-0.162305,-0.795649][-0.372924,0.208079,-0.904229][0.530168,0.137862,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.3925,-0.3375,-0.815469][0.38071,-0.0681312,-0.922181][0.689286,0.173759,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.377168,-0.485742,-0.779434][0.336541,-0.446624,-0.829015][0.686144,0.204134,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.343437,-0.595313,-0.700156][0.272365,-0.690737,-0.66985][0.679233,0.226585,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.309707,-0.669727,-0.620879][0.26885,-0.717289,-0.642819][0.672321,0.241832,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.797882,0.173759,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.71,-0.3375,-0.602969][0.704874,-0.0681097,-0.706055][0.754341,0.173759,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.790499,0.204134,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.682265,-0.485743,-0.575235][0.6283,-0.447071,-0.636684][0.748658,0.204134,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.774255,0.226585,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.62125,-0.595313,-0.514219][0.507874,-0.691303,-0.513969][0.736156,0.226585,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.758011,0.241832,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.560234,-0.669727,-0.453203][0.494214,-0.717844,-0.49036][0.723654,0.241832,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.439489,0.522295,0][0.9225,-0.3375,-0.285469][0.921553,-0.0678888,-0.38227][0.436348,0.49192,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.396324,0.116293,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.886465,-0.485743,-0.270137][0.824516,-0.446481,-0.347602][0.396324,0.116293,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][0.807187,-0.595313,-0.236407][0.666532,-0.690732,-0.2804][0.379058,0.119971,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.72791,-0.669727,-0.202676][0.644921,-0.717288,-0.263771][0.361793,0.123649,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.597194,0.49192,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.594052,0.522295,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.594052,0.522295,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.516771,0.522295,0][1,-0.337501,0.107031][0.997695,-0.0678519,-0.000826502][0.516771,0.49192,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.366773,0.268005,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.960938,-0.485743,0.107031][0.89515,-0.445726,-0.00587747][0.396527,0.195066,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.352151,0.258115,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.875,-0.595313,0.107031][0.723936,-0.689854,-0.00428595][0.379243,0.1917,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.337528,0.248226,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.789063,-0.669727,0.107031][0.697653,-0.716431,0.00271109][0.361959,0.188333,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.9225,-0.337501,0.499531][0.922181,-0.0681315,0.38071][0.01,0.49192,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.886465,-0.485743,0.484199][0.829015,-0.446625,0.336542][0.0173836,0.522295,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.807188,-0.595313,0.450468][0.66985,-0.690737,0.272366][0.0336274,0.544746,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.72791,-0.669727,0.416738][0.642819,-0.717289,0.26885][0.0498713,0.559993,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.710001,-0.3375,0.817031][0.706055,-0.0681097,0.704874][0.0535411,0.49192,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.682266,-0.485743,0.789297][0.636684,-0.447071,0.6283][0.0592238,0.522295,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.62125,-0.595313,0.728281][0.513969,-0.691303,0.507874][0.0717259,0.544746,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.560235,-0.669727,0.667265][0.49036,-0.717844,0.494214][0.0842279,0.559993,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.392501,-0.3375,1.02953][0.38227,-0.0678884,0.921554][0.118597,0.49192,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.377169,-0.485742,0.993496][0.347602,-0.446481,0.824517][0.121738,0.522295,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][0.343438,-0.595313,0.914219][0.280399,-0.690732,0.666533][0.128649,0.544746,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.309707,-0.669727,0.834941][0.26377,-0.717287,0.644922][0.135561,0.559993,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][7.08705e-007,-0.3375,1.10703][0.000826376,-0.0678512,0.997695][0.19902,0.49192,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][6.17158e-007,-0.485742,1.06797][0.00587723,-0.445725,0.895151][0.19902,0.522295,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][5.21601e-007,-0.595313,0.982031][0.00428555,-0.689854,0.723936][0.19902,0.544746,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][4.43227e-007,-0.669727,0.896094][-0.00271145,-0.716431,0.697653][0.19902,0.559993,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.392499,-0.3375,1.02953][-0.38071,-0.0681309,0.922181][0.279442,0.49192,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.377167,-0.485742,0.993496][-0.336542,-0.446624,0.829015][0.276301,0.522295,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.343437,-0.595312,0.914219][-0.272366,-0.690737,0.66985][0.26939,0.544746,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.309707,-0.669726,0.834942][-0.26885,-0.717289,0.642819][0.262478,0.559993,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.388039,0.49192,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.709999,-0.3375,0.817032][-0.704874,-0.068109,0.706055][0.344498,0.49192,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.380655,0.522295,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.682265,-0.485742,0.789297][-0.6283,-0.447071,0.636684][0.338815,0.522295,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.364412,0.544746,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.62125,-0.595312,0.728282][-0.507875,-0.691302,0.513969][0.326313,0.544746,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.348168,0.559993,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.560234,-0.669726,0.667266][-0.494214,-0.717843,0.49036][0.313811,0.559993,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.27845,0.791851,0][-0.9225,-0.3375,0.499532][-0.921554,-0.0678878,0.38227][0.275309,0.761476,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.0102026,0.198551,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.886464,-0.485742,0.4842][-0.824517,-0.446481,0.347602][0.0102026,0.198551,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-0.807187,-0.595312,0.450469][-0.666533,-0.690732,0.280399][0.0274682,0.194873,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.72791,-0.669726,0.416739][-0.644922,-0.717287,0.263771][0.0447338,0.191195,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.436155,0.761476,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.433013,0.791851,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.433013,0.791851,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.355732,0.791851,0][-1,-0.3375,0.107032][-0.997695,-0.0678509,0.000826494][0.355732,0.761476,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.0397532,0.0468398,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.960937,-0.485742,0.107032][-0.895151,-0.445725,0.00587747][0.01,0.119778,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.054376,0.0567292,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.875,-0.595312,0.107032][-0.723936,-0.689853,0.0042859][0.0272837,0.123145,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.0689989,0.0666187,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.789062,-0.669726,0.107032][-0.697653,-0.71643,-0.00271108][0.0445674,0.126511,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.9225,-0.3375,-0.285468][-0.922181,-0.0681305,-0.38071][0.419843,0.173759,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.886465,-0.485742,-0.270136][-0.829016,-0.446624,-0.336542][0.427227,0.204134,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.807188,-0.595312,-0.236406][-0.669851,-0.690737,-0.272366][0.443471,0.226585,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.72791,-0.669726,-0.202675][-0.64282,-0.717288,-0.26885][0.459715,0.241832,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.71,-0.3375,-0.602968][-0.706055,-0.068109,-0.704874][0.463384,0.173759,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.682266,-0.485742,-0.575234][-0.636684,-0.447071,-0.6283][0.469067,0.204134,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.62125,-0.595312,-0.514218][-0.51397,-0.691302,-0.507874][0.481569,0.226585,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.560235,-0.669726,-0.453203][-0.490361,-0.717843,-0.494214][0.494071,0.241832,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-2.68819e-007,-0.3375,-0.892969][-0.000826517,-0.0678514,-0.997695][0.608863,0.173759,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.3925,-0.3375,-0.815468][-0.38227,-0.0678882,-0.921553][0.52844,0.173759,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-3.22182e-007,-0.485742,-0.853906][-0.00587768,-0.445725,-0.895151][0.608863,0.204134,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.377168,-0.485742,-0.779433][-0.347602,-0.446481,-0.824517][0.531581,0.204134,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-3.33733e-007,-0.595313,-0.767969][-0.00428624,-0.689854,-0.723936][0.608863,0.226585,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-0.343438,-0.595312,-0.700156][-0.2804,-0.690732,-0.666532][0.538493,0.226585,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-3.28101e-007,-0.669727,-0.682031][0.00271075,-0.716431,-0.697653][0.608863,0.241832,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.309707,-0.669726,-0.620879][-0.263771,-0.717287,-0.644922][0.545404,0.241832,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.964619,0.431258,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.964619,0.431258,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.879017,0.429937,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.667813,0.256239,0][0.294375,-0.7125,-0.584844][0.308229,-0.603413,-0.735451][0.66918,0.250596,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.287705,-0.740039,-0.569168][0.207145,-0.804954,-0.556004][0.287616,0.0326959,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.252058,-0.764063,-0.485387][0.0578292,-0.986122,-0.155628][0.277165,0.0481496,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.25134,0.0863351,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.620577,0.428588,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.620577,0.428588,0][0.163976,-0.781055,-0.278365][0.0168485,-0.998674,-0.0486496][0.62224,0.342786,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.750627,0.250596,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.747415,0.256239,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.747415,0.256239,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.7155,0.256239,0][0.5325,-0.7125,-0.425469][0.566117,-0.604031,-0.560944][0.717972,0.250596,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.520435,-0.740039,-0.413404][0.404179,-0.805297,-0.433747][0.328321,0.0731401,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.455953,-0.764063,-0.348922][0.112894,-0.986174,-0.121305][0.312826,0.0835827,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.274539,0.109386,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.418178,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.418178,0.43636,0][0.296619,-0.781055,-0.189588][0.0341545,-0.99868,-0.0383703][0.416493,0.522295,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.691875,-0.7125,-0.187344][0.738249,-0.603441,-0.301408][0.353945,0.125321,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.6762,-0.740039,-0.180675][0.53977,-0.805032,-0.246112][0.350531,0.126049,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.592418,-0.764063,-0.145028][0.150926,-0.986141,-0.0689002][0.332284,0.129936,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.287198,0.139541,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.62016,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.62016,0][0.385396,-0.781055,-0.0569449][0.0462888,-0.998677,-0.0223969][0.484463,0.618458,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.330881,0.24373,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.75,-0.7125,0.107031][0.798118,-0.602491,0.00363278][0.354103,0.186803,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.733008,-0.740039,0.107031][0.593651,-0.804452,-0.0208409][0.350685,0.186137,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.642187,-0.764063,0.107031][0.166251,-0.986065,-0.00594936][0.33242,0.182579,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.287286,0.173788,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.821199,0.263992,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.821199,0.263992,0][0.417773,-0.781055,0.107031][0.0514916,-0.998669,-0.00298277][0.9068,0.263992,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.0604667,0.5744,0][0.691875,-0.7125,0.401406][0.73545,-0.603413,0.308229][0.0572549,0.568757,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.6762,-0.740039,0.394737][0.556003,-0.804954,0.207145][0.32799,0.241775,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.592418,-0.764063,0.35909][0.155627,-0.986122,0.0578297][0.312536,0.231324,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.27435,0.205499,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.342919,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.342919,0][0.385396,-0.781055,0.271007][0.0486491,-0.998674,0.0168489][0.61112,0.428721,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.0923827,0.5744,0][0.5325,-0.7125,0.639531][0.560944,-0.604031,0.566117][0.0899107,0.568757,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.520436,-0.740039,0.627467][0.433746,-0.805297,0.40418][0.287545,0.28248,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.455953,-0.764063,0.562984][0.121304,-0.986174,0.112895][0.277103,0.266985,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.251299,0.228698,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.731492,0.389374,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.731492,0.389374,0][0.296619,-0.781055,0.40365][0.0383698,-0.99868,0.034155][0.645557,0.387689,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.140069,0.5744,0][0.294375,-0.7125,0.798906][0.301408,-0.60344,0.73825][0.138702,0.568757,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.287706,-0.740039,0.783231][0.246112,-0.805032,0.539771][0.234637,0.30469,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][0.252059,-0.764063,0.699449][0.0688997,-0.986141,0.150926][0.23075,0.286443,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.221144,0.241356,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.484463,0.599509,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.484463,0.599509,0][0.163976,-0.781055,0.492427][0.0223965,-0.998677,0.0462893][0.570264,0.601211,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.19902,0.5744,0][4.03229e-007,-0.7125,0.857031][-0.00363306,-0.60249,0.798118][0.19902,0.568757,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][3.81464e-007,-0.740039,0.840039][0.0208405,-0.804452,0.593652][0.174548,0.304844,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][3.25332e-007,-0.764063,0.749219][0.00594882,-0.986065,0.166252][0.178106,0.286579,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.186897,0.241445,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.416858,0.342986,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.416858,0.342986,0][2.07342e-007,-0.781055,0.524805][0.00298225,-0.998669,0.0514921][0.418178,0.428588,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.25797,0.5744,0][-0.294375,-0.7125,0.798906][-0.30823,-0.603412,0.735451][0.259337,0.568757,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.287705,-0.740039,0.783231][-0.207146,-0.804954,0.556004][0.11891,0.282148,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.252058,-0.764062,0.699449][-0.0578302,-0.986122,0.155628][0.129362,0.266695,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.155187,0.228509,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.645557,0.397146,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.645557,0.397146,0][-0.163976,-0.781055,0.492427][-0.0168494,-0.998674,0.0486496][0.731358,0.398848,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.340784,0.568757,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.337572,0.5744,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.337572,0.5744,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.305656,0.5744,0][-0.5325,-0.7125,0.639532][-0.566118,-0.60403,0.560944][0.308128,0.568757,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.520435,-0.740039,0.627467][-0.40418,-0.805296,0.433747][0.0782059,0.241704,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.455953,-0.764062,0.562985][-0.112895,-0.986174,0.121305][0.0937006,0.231262,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.131988,0.205458,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.427636,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.427636,0.43636,0][-0.296619,-0.781055,0.403651][-0.0341556,-0.99868,0.0383702][0.425951,0.522295,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.691875,-0.7125,0.401407][-0.73825,-0.60344,0.301408][0.0525818,0.189523,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.6762,-0.740039,0.394737][-0.539771,-0.805031,0.246112][0.0559957,0.188796,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.592418,-0.764062,0.35909][-0.150926,-0.986141,0.0689002][0.0742423,0.184909,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.119329,0.175303,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.436493,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.612782,0.436493,0][-0.385396,-0.781054,0.271008][-0.0462898,-0.998677,0.022397][0.61112,0.522295,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.0756456,0.0711139,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.75,-0.7125,0.107032][-0.798119,-0.602489,-0.00363282][0.0524236,0.128041,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.733008,-0.740039,0.107032][-0.593653,-0.804451,0.0208409][0.0558411,0.128707,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.642187,-0.764062,0.107032][-0.166252,-0.986065,0.00594932][0.0741068,0.132265,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.119241,0.141056,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.696902,0.7757,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.696902,0.7757,0][-0.417773,-0.781054,0.107032][-0.0514925,-0.998669,0.0029828][0.782504,0.7757,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.47031,0.256239,0][-0.691875,-0.7125,-0.187343][-0.735451,-0.603412,-0.308229][0.467098,0.250596,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.6762,-0.740039,-0.180674][-0.556005,-0.804953,-0.207145][0.078537,0.0730694,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.592418,-0.764062,-0.145027][-0.155628,-0.986121,-0.0578297][0.0939907,0.0835208,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.132176,0.109346,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.610686,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.570264,0.610686,0][-0.385396,-0.781054,-0.0569445][-0.0486501,-0.998674,-0.0168489][0.484463,0.608983,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.502226,0.256239,0][-0.5325,-0.7125,-0.425468][-0.560944,-0.60403,-0.566117][0.499754,0.250596,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.520436,-0.740039,-0.413404][-0.433747,-0.805296,-0.40418][0.118981,0.0323648,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.455953,-0.764062,-0.348922][-0.121305,-0.986174,-0.112895][0.129424,0.0478595,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.155227,0.0861464,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.62224,0.43636,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.62224,0.43636,0][-0.296619,-0.781055,-0.189588][-0.0383708,-0.99868,-0.034155][0.620555,0.522295,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-3.29914e-007,-0.7125,-0.642969][0.00363247,-0.60249,-0.798118][0.608863,0.250596,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.608863,0.256239,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.549912,0.256239,0][-0.294375,-0.7125,-0.584844][-0.301408,-0.60344,-0.73825][0.548546,0.250596,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-3.35069e-007,-0.740039,-0.625976][-0.0208413,-0.804452,-0.593652][0.231978,0.01,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.287706,-0.740039,-0.569168][-0.246112,-0.805032,-0.539771][0.17189,0.0101546,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-3.02422e-007,-0.764063,-0.535156][-0.00594979,-0.986065,-0.166252][0.22842,0.0282657,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-0.252059,-0.764062,-0.485386][-0.0689007,-0.986141,-0.150926][0.175777,0.0284012,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.185382,0.0734879,0][-2.01042e-007,-0.781055,-0.310742][-0.00298331,-0.998669,-0.0514921][0.219629,0.0733998,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.203263,0.157422,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.425973,0.428588,0][0,-0.7875,0.107031][-5.22362e-007,-1,0][0.425973,0.428588,0][-0.163976,-0.781055,-0.278365][-0.0223975,-0.998677,-0.0462893][0.427636,0.342786,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.250317,0.936921,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.301206,0.936921,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.338559,0.936921,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.361566,0.936921,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.361566,0.936921,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.158603,0.843791,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.0843759,0.242578,0.899219][0.643193,-0.765676,-0.00651759][0.158603,0.843791,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.084376,0.240546,1.14758][0.539351,-0.841351,-0.0350444][0.144679,0.89274,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.118201,0.948052,0][0.0843761,0.226318,1.32988][0.551287,-0.818237,-0.163008][0.131943,0.927976,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.877446,0.643819,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.187701,1.44216][0.611745,-0.624372,-0.485724][0.872865,0.638057,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.175752,0.841212,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.28125,0.882031][0.971276,0.237943,0.00245936][0.167177,0.842501,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.158051,0.902933,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.278613,1.16289][0.999931,0.00227662,0.0114849][0.151365,0.897837,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.141334,0.94609,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.121799,0.969478,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.121799,0.969478,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.12,0.958765,0][0.112501,0.260156,1.36641][0.999168,-0.0113043,0.0391786][0.136638,0.937033,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.627393,0.698509,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.112501,0.210059,1.49023][0.996038,-0.0663925,0.0591675][0.627393,0.698509,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.824356,0.432967,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][0.0843759,0.319922,0.864844][0.429505,0.903015,0.00946833][0.824356,0.432967,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.714103,0.432967,0][0.0843761,0.316681,1.1782][0.542566,0.838511,0.0502133][0.76015,0.432967,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.644591,0.704272,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][0.0843762,0.293994,1.40293][0.562948,0.795061,0.225761][0.644591,0.704272,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843762,0.232416,1.53831][0.621897,0.51984,0.585671][0.631974,0.704272,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.824356,0.467543,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][9.16429e-007,0.3375,0.857031][-0.0685125,0.997594,0.010565][0.825957,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.76015,0.467543,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.714103,0.467543,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.714103,0.467543,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.710701,0.450255,0][1.07509e-006,0.333984,1.18516][0.000913579,0.99838,0.0568935][0.758724,0.450255,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.644591,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][1.17761e-006,0.309375,1.41953][-0.0010362,0.96377,0.266734][0.647743,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.2137e-006,0.242578,1.56016][-0.00266023,0.677428,0.735585][0.634056,0.72156,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.821199,0.01,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.0843741,0.319922,0.864844][-0.643253,0.765615,0.00771937][0.821199,0.01,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.0843739,0.316681,1.1782][-0.541111,0.839876,0.0425065][0.836467,0.0723679,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.870082,0.140283,0][-0.0843738,0.293994,1.40293][-0.562383,0.802694,0.198514][0.851479,0.116147,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.627393,0.744611,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843738,0.232416,1.53831][-0.623079,0.565181,0.540688][0.631974,0.738849,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.838234,0.0132495,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.28125,0.882031][-0.971317,-0.237779,-0.00194679][0.829717,0.0116248,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.850228,0.0627072,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.278613,1.16289][-0.999959,-0.00313342,-0.00855136][0.843348,0.0675376,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.861573,0.0984151,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.874517,0.119015,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.874517,0.119015,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.872299,0.129649,0][-0.112499,0.260156,1.36641][-0.999597,0.00236412,-0.028289][0.856526,0.107281,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.877446,0.597717,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.112499,0.210059,1.49023][-0.997805,0.0466247,-0.0470218][0.877446,0.597717,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.250317,0.971498,0][8.85881e-007,0.225,0.907031][0.0684016,-0.997628,-0.00772621][0.251917,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][-0.0843741,0.242578,0.899219][-0.429675,-0.902955,-0.00716057][0.250317,0.971498,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][9.99194e-007,0.223242,1.14063][-0.00183116,-0.999175,-0.040558][0.299781,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][-0.084374,0.240546,1.14758][-0.541127,-0.840104,-0.0375018][0.301206,0.971498,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][1.07757e-006,0.210938,1.31328][-0.00256553,-0.981532,-0.191281][0.335158,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.357088,0.954209,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.361566,0.971498,0][-0.0843739,0.226318,1.32988][-0.551822,-0.815806,-0.173069][0.338559,0.971498,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][1.11356e-006,0.177539,1.42031][0.000641875,-0.772068,-0.63554][0.870783,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.0843739,0.187701,1.44216][-0.610485,-0.585202,-0.53371][0.872865,0.60348,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.76045,0.638057,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.76045,0.638057,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.857457,0.643819,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.0843761,0.1125,1.48047][0.630861,-0.146018,-0.762032][0.857457,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.830114,0.643819,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843761,0.000704885,1.4588][0.615086,0.254087,-0.746398][0.83455,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.80151,0.643819,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.773986,0.643819,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.773986,0.643819,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.782343,0.638057,0][0.084376,-0.127515,1.39092][0.583295,0.465344,-0.665749][0.808278,0.638057,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.0401713,0.890484,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.0843757,-0.360938,1.09922][0.413376,0.772438,-0.48214][0.028499,0.850439,0][0.0843758,-0.254086,1.2725][0.54489,0.641463,-0.540019][0.0401713,0.890484,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.112501,0.1125,1.53203][0.998112,-0.0605968,0.0100636][0.607403,0.698509,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.551456,0.698509,0][0.112501,-0.0209473,1.50566][0.999341,-0.0358497,-0.00569341][0.58006,0.698509,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.0503879,0.925547,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.0420498,0.930327,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.0227858,0.890658,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.838488,0.467543,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.833729,0.458576,0][0.112501,-0.160547,1.42422][0.99902,-0.043879,-0.00587595][0.836909,0.431237,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.0227858,0.890658,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.01,0.838034,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.01,0.838034,0][0.112501,-0.4125,1.08203][0.972205,0.199003,-0.12335][0.0192495,0.844236,0][0.112501,-0.294873,1.28418][0.999157,-0.0369142,-0.0179651][0.0314786,0.890571,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.0843762,0.1125,1.58359][0.629265,0.0432929,0.775984][0.607403,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.0843761,-0.0425996,1.55253][0.620416,-0.307163,0.721619][0.575623,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][0.084376,-0.193579,1.45752][0.597115,-0.529732,0.60236][0.544688,0.704272,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][0.0843756,-0.464063,1.06484][0.641886,-0.668126,0.376284][0.489266,0.704272,0][0.0843758,-0.33566,1.29586][0.559989,-0.679874,0.47348][0.515575,0.704272,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][1.17303e-006,0.1125,1.60703][0.00199165,0.0763455,0.997079][0.607403,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][1.07618e-006,-0.0524415,1.57383][0.00389019,-0.375113,0.926971][0.573607,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][9.50413e-007,-0.208594,1.47266][0.0105186,-0.656438,0.754307][0.541611,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.489266,0.738849,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.489266,0.738849,0][6.10953e-007,-0.4875,1.05703][0.0733757,-0.874124,0.480128][0.484463,0.72156,0][7.95432e-007,-0.354199,1.30117][0.00812779,-0.82197,0.569473][0.511777,0.72156,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.607403,0.744611,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843738,0.1125,1.58359][-0.628363,0.0861403,0.773136][0.607403,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.58006,0.744611,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843739,-0.0425995,1.55253][-0.617685,-0.275043,0.736761][0.575623,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.551456,0.744611,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.523933,0.744611,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.523933,0.744611,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.515575,0.738849,0][-0.0843741,-0.193579,1.45752][-0.588138,-0.515656,0.623051][0.544688,0.738849,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.972109,0.0654054,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.0843744,-0.464062,1.06484][-0.425734,-0.792156,0.437311][0.986948,0.0133224,0][-0.0843742,-0.33566,1.29586][-0.552401,-0.677499,0.485642][0.972109,0.0654054,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.112499,0.1125,1.53203][-0.998776,0.0486472,-0.00892921][0.857457,0.597717,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.112499,-0.0209473,1.50566][-0.999573,0.0291062,0.0024559][0.830113,0.597717,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.773986,0.597717,0][-0.112499,-0.160547,1.42422][-0.999502,0.0309369,-0.00624331][0.80151,0.597717,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.954744,0.0645501,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.967977,0.0249926,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.967977,0.0249926,0][-0.112499,-0.4125,1.08203][-0.974329,-0.196976,0.109008][0.977463,0.0191575,0][-0.112499,-0.294873,1.28418][-0.999561,0.0295881,0.00152952][0.963426,0.0649778,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][1.09971e-006,0.1125,1.45703][-0.00339488,-0.154746,-0.987948][0.857457,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843739,0.1125,1.48047][-0.632325,-0.0741885,-0.771143][0.857457,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][1.04034e-006,0.0105469,1.4375][-0.00523934,0.325175,-0.945639][0.836567,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.084374,0.000705004,1.4588][-0.617933,0.270271,-0.738318][0.83455,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][9.50031e-007,-0.1125,1.37578][-0.0138316,0.566893,-0.823675][0.811354,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][-0.0843741,-0.127515,1.39092][-0.594158,0.475632,-0.648653][0.808278,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][8.36814e-007,-0.235547,1.26719][-0.0112685,0.764819,-0.644146][0.786142,0.620768,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][7.08705e-007,-0.3375,1.10703][-0.0735847,0.843841,-0.531524][0.765252,0.620768,0][-0.0843743,-0.360938,1.09922][-0.638178,0.658237,-0.399315][0.76045,0.60348,0][-0.0843742,-0.254086,1.2725][-0.556494,0.651685,-0.515385][0.782343,0.60348,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.645557,0.429937,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.700502,0.432878,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.700502,0.432878,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.821199,0.1636,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.852422,0.171722,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.888957,0.179844,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.847043,0.328161,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.185625,-0.139453,-0.742969][0.762089,0.63394,0.131682][0.847043,0.328161,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.167607,-0.0677125,-1.00112][0.653305,0.684621,0.323243][0.800861,0.357847,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.765019,0.36997,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.127969,0.0846679,-1.11016][0.631105,0.480622,0.608859][0.76269,0.353734,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.08833,0.262976,-1.17231][0.666104,0.419844,0.61647][0.726948,0.338917,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.890405,0.366843,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.822024,0.398848,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.822024,0.398848,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.811443,0.378348,0][0.2475,-0.28125,-0.742969][0.981621,-0.139634,-0.130084][0.868724,0.347502,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.371121,0.815324,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.223476,-0.172852,-1.04141][0.977688,0.10022,-0.184614][0.371121,0.815324,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.290656,0.84966,0][0.170625,0.0234374,-1.16172][0.971804,0.188165,-0.142095][0.333024,0.832162,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.71658,0.364178,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.117773,0.24082,-1.23516][0.99027,0.138611,-0.0123642][0.721764,0.351547,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.422969,0.815168,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.185625,-0.423047,-0.742969][0.534307,-0.765623,-0.358242][0.422969,0.815168,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.167607,-0.277991,-1.08169][0.626319,-0.512491,-0.587433][0.394158,0.823351,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][0.127968,-0.0377931,-1.21328][0.572435,-0.241147,-0.783688][0.346757,0.838886,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][0.0883299,0.218665,-1.298][0.672724,-0.336649,-0.65887][0.296063,0.85493,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.434574,0.890346,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-2.68819e-007,-0.4875,-0.742969][-0.101527,-0.906912,-0.408904][0.441823,0.850742,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-3.6428e-007,-0.325781,-1.1][0.00913871,-0.724276,-0.68945][0.409075,0.855797,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-3.03949e-007,-0.0656251,-1.23672][-0.0169935,-0.381675,-0.92414][0.356393,0.86393,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.13833e-007,0.208594,-1.32656][-0.0338671,-0.521908,-0.852329][0.300864,0.872502,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.729361,0.627145,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.659832,0.597717,0][-0.185625,-0.423047,-0.742969][-0.749941,-0.59286,-0.293438][0.729361,0.627145,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.385092,0.905832,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.167608,-0.277991,-1.08169][-0.622239,-0.542661,-0.564215][0.404637,0.891232,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.343691,0.901265,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.127969,-0.037793,-1.21328][-0.589368,-0.242454,-0.770624][0.354757,0.890713,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.301585,0.890703,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.298019,0.897358,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.262503,0.89786,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0883303,0.218665,-1.298][-0.686527,-0.29676,-0.663788][0.555757,0.636302,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.687474,0.66742,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.2475,-0.28125,-0.742969][-0.986048,0.163973,-0.0286719][0.708418,0.647283,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.640216,0.63948,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.602225,0.645016,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.602225,0.645016,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.603946,0.628705,0][-0.223477,-0.172852,-1.04141][-0.994484,0.0518401,-0.0911849][0.650024,0.618598,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.839876,0.232903,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.567062,0.661158,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.170625,0.0234376,-1.16172][-0.977265,0.134868,-0.163595][0.603946,0.628705,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.567062,0.661158,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.117774,0.24082,-1.23516][-0.98388,0.141513,-0.109339][0.56141,0.64873,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.64681,0.502021,0][0,-0.075,-0.742969][0.100414,0.967998,0.229992][0.649501,0.470005,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.699897,0.468764,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.701634,0.497965,0][-0.185625,-0.139453,-0.742969][-0.552298,0.814059,0.179654][0.64681,0.502021,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.821199,0.232285,0][-1.57511e-007,-0.019922,-0.982812][-0.00948683,0.841845,0.539636][0.830991,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.167608,-0.0677124,-1.00112][-0.663418,0.634276,0.396952][0.821199,0.232285,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-1.43574e-007,0.1125,-1.08672][0.013332,0.491531,0.870758][0.858124,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][-0.127969,0.084668,-1.11016][-0.644387,0.44543,0.621577][0.852422,0.224163,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][0,0.273047,-1.14375][0.0415913,0.480806,0.87584][0.89102,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][-0.0883302,0.262976,-1.17231][-0.674281,0.447279,0.587611][0.888957,0.216041,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.919594,0.183536,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.924127,0.184436,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.924127,0.184436,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.791742,0.4776,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.796824,0.479496,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.796824,0.479496,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713486,0.496184,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713486,0.496184,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.501842,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715029,0.497687,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0703124,0.4125,-1.28984][0.667563,0.595271,0.447227][0.688055,0.336492,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.674944,0.342024,0][0.0659179,0.434624,-1.32911][0.449689,0.850509,0.27279][0.679317,0.339478,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0562499,0.442273,-1.35259][-0.165117,0.986112,-0.017878][0.723147,0.496225,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0421874,0.4125,-1.32422][-0.703389,-0.487634,-0.517162][0.717099,0.502093,0][0.0465819,0.435036,-1.35329][-0.847881,0.273297,-0.454321][0.723232,0.497713,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.659922,0.368028,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0937499,0.4125,-1.39297][0.991428,0.130378,0.00845761][0.673989,0.35226,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.648495,0.372633,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.645557,0.372735,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.645557,0.372735,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.660251,0.35738,0][0.0878905,0.43689,-1.43955][0.823588,0.567129,0.00817843][0.663906,0.356055,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.765653,0.496406,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0749998,0.445898,-1.45625][0.0278497,0.998247,0.0522209][0.7444,0.496316,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.759326,0.497828,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.745251,0.503198,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.745251,0.503198,0][0.0562499,0.4125,-1.39297][-0.990147,0.119825,-0.0724634][0.731175,0.502645,0][0.0621092,0.438208,-1.44131][-0.776191,0.630135,0.0213714][0.741279,0.49777,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][0.0703123,0.4125,-1.49609][0.720364,-0.547425,-0.425912][0.257374,0.864637,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.250317,0.868642,0][0.0659178,0.439156,-1.54999][0.834679,-0.247089,-0.492197][0.252114,0.86636,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.83831,0.475902,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.831858,0.477868,0][0.0562498,0.449524,-1.55991][0.314075,0.943188,-0.108411][0.83831,0.475902,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.916672,0.171718,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][0.0421873,0.4125,-1.46172][-0.689201,0.680691,0.248317][0.915771,0.165801,0][0.0465818,0.44138,-1.52933][-0.412282,0.882215,0.227419][0.916672,0.171718,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.26177,0.893114,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.19943e-007,0.4125,-1.54297][-0.00178382,-0.817547,-0.57586][0.259572,0.878876,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.256235,0.893057,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.253833,0.891424,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.253833,0.891424,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.251741,0.880084,0][-2.34382e-007,0.440186,-1.6002][-0.0648946,-0.72196,-0.688885][0.253966,0.879741,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.83869,0.497746,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.832173,0.495957,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.832173,0.495957,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.840023,0.486221,0][-2.32353e-007,0.451172,-1.60703][0.295735,0.739752,-0.604407][0.847928,0.486007,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.897582,0.171718,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.898483,0.165801,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.898483,0.165801,0][-1.95505e-007,0.4125,-1.49297][-0.0973256,0.923894,0.370063][0.907127,0.165801,0][-2.1801e-007,0.442822,-1.56934][0.0209395,0.955865,0.293059][0.907127,0.172014,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0703127,0.4125,-1.49609][-0.731143,-0.514578,-0.447928][0.498995,0.634572,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.484463,0.630404,0][-0.0659182,0.439156,-1.54999][-0.85098,-0.186467,-0.490982][0.487403,0.630396,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.765643,0.488286,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0562502,0.449524,-1.55991][-0.305185,0.876001,-0.373476][0.765643,0.488286,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0421877,0.4125,-1.46172][0.486837,0.815412,0.313197][0.745254,0.481457,0][-0.0465822,0.44138,-1.52933][0.479646,0.849486,0.219801][0.759318,0.486853,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.528286,0.665034,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0937501,0.4125,-1.39297][-0.98742,0.153079,-0.0396155][0.513641,0.649803,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.519442,0.662377,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.514978,0.659996,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.514978,0.659996,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.499721,0.6452,0][-0.0878908,0.43689,-1.43955][-0.854777,0.51833,-0.0262719][0.503423,0.646387,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0750002,0.445898,-1.45625][-0.0698128,0.996949,-0.0349124][0.74439,0.488338,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0562502,0.4125,-1.39297][0.947581,0.315574,0.0500395][0.731177,0.481983,0][-0.0621095,0.438208,-1.44131][0.819063,0.573572,-0.0123112][0.741271,0.486877,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][0,0.4125,-1.24297][0.00716274,0.756117,0.654397][0.919594,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.923916,0.197943,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.924127,0.211449,0][-0.0703126,0.4125,-1.28984][-0.673649,0.613585,0.411959][0.919594,0.21235,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.792187,0.503198,0][0,0.433594,-1.27891][-0.0202446,0.927833,0.372447][0.781956,0.491314,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.787585,0.491235,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.797204,0.50134,0][-0.0659181,0.434624,-1.32911][-0.495177,0.832161,0.249615][0.792187,0.503198,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][0,0.440625,-1.30547][-0.131682,0.972484,-0.192184][0.713476,0.488412,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][-0.0562501,0.442273,-1.35259][0.100288,0.983888,-0.148006][0.723136,0.488389,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][0,0.433594,-1.31328][0.00958808,0.0313133,-0.999464][0.715022,0.486912,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.482749,0][0,0.4125,-1.29297][0.17901,-0.703034,-0.688257][0.710701,0.482749,0][-0.0421876,0.4125,-1.32422][0.879461,-0.317376,-0.354712][0.7171,0.48251,0][-0.0465822,0.435036,-1.35329][0.841119,0.236599,-0.486354][0.723225,0.486901,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.166172,0.947204,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.166172,0.947204,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.166242,0.914607,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.96307,0.39665,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.949075,0.396667,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.910224,0.0298061,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.910224,0.0298061,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.945303,0.030494,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.975355,0.391509,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.96307,0.39665,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0670263,0.762891,-0.0501413][0.390958,0.445238,-0.805553][0.986948,0.121812,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.0639401,0.703125,-0.0429277][0.339954,-0.412166,-0.845311][0.974702,0.12118,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.945888,0.116121,0][0.0386967,0.629297,0.0162029][0.366645,-0.341256,-0.865515][0.959575,0.116007,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.889284,0.105279,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.889284,0.105279,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.888618,0.140283,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.984732,0.382052,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.975355,0.391509,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.986948,0.140283,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.121081,0.762891,-0.0140488][0.670274,0.445119,-0.593803][0.986948,0.132888,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.974702,0.138805,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.115516,0.703125,-0.00848434][0.63833,-0.412738,-0.649755][0.974702,0.131748,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.959575,0.126689,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.945888,0.126981,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.945888,0.126981,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.945888,0.122626,0][0.069944,0.629297,0.0370879][0.670306,-0.342091,-0.658531][0.959575,0.12241,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.91934,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.91934,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.107366,0.91934,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.99,0.369086,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.984732,0.382052,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.0510599,0.942011,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.157173,0.76289,0.0400056][0.846896,0.445407,-0.290482][0.0510599,0.942011,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][0.14996,0.703125,0.0430918][0.839301,-0.411887,-0.354855][0.0388139,0.942644,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.01,0.947703,0][0.090829,0.629297,0.0683353][0.871915,-0.341525,-0.350893][0.0236866,0.947816,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799292,0.398848,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799292,0.398848,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.764288,0.398141,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.989983,0.355091,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.99,0.369086,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.0510599,0.969478,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.170313,0.76289,0.107031][0.893838,0.44522,0.0532257][0.0510599,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.038814,0.968846,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.162501,0.703125,0.107031][0.911613,-0.410976,-0.00775851][0.0388139,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.0236866,0.963674,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.01,0.963787,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.01,0.963787,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.01,0.955745,0][0.0984382,0.629297,0.107031][0.940245,-0.340391,0.00855163][0.0236866,0.955745,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799367,0.390369,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.799367,0.390369,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.764288,0.389681,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.984842,0.342806,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.989983,0.355091,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.938116,0.0758741,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.157173,0.76289,0.174057][0.805553,0.445238,0.390957][0.938116,0.0758741,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][0.14996,0.703125,0.170971][0.845311,-0.412166,0.339954][0.92587,0.0773521,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.897056,0.0891767,0][0.0908291,0.629297,0.145727][0.865515,-0.341256,0.366645][0.910743,0.089468,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.826101,0.116814,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.826101,0.116814,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.827308,0.0842392,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.975384,0.333429,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.984842,0.342806,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.121081,0.762891,0.228111][0.593803,0.445119,0.670274][0.938116,0.0832694,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.115516,0.703125,0.222547][0.649755,-0.412738,0.638331][0.92587,0.0844096,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.897056,0.0935308,0][0.0699441,0.629297,0.176975][0.658531,-0.342092,0.670306][0.910743,0.0937473,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635937,0.609111,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635937,0.609111,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.600691,0.610088,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.962419,0.328161,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.975384,0.333429,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0670265,0.762891,0.264204][0.290482,0.445408,0.846896][0.938116,0.0943451,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][0.0639403,0.703125,0.25699][0.354855,-0.411886,0.839302][0.92587,0.0949775,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.897056,0.100036,0][0.0386968,0.629297,0.19786][0.350893,-0.341525,0.871915][0.910743,0.10015,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.874687,0.0477322,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.874687,0.0477322,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.875895,0.0151577,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.948424,0.328178,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.962419,0.328161,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][8.41014e-007,0.762891,0.277344][-0.0532258,0.44522,0.893838][0.938116,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][8.07985e-007,0.703125,0.269531][0.00775853,-0.410976,0.911613][0.92587,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.897056,0.108079,0][7.40589e-007,0.629297,0.205469][-0.00855172,-0.34039,0.940245][0.910743,0.108079,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.875895,0.0555044,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.875895,0.0555044,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.875207,0.0905832,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.936138,0.333319,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.948424,0.328178,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0670248,0.762891,0.264204][-0.390958,0.445239,0.805552][0.938116,0.121812,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0639386,0.703125,0.25699][-0.339954,-0.412165,0.845311][0.92587,0.12118,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.897056,0.116121,0][-0.0386953,0.629297,0.19786][-0.366645,-0.341255,0.865515][0.910743,0.116007,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635695,0.601339,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.635695,0.601339,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.600691,0.600632,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.926762,0.342777,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.936138,0.333319,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.938116,0.140283,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.121079,0.762891,0.228111][-0.670273,0.445119,0.593803][0.938116,0.132888,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.92587,0.138805,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.115515,0.703125,0.222547][-0.638331,-0.412738,0.649755][0.92587,0.131748,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.910743,0.126689,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.897056,0.126981,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.897056,0.126981,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.897056,0.122626,0][-0.0699426,0.629297,0.176975][-0.670307,-0.342091,0.658531][0.910743,0.12241,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0481753,0.846875,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0481753,0.846875,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.0481753,0.881772,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.921494,0.355742,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.926762,0.342777,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.945303,0.0382663,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.157172,0.762891,0.174057][-0.846895,0.445408,0.290482][0.945303,0.0382663,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][-0.149958,0.703125,0.170971][-0.839302,-0.411885,0.354855][0.933057,0.0388986,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.904243,0.0439575,0][-0.0908277,0.629297,0.145727][-0.871915,-0.341524,0.350893][0.91793,0.044071,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.945303,0.0220339,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.945303,0.0220339,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.910299,0.0213682,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.921511,0.369737,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.921494,0.355742,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.945303,0.0657332,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.170312,0.762891,0.107031][-0.893838,0.445221,-0.0532258][0.945303,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.933057,0.0651009,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.162499,0.703125,0.107031][-0.911614,-0.410975,0.00775847][0.933057,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.91793,0.0599285,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.904243,0.060042,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.904243,0.060042,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.904243,0.0519997,0][-0.0984368,0.629297,0.107031][-0.940246,-0.340389,-0.00855155][0.91793,0.0519997,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.862013,0.01961,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.862013,0.01961,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.861325,0.0546888,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.926652,0.382023,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.921511,0.369737,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.986948,0.0758741,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.157172,0.762891,0.0400058][-0.805552,0.445239,-0.390958][0.986948,0.0758741,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][-0.149958,0.703125,0.043092][-0.845312,-0.412165,-0.339954][0.974702,0.0773521,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.945888,0.0891767,0][-0.0908277,0.629297,0.0683353][-0.865515,-0.341255,-0.366645][0.959575,0.089468,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0585868,0.930498,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0585868,0.930498,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.0586571,0.897901,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.93611,0.391399,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.926652,0.382023,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.121079,0.762891,-0.0140487][-0.593803,0.445119,-0.670274][0.986948,0.0832694,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.115515,0.703125,-0.00848422][-0.649755,-0.412738,-0.638331][0.974702,0.0844096,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.945888,0.0935308,0][-0.0699427,0.629297,0.037088][-0.658531,-0.342091,-0.670306][0.959575,0.0937473,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.878987,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.0724687,0.878987,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.107726,0.878647,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.949075,0.396667,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.93611,0.391399,0][7.698e-007,0.7875,0.107031][5.0031e-007,1,0][0.955747,0.362414,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][6.7453e-007,0.762891,-0.0632812][0.0532257,0.44522,-0.893838][0.986948,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0670249,0.762891,-0.0501412][-0.290482,0.445408,-0.846896][0.986948,0.0943451,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][6.49137e-007,0.703125,-0.0554687][-0.0077585,-0.410976,-0.911613][0.974702,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][-0.0639388,0.703125,-0.0429276][-0.354855,-0.411886,-0.839302][0.974702,0.0949775,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][6.44364e-007,0.629297,0.00859384][0.00855159,-0.34039,-0.940246][0.959575,0.108079,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.945888,0.108079,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.945888,0.100036,0][-0.0386954,0.629297,0.016203][-0.350893,-0.341524,-0.871915][0.959575,0.10015,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.0392506,0.5625,0.0147813][0.28248,0.593949,-0.753279][0.130552,0.73408,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.0895396,0.517969,-0.103414][0.088892,0.969258,-0.229426][0.136036,0.759821,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.151017,0.83014,0][0.161907,0.4875,-0.2735][0.0660968,0.985171,-0.158332][0.143928,0.796864,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.663129,0.808142,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.673585,0.817266,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.673585,0.817266,0][0.255125,0.4125,-0.492594][0.168496,0.849969,-0.499161][0.631299,0.817266,0][0.226914,0.457031,-0.426289][0.14786,0.93335,-0.3271][0.625519,0.808142,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.0710006,0.5625,0.0360313][0.549762,0.593768,-0.587538][0.13777,0.73105,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.161969,0.517969,-0.0549375][0.169794,0.969364,-0.177495][0.152502,0.752909,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.192746,0.812622,0][0.292875,0.4875,-0.185844][0.121551,0.985217,-0.12072][0.173702,0.784365,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.49492,0.7757,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.4615,0.4125,-0.354469][0.346586,0.850518,-0.395598][0.484463,0.784825,0][0.410469,0.457031,-0.303438][0.261583,0.933496,-0.245276][0.49492,0.7757,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.0922506,0.5625,0.0677813][0.733001,0.593626,-0.332142][0.143288,0.725497,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.210446,0.517969,0.0174922][0.225129,0.969283,-0.0990293][0.165089,0.740241,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.224644,0.780519,0][0.380532,0.4875,-0.0548751][0.158797,0.985169,-0.0650027][0.196462,0.761459,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.599625,0.4125,-0.148094][0.471909,0.850288,-0.233051][0.526749,0.784825,0][0.533321,0.457031,-0.119883][0.336164,0.933285,-0.126386][0.53253,0.7757,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.100001,0.5625,0.107031][0.80441,0.593494,-0.0262733][0.146384,0.717907,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.228126,0.517969,0.107031][0.2465,0.969128,-0.0054454][0.172153,0.722926,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.242544,0.736637,0][0.412501,0.4875,0.107031][0.171992,0.985098,0.000587724][0.209234,0.730149,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.650001,0.4125,0.107031][0.526357,0.849558,-0.0346437][0.579024,0.784825,0][0.578126,0.457031,0.107031][0.359594,0.933038,0.0115214][0.579024,0.7757,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.0922507,0.5625,0.146281][0.75328,0.593948,0.28248][0.146363,0.709709,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.210446,0.517969,0.19657][0.229427,0.969258,0.0888917][0.172105,0.704225,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.242423,0.689245,0][0.380532,0.4875,0.268937][0.158333,0.985171,0.0660963][0.209147,0.696334,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.663129,0.7757,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.673585,0.784825,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.673585,0.784825,0][0.599626,0.4125,0.362156][0.499162,0.849969,0.168496][0.631299,0.784825,0][0.533321,0.457031,0.333945][0.327101,0.93335,0.147859][0.625519,0.7757,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.0710007,0.5625,0.178031][0.587538,0.593768,0.549762][0.143333,0.702491,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.161969,0.517969,0.269][0.177495,0.969364,0.169793][0.165192,0.687759,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.224905,0.647516,0][0.292876,0.4875,0.399906][0.12072,0.985217,0.121551][0.196648,0.666559,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.421812,0.545612,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.461501,0.4125,0.568531][0.395598,0.850518,0.346586][0.411356,0.554736,0][0.41047,0.457031,0.5175][0.245276,0.933496,0.261583][0.421812,0.545612,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.0392507,0.5625,0.199281][0.332142,0.593627,0.733][0.13778,0.696974,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.0895398,0.517969,0.317477][0.0990296,0.969283,0.225129][0.152524,0.675172,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.192801,0.615617,0][0.161907,0.4875,0.487563][0.0650034,0.985169,0.158797][0.173742,0.6438,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][0.255126,0.4125,0.706656][0.233051,0.850288,0.471908][0.453642,0.554736,0][0.226915,0.457031,0.640352][0.126387,0.933285,0.336163][0.459422,0.545612,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][7.08705e-007,0.5625,0.207031][0.0262732,0.593494,0.804409][0.13019,0.693877,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][7.49562e-007,0.517969,0.335156][0.00544548,0.969128,0.246499][0.135209,0.668109,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.14892,0.597717,0][8.24786e-007,0.4875,0.519531][-0.000587182,0.985098,0.171991][0.142432,0.631027,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][9.0421e-007,0.4125,0.757031][0.0346441,0.849558,0.526356][0.505917,0.554736,0][8.90845e-007,0.457031,0.685156][-0.011521,0.933038,0.359593][0.505917,0.545612,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.0392493,0.5625,0.199281][-0.282479,0.593949,0.753279][0.121992,0.693898,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.0895383,0.517969,0.317477][-0.0888911,0.969259,0.229426][0.116508,0.668157,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.101528,0.597839,0][-0.161905,0.4875,0.487563][-0.0660959,0.985171,0.158332][0.108617,0.631114,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.590021,0.545612,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.600478,0.554736,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.600478,0.554736,0][-0.255124,0.4125,0.706656][-0.168495,0.849969,0.499161][0.558192,0.554736,0][-0.226913,0.457031,0.640352][-0.147859,0.93335,0.327101][0.552411,0.545612,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.0709993,0.5625,0.178031][-0.549762,0.593769,0.587537][0.114774,0.696928,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.161968,0.517969,0.269][-0.169792,0.969364,0.177495][0.100042,0.675069,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.0597987,0.615356,0][-0.292874,0.4875,0.399906][-0.12155,0.985217,0.12072][0.0788425,0.643613,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.689288,0.698509,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.461499,0.4125,0.568532][-0.346585,0.850518,0.395598][0.678832,0.707634,0][-0.410468,0.457031,0.5175][-0.261583,0.933496,0.245276][0.689288,0.698509,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.0922493,0.5625,0.146281][-0.733,0.593627,0.332141][0.109257,0.702481,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.210445,0.517969,0.196571][-0.225128,0.969284,0.0990287][0.0874552,0.687737,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.0279003,0.64746,0][-0.380531,0.4875,0.268938][-0.158796,0.985169,0.0650029][0.0560825,0.66652,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.599624,0.4125,0.362157][-0.471909,0.850288,0.233051][0.721117,0.707634,0][-0.53332,0.457031,0.333946][-0.336163,0.933285,0.126386][0.726898,0.698509,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.0999993,0.5625,0.107031][-0.804409,0.593495,0.0262734][0.10616,0.710072,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.228124,0.517969,0.107031][-0.246498,0.969128,0.00544538][0.0803918,0.705053,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.01,0.691342,0][-0.412499,0.4875,0.107032][-0.171991,0.985098,-0.000587766][0.0433104,0.69783,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.649999,0.4125,0.107032][-0.526356,0.849558,0.0346437][0.773392,0.707634,0][-0.578124,0.457031,0.107032][-0.359593,0.933038,-0.0115215][0.773392,0.698509,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.0922494,0.5625,0.0677814][-0.753279,0.593949,-0.282479][0.106181,0.718269,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.210445,0.517969,0.0174924][-0.229425,0.969259,-0.0888915][0.0804399,0.723753,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.0101219,0.738734,0][-0.380531,0.4875,-0.0548747][-0.158331,0.985171,-0.0660964][0.0433974,0.731645,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.857497,0.698509,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.867953,0.707634,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.867953,0.707634,0][-0.599625,0.4125,-0.148093][-0.499161,0.849969,-0.168496][0.825667,0.707634,0][-0.53332,0.457031,-0.119882][-0.3271,0.93335,-0.147859][0.819887,0.698509,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.0709994,0.5625,0.0360314][-0.587537,0.593769,-0.549762][0.109211,0.725487,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.161968,0.517969,-0.0549373][-0.177494,0.969364,-0.169793][0.0873521,0.740219,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.0276391,0.780463,0][-0.292875,0.4875,-0.185843][-0.120719,0.985217,-0.121551][0.0558962,0.761419,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.49492,0.808142,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.4615,0.4125,-0.354468][-0.395598,0.850518,-0.346586][0.484463,0.817266,0][-0.410468,0.457031,-0.303437][-0.245275,0.933496,-0.261583][0.49492,0.808142,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][6.10953e-007,0.5625,0.00703134][-0.0262733,0.593494,-0.804409][0.122355,0.734101,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.0392494,0.5625,0.0147814][-0.332142,0.593627,-0.733][0.114764,0.731005,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][5.26565e-007,0.517969,-0.121094][-0.00544525,0.969128,-0.246499][0.117336,0.75987,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.0895385,0.517969,-0.103414][-0.0990283,0.969284,-0.225129][0.10002,0.752806,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][4.21557e-007,0.4875,-0.305469][0.000588319,0.985098,-0.171991][0.110113,0.796951,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.103625,0.830261,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.059743,0.812361,0][-0.161906,0.4875,-0.2735][-0.0650022,0.985169,-0.158797][0.0788027,0.784179,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0][3.25714e-007,0.457031,-0.471094][0.011522,0.933038,-0.359593][0.579024,0.808142,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][2.68819e-007,0.4125,-0.542969][-0.0346433,0.849558,-0.526356][0.579024,0.817266,0][-0.255125,0.4125,-0.492594][-0.23305,0.850288,-0.471909][0.526749,0.817266,0][-0.226914,0.457031,-0.426289][-0.126386,0.933285,-0.336164][0.53253,0.808142,0] \ No newline at end of file diff --git a/charcustom/hats/sounds/Activation.wav b/charcustom/hats/sounds/Activation.wav new file mode 100644 index 0000000..bbe89e8 Binary files /dev/null and b/charcustom/hats/sounds/Activation.wav differ diff --git a/charcustom/hats/sounds/Katon.mp3 b/charcustom/hats/sounds/Katon.mp3 new file mode 100644 index 0000000..de121ef Binary files /dev/null and b/charcustom/hats/sounds/Katon.mp3 differ diff --git a/charcustom/hats/sounds/gravityhammerswing.mp3 b/charcustom/hats/sounds/gravityhammerswing.mp3 new file mode 100644 index 0000000..641af9a Binary files /dev/null and b/charcustom/hats/sounds/gravityhammerswing.mp3 differ diff --git a/charcustom/hats/sounds/hurray.wav b/charcustom/hats/sounds/hurray.wav new file mode 100644 index 0000000..11a7c7f Binary files /dev/null and b/charcustom/hats/sounds/hurray.wav differ diff --git a/charcustom/hats/textures/Satellite.png b/charcustom/hats/textures/Satellite.png new file mode 100644 index 0000000..a826752 Binary files /dev/null and b/charcustom/hats/textures/Satellite.png differ diff --git a/charcustom/hats/textures/gravityhammer.png b/charcustom/hats/textures/gravityhammer.png new file mode 100644 index 0000000..7acc0df Binary files /dev/null and b/charcustom/hats/textures/gravityhammer.png differ diff --git a/charcustom/hats/textures/gravityhammericon.png b/charcustom/hats/textures/gravityhammericon.png new file mode 100644 index 0000000..268f3b8 Binary files /dev/null and b/charcustom/hats/textures/gravityhammericon.png differ