Advertisement
AxeuerAlt

Neon

Jun 11th, 2019
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.41 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 31933
  3.  
  4. local Scripts = { function()
  5. local a=script.Parent.Parent.Rocket local b=false script.Parent.Event:connect(function()if b==false then b=true for c=1,75 do a.Top.Model:SetPrimaryPartCFrame(a.Top.Model:GetPrimaryPartCFrame()*CFrame.Angles(0,0,math.rad(-2)))wait()end script.Parent.Parent.Rocket.Top.Core.A:play()for c=1,400 do script.Parent.Parent.Walk.Walkway:SetPrimaryPartCFrame(script.Parent.Parent.Walk.Walkway:GetPrimaryPartCFrame()*CFrame.Angles(0,math.rad(-.1),0))wait()end script.Parent.Parent.Rocket.Top.Core.A:stop()script.Parent.Parent.Rocket.Top.Core.B:play()wait(30)a.Parent.Truss1.Anchored=false a.Parent.Truss2.Anchored=false a.Parent.Truss3.Anchored=false a.Parent.Truss4.Anchored=false a.Parent.Truss5.Anchored=false a.Parent.Truss6.Anchored=false a.Parent.Truss7.Anchored=false a.Parent.Truss8.Anchored=false wait(3)script.Parent.Parent.Rocket.Top.Core.B:stop()script.Parent.Parent.Rocket.Top.Core.C:play()a.Weld.Disabled=false a.SectionA.BoosterA.Rocket.ParticleEmitter.Enabled=true a.SectionA.BoosterB.Rocket.ParticleEmitter.Enabled=true a.SectionA.BoosterC.Rocket.ParticleEmitter.Enabled=true a.SectionA.BoosterD.Rocket.ParticleEmitter.Enabled=true for c=1,300 do a.CFrame.BodyVelocity.Velocity=a.CFrame.BodyVelocity.Velocity+Vector3.new(0,.5,0)wait()end wait(5)a.Top.Core.C:stop()a.Top.Core.Decoupler:play()a.SectionA.BoosterA.Rocket.ParticleEmitter.Enabled=false a.SectionA.BoosterB.Rocket.ParticleEmitter.Enabled=false a.SectionA.BoosterC.Rocket.ParticleEmitter.Enabled=false a.SectionA.BoosterD.Rocket.ParticleEmitter.Enabled=false a.SectionA.BoosterA:BreakJoints()a.SectionA.BoosterB:BreakJoints()a.SectionA.BoosterC:BreakJoints()a.SectionA.BoosterD:BreakJoints()wait(1)a.Top.Core.D:play()a.SectionA.Side.MainRocket.ParticleEmitter.Enabled=true wait(20)a.Top.Core.D:stop()a.Top.Core.Decoupler:play()a.SectionA.Side.MainRocket.ParticleEmitter.Enabled=false a.SectionA.Side:BreakJoints()wait(1)a.Top.Core.E:play()a.Top.Engine.ParticleEmitter.Enabled=true end end)
  6. end; function()
  7. function a()script.Parent.ClickDetector.MaxActivationDistance=0 script.Parent.Parent.Core.A:Play()script.Parent.BrickColor=BrickColor.new("Bright red")wait(35)script.Parent.Parent.Parent.Parent.Launch:Fire()end script.Parent.ClickDetector.MouseClick:connect(a)
  8. end; function()
  9. function a()local b,c={}local function d(e)for f,g in pairs(e:GetChildren())do if(g:IsA("BasePart"))then if(c)then local h=Instance.new("Weld")h.Name=("%s_Weld"):format(g.Name)h.Part0,h.Part1=c,g h.C0=c.CFrame:inverse()h.C1=g.CFrame:inverse()h.Parent=c end c=g table.insert(b,g)end d(g)end end d(script.Parent)for e,f in pairs(b)do f.Anchored=false end end a()script:Remove()
  10. end;}local ActualScripts = {}
  11. function s(var)
  12. local func = table.remove(Scripts,1)
  13. setfenv(func,setmetatable({script=var},{
  14. __index = getfenv(func),
  15. }))
  16. table.insert(ActualScripts,coroutine.wrap(func))
  17. end
  18.  
  19. local Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  20. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  21. function(t,f)
  22. for a,b in pairs(t) do
  23. f(a,b)
  24. end
  25. end
  26. local Types = {
  27. Color3 = Color3.new,
  28. Vector3 = Vector3.new,
  29. Vector2 = Vector2.new,
  30. UDim = UDim.new,
  31. UDim2 = UDim2.new,
  32. CFrame = CFrame.new,
  33. Rect = Rect.new,
  34. NumberRange = NumberRange.new,
  35. NumberSequence = function(...)
  36. local a = {...}
  37. local t = {}
  38. repeat
  39. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  40. until #a==0
  41. return NumberSequence.new(t)
  42. end,
  43. ColorSequence = function(...)
  44. local a = {...}
  45. local t = {}
  46. repeat
  47. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  48. until #a==0
  49. return ColorSequence.new(t)
  50. end,
  51. number = tonumber,
  52. boolean = function(a)
  53. return a=="1"
  54. end
  55. }
  56. split = function(str,sep)
  57. if not str then return end
  58. local fields = {}
  59. local ConcatNext = false
  60. str:gsub(("([^%s]+)"):format(sep),function(c)
  61. if ConcatNext == true then
  62. fields[#fields] = fields[#fields]..sep..c
  63. ConcatNext = false
  64. else
  65. fields[#fields+1] = c
  66. end
  67. if c:sub(#c)=="\\" then
  68. c = fields[#fields]
  69. fields[#fields] = c:sub(1,#c-1)
  70. ConcatNext = true
  71. end
  72. end)
  73. return fields
  74. end
  75. RemoveAndSplit = function(t)
  76. return split(table_remove(t,1),comma)
  77. end
  78. t = split(str,";")
  79. props = RemoveAndSplit(t)
  80. classes = RemoveAndSplit(t)
  81. values = split(table_remove(t,1),'|')
  82. ICList = RemoveAndSplit(t)
  83. InstanceList = {}
  84. Model = inst"Model"
  85. CurPar = Model
  86. table_foreach(t,function(ct,c)
  87. if c=="n" or c=="p" then
  88. CurPar = c=="n" and LastIns or CurPar[parnt]
  89. else
  90. ct = split(c,"|")
  91. local class = classes[tonum(table_remove(ct,1))]
  92. if class=="UnionOperation" then
  93. LastIns = {Locked="true",Anchored="true",UsePartColor="true"}
  94. else
  95. LastIns = inst(class)
  96. if LastIns:IsA"Script" then
  97. s(LastIns)
  98. end
  99. end
  100.  
  101. local function SetProperty(LastIns,p,str,s)
  102. s = Types[typeof(LastIns[p])]
  103. LastIns[p] = s and s(unpack(split(str,comma))) or str
  104. end
  105.  
  106. local UnionData
  107. table_foreach(ct,function(s,p,a,str)
  108. a = p:find":"
  109. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  110. if p=="UnionData" then
  111. UnionData = split(str," ")
  112. return
  113. end
  114. if class=="UnionOperation" then
  115. LastIns[p] = str
  116. return
  117. end
  118. SetProperty(LastIns,p,str)
  119. end)
  120.  
  121. if UnionData then
  122. local LI_Data = LastIns
  123. LastIns = DecodeUnion(UnionData)
  124. table_foreach(LI_Data,function(p,str)
  125. SetProperty(LastIns,p,str)
  126. end)
  127. end
  128. table.insert(InstanceList,LastIns)
  129. LastIns[parnt] = CurPar
  130. end
  131. end)
  132. table_remove(ICList,1)
  133. table_foreach(ICList,function(a,b)
  134. b = split(b,">")
  135. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  136. end)
  137.  
  138. return Model:GetChildren()
  139. end
  140.  
  141. local Objects = Decode('Name,Anchored,Color,Material,Position,Orientation,Size,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,Style,PrimaryPart,Transparency,CanCollide,Shape,MaxActivationDistance,Face,Range,B'
  142. ..'rightness,Looped,PlaybackSpeed,SoundId,Volume,Velocity,MaxForce,MaxTorque,Reflectance;Part,Model,TrussPart,BindableEvent,Script,Seat,ClickDetector,CylinderMesh,SurfaceLight,Sound,BodyVelocity,BodyGyro,WedgePart;P'
  143. ..'art|RocketModel|Truss7|1|0.356,0.364,0.411|1088|-0.586,20.793,-104.846|0,180,0|2,38.049,2|0|Truss8|-0.586,38.768,-107.821|-90,-180,0|2,3.999,2|Truss5|-22.748,20.793,-127.009|0,90,0|Truss4|-19.774,38.768,-127.009|'
  144. ..'-90,90,0|Truss3|-0.586,20.793,-149.171|Truss1|-0.586,38.768,-146.197|-90,0,0|Truss2|21.576,20.793,-127.009|0,-90,0|Truss6|18.602,38.768,-127.009|-90,-90,0|Walk|Truss|0.105,0.164,0.207|-2.592,49.293,-92.499|0.2,0.'
  145. ..'249,2.621|0.766,49.293,-90.834|0,135,0|0.2,0.249,1.371|-2.134,49.293,-90.834|0,45,0|1.208,59.793,-92.549|-0.667,59.793,-90.399|0.2,0.249,2.071|-0.667,51.393,-90.399|0.766,51.393,-90.834|1.208,51.393,-92.549|0.766'
  146. ..',59.793,-90.834|1.208,57.693,-92.549|-2.592,53.493,-92.499|0.766,55.593,-90.834|-0.667,57.693,-90.399|-2.134,59.793,-90.834|-2.134,53.493,-90.834|1.208,53.493,-92.549|1.208,55.593,-92.549|0.766,57.693,-90.834|-2.'
  147. ..'134,51.393,-90.834|-0.667,55.593,-90.399|-2.592,51.393,-92.499|1.208,49.293,-92.549|-0.667,53.493,-90.399|-2.134,55.593,-90.834|0.766,53.493,-90.834|-2.134,57.693,-90.834|-2.592,57.693,-92.499|-2.592,55.593,-92.4'
  148. ..'99|-2.592,59.793,-92.499|0.766,11.493,-90.834|-2.134,13.593,-90.834|-2.592,11.493,-92.499|0.766,15.693,-90.834|1.208,19.893,-92.549|1.208,13.593,-92.549|0.766,13.593,-90.834|-0.667,11.493,-90.399|-2.134,15.693,-9'
  149. ..'0.834|-2.592,15.693,-92.499|-0.667,15.693,-90.399|0.766,19.893,-90.834|-2.134,11.493,-90.834|1.208,11.493,-92.549|-0.667,13.593,-90.399|-2.592,13.593,-92.499|1.208,15.693,-92.549|0.766,17.793,-90.834|-0.667,17.79'
  150. ..'3,-90.399|1.208,17.793,-92.549|-2.592,21.993,-92.499|-2.134,17.793,-90.834|-0.667,19.893,-90.399|-2.592,19.893,-92.499|-2.134,19.893,-90.834|-2.592,17.793,-92.499|-2.134,21.993,-90.834|-0.667,21.993,-90.399|0.766'
  151. ..',21.993,-90.834|1.208,21.993,-92.549|-2.592,38.793,-92.499|1.208,36.693,-92.549|0.766,40.893,-90.834|-2.134,36.693,-90.834|1.208,42.993,-92.549|1.208,40.893,-92.549|1.208,45.093,-92.549|0.766,42.993,-90.834|-0.66'
  152. ..'7,38.793,-90.399|-2.592,36.693,-92.499|0.766,36.693,-90.834|-0.667,36.693,-90.399|0.766,38.793,-90.834|-2.592,40.893,-92.499|-2.134,40.893,-90.834|-2.134,38.793,-90.834|-0.667,40.893,-90.399|1.208,38.793,-92.549|'
  153. ..'0.766,47.193,-90.834|1.208,47.193,-92.549|-2.134,47.193,-90.834|-0.667,47.193,-90.399|-0.667,45.093,-90.399|-2.134,42.993,-90.834|-2.592,47.193,-92.499|-2.134,45.093,-90.834|0.766,45.093,-90.834|-2.592,42.993,-92'
  154. ..'.499|-0.667,42.993,-90.399|-2.592,45.093,-92.499|0.388,0.372,0.384|-0.692,42.268,-94.737|3.899,81,1.899|0.972,0.972,0.972|288|-2.592,84.993,-92.499|0.066,0.066,0.066|-0.686,70.818,-94.72|0,0,180|2,23.999,2|2|0.76'
  155. ..'6,84.993,-90.834|-0.667,82.893,-90.399|0.766,82.893,-90.834|-2.592,82.893,-92.499|1.208,82.893,-92.549|-2.134,82.893,-90.834|0.766,26.193,-90.834|-0.667,24.093,-90.399|0.766,24.093,-90.834|1.208,24.093,-92.549|-2'
  156. ..'.134,26.193,-90.834|-2.592,24.093,-92.499|-0.667,26.193,-90.399|-2.592,26.193,-92.499|-2.592,28.293,-92.499|-2.134,28.293,-90.834|-0.667,28.293,-90.399|1.208,26.193,-92.549|-2.134,24.093,-90.834|1.208,30.393,-92.'
  157. ..'549|-0.667,32.493,-90.399|-2.592,34.593,-92.499|0.766,32.493,-90.834|0.766,28.293,-90.834|-2.134,30.393,-90.834|-2.134,32.493,-90.834|1.208,28.293,-92.549|-2.592,32.493,-92.499|-2.592,30.393,-92.499|0.766,30.393,'
  158. ..'-90.834|-2.134,34.593,-90.834|-0.667,34.593,-90.399|0.766,34.593,-90.834|1.208,34.593,-92.549|-0.667,30.393,-90.399|1.208,32.493,-92.549|1.208,84.993,-92.549|-0.667,80.793,-90.399|-2.134,78.693,-90.834|-2.592,78.'
  159. ..'693,-92.499|-2.592,80.793,-92.499|-2.134,80.793,-90.834|-0.667,78.693,-90.399|0.766,78.693,-90.834|1.208,78.693,-92.549|1.208,80.793,-92.549|0.766,80.793,-90.834|0.766,74.493,-90.834|-0.667,76.593,-90.399|-2.134,'
  160. ..'61.893,-90.834|1.208,76.593,-92.549|-0.667,74.493,-90.399|-0.667,61.893,-90.399|0.766,76.593,-90.834|0.766,61.893,-90.834|1.208,61.893,-92.549|1.208,63.993,-92.549|-2.134,74.493,-90.834|-2.592,74.493,-92.499|-2.5'
  161. ..'92,61.893,-92.499|1.208,74.493,-92.549|-2.134,76.593,-90.834|-2.134,63.993,-90.834|0.766,66.093,-90.834|1.208,66.093,-92.549|1.208,68.193,-92.549|-2.134,66.093,-90.834|0.766,63.993,-90.834|-0.667,63.993,-90.399|-'
  162. ..'2.592,66.093,-92.499|1.208,70.293,-92.549|0.766,68.193,-90.834|-0.667,66.093,-90.399|0.766,70.293,-90.834|-2.592,76.593,-92.499|-2.592,63.993,-92.499|-2.592,70.293,-92.499|-2.134,72.393,-90.834|-0.667,72.393,-90.'
  163. ..'399|0.766,72.393,-90.834|-2.592,68.193,-92.499|1.208,72.393,-92.549|-0.667,70.293,-90.399|-0.667,68.193,-90.399|-2.592,72.393,-92.499|-2.134,68.193,-90.834|-2.134,70.293,-90.834|0.2,75.85,0.2|-0.686,29.793,-94.52'
  164. ..'|2,58.05,2|-0.667,84.993,-90.399|-2.134,84.993,-90.834|-2.134,47.218,-90.834|0.2,75.8,0.2|-2.592,9.393,-92.499|-2.134,9.393,-90.834|-0.667,9.393,-90.399|0.766,9.393,-90.834|1.208,9.393,-92.549|-0.667,49.293,-90.3'
  165. ..'99|Walkway|-2.592,83.943,-119.499|0.2,2.349,0.221|1.208,83.943,-107.798|-0.692,81.768,-107.624|2.299,1.799,23.672|1.208,83.943,-99.848|-2.592,84.993,-106.724|0.2,0.249,25.471|1.208,83.943,-119.499|-2.592,83.643,-'
  166. ..'106.724|1.208,83.943,-115.649|1.208,84.993,-106.649|0.2,0.249,25.621|1.208,83.943,-103.699|1.208,83.943,-95.648|1.208,83.793,-106.724|-1.686,81.768,-107.67|1.208,83.943,-111.649|-2.592,83.943,-107.798|-2.592,83.9'
  167. ..'43,-115.649|0.314,81.768,-107.67|-2.592,83.943,-103.699|-2.592,83.943,-93.898|-2.592,83.943,-111.649|1.208,83.943,-93.948|-2.592,83.943,-99.848|-2.592,83.943,-95.648|PrimPart|-0.692,81.768,-95.923|2.299,1.799,0.2'
  168. ..'72|Launch|Rocket|Top|-4.336,88.835,-120.724|0,60,-90|0.15,0.2,4|2.964,86.185,-133.369|6.614,86.185,-127.047|0,0,-90|2.964,88.835,-133.369|0.8|5.636,87.535,-130.697|0,30,-90|2.599,0.05,4|0|2.964,86.185,-120.724|0,'
  169. ..'-60,-90|-4.336,88.835,-133.368|5.636,86.185,-123.396|0,-30,-90|5.636,88.835,-123.396|-0.686,82.485,-127.046|0.499,15,15|2.964,88.835,-120.724|-7.008,88.835,-130.696|-0.686,88.835,-134.347|0,-90,-90|-7.986,88.835,'
  170. ..'-127.046|2.964,87.535,-133.369|-7.986,87.535,-127.046|-4.336,87.535,-133.368|-4.336,87.535,-120.724|-7.008,87.535,-130.696|-7.008,88.835,-123.396|6.614,87.535,-127.047|5.636,88.835,-130.697|-2.636,85.81,-119.746|'
  171. ..'6.2,0.2,0.2|-7.008,87.535,-123.396|5.636,87.535,-123.396|-0.686,87.535,-134.347|2.5,0.05,4|6.614,88.835,-127.047|-0.686,86.185,-134.347|5.636,86.185,-130.697|-0.686,81.235,-127.046|2,14.8,14.8|6.614,84.435,-127.0'
  172. ..'47|3.4,0.2,4|-4.336,90.585,-120.724|1.289,85.735,-119.746|6.05,0.231,0.173|5.636,84.435,-130.697|6.614,90.585,-127.047|5.636,84.435,-123.396|2.964,90.585,-120.724|-7.986,90.585,-127.046|-7.986,86.185,-127.046|-7.'
  173. ..'008,84.435,-130.696|-7.008,86.185,-130.696|-4.336,84.435,-133.368|-4.336,86.185,-120.724|-4.336,90.585,-133.368|-7.008,90.585,-130.696|-4.336,86.185,-133.368|-4.401,84.435,-120.762|3.4,0.2,3.85|Door|-0.661,88.761'
  174. ..',-119.745|0,-90,60|0.05,0.2,0.2|0.1|-0.661,91.36,-118.245|6.05,0.2,3.75|-0.686,90.585,-134.347|2.964,90.585,-133.369|-7.008,86.185,-123.396|-7.008,84.435,-123.396|-0.661,88.835,-119.746|0.149,0.231,4.073|5.636,90'
  175. ..'.585,-130.697|-0.686,84.435,-134.347|3.051,84.435,-120.774|3.4,0.2,3.8|-7.986,84.41,-127.046|3.45,0.2,4|-0.686,90.585,-119.746|-7.008,90.585,-123.396|2.964,84.435,-133.369|Seat|0.864,84.596,-133.801|0,90,-95|3.89'
  176. ..'9,0.65,0.7|-0.661,84.59,-133.875|3.899,0.5,2.35|-2.186,84.596,-133.801|-2.186,83.735,-132.747|0,90,-90|2,2.599,0.699|0.864,83.735,-132.747|2,2.599,0.7|-0.661,83.235,-132.672|1,2.449,2.35|-0.661,83.76,-132.522|2.3'
  177. ..'49,0.05,2.149|2.964,87.535,-120.724|Trigger|0,1,0|-2.215,84.84,-131.793|0.4,0.21,0.4|12|-0.686,92.485,-127.046|14|0.699|Core|-0.686,70.485,-127.046|19.7,15,15|D|1.5|rbxassetid://558246436|5|E|2|Decoupler|rbxasset'
  178. ..'id://231977665|C|rbxassetid://167570993|3|B|rbxassetid://1398336403|0.899|A|1.2|rbxassetid://154757584|-0.686,82.71,-127.046|0.15,10,10|4.938,83.76,-126.923|5.088,83.235,-126.923|5.163,83.735,-125.398|5.163,83.73'
  179. ..'5,-128.448|6.217,84.596,-128.448|0,0,-95|6.291,84.59,-126.923|6.217,84.596,-125.398|-6.006,83.76,-126.923|-6.156,83.235,-126.923|0,-180,-90|-6.231,83.735,-128.448|-6.232,83.735,-125.398|-7.286,84.596,-125.398|0,1'
  180. ..'80,-95|-7.36,84.59,-126.923|-7.286,84.596,-128.448|5.636,90.585,-123.396|CFrame|-0.686,70.485,-127.047|0.1,0.1,0.1|3.9999998248094e+25,3.9999998248094e+25,3.9999998248094e+25|400000,400000,400000|Weld|SectionA|Si'
  181. ..'de|-0.686,14.785,-127.046|0.699,15,15|-0.686,33.985,-127.046|36.5,15,15|-0.686,13.385,-127.046|-0.686,54.835,-127.046|-0.686,33.96,-127.046|43.75,14,14|-0.686,53.435,-127.046|-0.686,57.285,-127.046|2.9,15,15|-0.6'
  182. ..'86,59.635,-127.046|-9.505,10.805,-118.241|0,-135,0|9.949,1.159,0.5|8.102,10.805,-135.848|-9.505,10.805,-135.848|8.102,10.805,-118.241|8.085,23.885,-135.831|0,-45,0|0.5,25,10|-9.487,23.885,-135.831|8.085,23.885,-1'
  183. ..'18.259|-9.487,23.885,-118.259|-0.686,10.585,-127.046|3.2,15,15|BoosterD|-0.661,39.385,-139.522|0,-90,90|2.3,10,10|-0.661,37.185,-139.522|2.099,9,9|-0.661,37.535,-139.522|0.5,10,10|-0.661,36.735,-139.522|-0.661,24'
  184. ..'.535,-139.522|22.3,10,10|-0.661,35.935,-139.522|-0.661,12.685,-139.522|-0.661,12.235,-139.522|-0.661,11.885,-139.522|-0.661,10.035,-139.522|BoosterC|11.814,10.035,-127.046|11.814,11.885,-127.046|11.814,12.685,-12'
  185. ..'7.046|11.814,12.235,-127.046|11.814,24.535,-127.046|11.814,35.935,-127.046|0,0,90|11.814,36.735,-127.046|11.814,37.535,-127.046|11.814,37.185,-127.046|11.814,39.385,-127.046|BoosterA|-13.136,39.385,-127.046|-13.1'
  186. ..'36,37.185,-127.046|-13.136,37.535,-127.046|-13.136,36.735,-127.046|-13.136,24.535,-127.046|-13.136,35.935,-127.046|-13.136,12.235,-127.046|-13.136,12.685,-127.046|-13.136,11.885,-127.046|-13.136,10.035,-127.046|B'
  187. ..'oosterB|-0.661,10.035,-114.571|-0.661,12.235,-114.571|-0.661,11.885,-114.571|-0.661,12.685,-114.571|-0.661,24.535,-114.571|-0.661,35.935,-114.571|-0.661,37.185,-114.571|-0.661,36.735,-114.571|-0.661,37.535,-114.5'
  188. ..'71|-0.661,39.385,-114.571|Button|Head|0.96,0.803,0.188|0.99|18.399,2.599,-77.714|2,1,1|816|-1.481,0.871,-126.334|48.619,1.709,48.499;0,202>15>226,229>15>333,278>15>279;2|1:2;n;3|1:3|2:4|3:5|4:6|5:7|6:8|7:9|8:10|9'
  189. ..':10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:11|2:4|3:5|4:6|5:12|6:13|7:14|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:15|2:4|3:5|4:6|5:16|6:17|7:9|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:18|2:4|3:5|4:6|5:19|6'
  190. ..':20|7:14|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:21|2:4|3:5|4:6|5:22|7:9|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:23|2:4|3:5|4:6|5:24|6:25|7:14|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:26|2:4|3:5|'
  191. ..'4:6|5:27|6:28|7:9|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:29|2:4|3:5|4:6|5:30|6:31|7:14|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;2|1:32;n;2|1:33;n;1|2:4|3:34|4:6|5:35|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:'
  192. ..'34|4:6|5:37|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:40|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:42|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:43|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:'
  193. ..'45|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:46|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:47|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:48|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:49|6:8|7:'
  194. ..'36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:50|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:51|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:52|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:53|6:41|7:39|9:10|1'
  195. ..'3:10|3:34|3:34;1|2:4|3:34|4:6|5:54|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:55|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:56|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:57|6:38|7:39|9:10|13:10|3:34|'
  196. ..'3:34;1|2:4|3:34|4:6|5:58|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:59|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:60|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:61|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4'
  197. ..'|3:34|4:6|5:62|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:63|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:64|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:65|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:'
  198. ..'6|5:66|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:67|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:68|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:69|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:70|6:41'
  199. ..'|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:71|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:72|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:73|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:74|6:8|7:36|9:10|'
  200. ..'13:10|3:34|3:34;1|2:4|3:34|4:6|5:75|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:76|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:77|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:78|6:8|7:36|9:10|13:10|3:3'
  201. ..'4|3:34;1|2:4|3:34|4:6|5:79|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:80|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:81|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:82|6:8|7:36|9:10|13:10|3:34|3:34;1|'
  202. ..'2:4|3:34|4:6|5:83|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:84|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:85|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:86|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4'
  203. ..':6|5:87|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:88|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:89|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:90|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:91|6:'
  204. ..'28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:92|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:93|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:94|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:95|6:41|7:39|9:'
  205. ..'10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:96|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:97|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:98|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:99|6:8|7:36|9:10|13:10|3'
  206. ..':34|3:34;1|2:4|3:34|4:6|5:100|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:101|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:102|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:103|6:8|7:36|9:10|13:10|3:34|3:'
  207. ..'34;1|2:4|3:34|4:6|5:104|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:105|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:106|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:107|6:28|7:44|9:10|13:10|3:34|3:34;1|2'
  208. ..':4|3:34|4:6|5:108|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:109|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:110|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:111|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:'
  209. ..'34|4:6|5:112|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:113|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:114|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:115|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:'
  210. ..'6|5:116|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:117|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:118|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:119|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:12'
  211. ..'0|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:121|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:122|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:123|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:124|6:4'
  212. ..'1|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:125|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:126|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:127|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:128|6:8|7:36'
  213. ..'|9:10|13:10|3:34|3:34;1|2:4|3:129|4:6|5:130|6:8|7:131|9:10|13:10|3:129|3:129;1|2:4|3:132|4:133|5:134|6:8|7:36|9:10|13:10|3:132|3:132;3|2:4|3:135|4:6|5:136|6:137|7:138|14:139|8:10|9:10|10:10|11:10|12:10|13:10|3:13'
  214. ..'5|3:135;1|2:4|3:132|4:133|5:140|6:38|7:39|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:141|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:142|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:143|6:8|7:36|9:10|13:10|3:'
  215. ..'34|3:34;1|2:4|3:34|4:6|5:144|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:145|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:146|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:147|6:28|7:44|9:10|13:10|3:34|3:'
  216. ..'34;1|2:4|3:34|4:6|5:148|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:149|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:150|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:151|6:8|7:36|9:10|13:10|3:34|3:34;1|2'
  217. ..':4|3:34|4:6|5:152|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:153|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:154|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:155|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:3'
  218. ..'4|4:6|5:156|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:157|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:158|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:159|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|'
  219. ..'5:160|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:161|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:162|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:163|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:164'
  220. ..'|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:165|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:166|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:167|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:168|6:8|7'
  221. ..':36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:169|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:170|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:171|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:172|6:38|7:39|'
  222. ..'9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:173|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:174|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:175|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:132|4:133|5:176|6:8|7:36|9:10'
  223. ..'|13:10|3:132|3:132;1|2:4|3:34|4:6|5:177|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:178|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:179|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:180|6:8|7:36|9:10|13:'
  224. ..'10|3:34|3:34;1|2:4|3:34|4:6|5:181|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:182|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:183|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:184|6:8|7:36|9:10|13:10|3:'
  225. ..'34|3:34;1|2:4|3:34|4:6|5:185|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:186|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:187|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:188|6:28|7:44|9:10|13:10|3:34|3:'
  226. ..'34;1|2:4|3:34|4:6|5:189|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:190|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:191|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:192|6:28|7:44|9:10|13:10|3:34|3:34;1|'
  227. ..'2:4|3:34|4:6|5:193|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:194|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:195|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:196|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:'
  228. ..'34|4:6|5:197|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:198|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:199|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:200|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|'
  229. ..'5:201|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:202|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:203|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:204|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:205'
  230. ..'|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:206|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:207|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:208|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:209|6:8|'
  231. ..'7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:210|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:211|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:212|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:213|6:38|7:39|'
  232. ..'9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:214|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:215|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:216|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:217|6:41|7:39|9:10|13'
  233. ..':10|3:34|3:34;1|2:4|3:34|4:6|5:218|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:219|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:220|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:221|6:8|7:36|9:10|13:10|3:'
  234. ..'34|3:34;1|2:4|3:34|4:6|5:222|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:223|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:224|6:8|7:36|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:225|6:41|7:39|9:10|13:10|3:34|3:'
  235. ..'34;1|2:4|3:34|4:6|5:226|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:132|4:133|5:117|6:38|7:227|9:10|13:10|3:132|3:132;3|2:4|3:135|4:133|5:228|6:137|7:229|14:139|8:10|9:10|10:10|11:10|12:10|13:10|3:135|3:135;1|2:4|3:13'
  236. ..'2|4:133|5:230|6:28|7:44|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:231|6:41|7:39|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:232|6:41|7:233|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:234|6:8|7:36|9:10|13:10|3:34|3:34'
  237. ..';1|2:4|3:34|4:6|5:235|6:41|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:236|6:28|7:44|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:237|6:38|7:39|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:238|6:8|7:36|9:10|13:10|3:34|3:34;1|2:'
  238. ..'4|3:34|4:6|5:239|6:28|7:44|9:10|13:10|3:34|3:34;p;2|1:240;n;1|2:4|3:34|4:6|5:241|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:243|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:129|4:6|5:244|6:8|7:245|9:10|13:10|3:129'
  239. ..'|3:129;1|2:4|3:34|4:6|5:246|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:132|4:133|5:247|6:8|7:248|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:249|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:250|6:8|7:248|9:10|13:10|3:'
  240. ..'34|3:34;1|2:4|3:34|4:6|5:251|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:132|4:133|5:252|6:8|7:253|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:254|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:255|6:8|7:242|9:10|13:10|3'
  241. ..':34|3:34;1|2:4|3:34|4:6|5:256|6:8|7:248|9:10|13:10|3:34|3:34;3|2:4|3:135|4:6|5:257|6:13|7:138|14:139|8:10|9:10|10:10|11:10|12:10|13:10|3:135|3:135;1|2:4|3:34|4:6|5:258|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:'
  242. ..'6|5:259|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:260|6:8|7:242|9:10|13:10|3:34|3:34;3|2:4|3:135|4:6|5:261|6:13|7:138|14:139|8:10|9:10|10:10|11:10|12:10|13:10|3:135|3:135;1|2:4|3:34|4:6|5:262|6:8|7:242|9:10'
  243. ..'|13:10|3:34|3:34;1|2:4|3:34|4:6|5:263|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:264|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:265|6:8|7:242|9:10|13:10|3:34|3:34;1|2:4|3:34|4:6|5:266|6:8|7:242|9:10|13:'
  244. ..'10|3:34|3:34;1|2:4|3:34|4:6|5:267|6:8|7:242|9:10|13:10|3:34|3:34;1|1:268|2:4|3:129|4:6|16:4|5:269|6:8|7:270|9:10|13:10|3:129|3:129;p;p;4|1:271;n;5;p;2|1:272;n;2|1:273;n;1|2:4|3:135|4:6|5:274|6:275|7:276|9:10|13:1'
  245. ..'0|3:135|3:135;1|2:4|3:135|4:6|5:277|6:275|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:278|6:279|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:280|6:275|7:276|9:10|13:10|3:135|3:135;1|2:4|3:132|4:6|16:281|5:28'
  246. ..'2|6:283|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:286|6:287|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:288|6:287|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:289|6:290|7:276|9:10|13:10|3:135|3:1'
  247. ..'35;1|2:4|3:135|4:6|5:291|6:290|7:276|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:292|6:279|7:293|18:139|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:294|6:287|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:295|6:290|7'
  248. ..':276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:296|6:297|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:298|6:279|7:276|9:10|13:10|3:135|3:135;1|2:4|3:132|4:6|16:281|5:299|6:275|7:284|9:10|13:10|3:132|3:132;1|2:4|'
  249. ..'3:132|4:6|16:281|5:300|6:279|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|16:281|5:301|6:287|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|16:281|5:302|6:275|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4'
  250. ..'|3:132|4:6|16:281|5:303|6:290|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:304|6:283|7:276|9:10|13:10|3:135|3:135;1|2:4|3:132|4:6|16:281|5:305|6:279|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:'
  251. ..'306|6:283|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:307|6:297|7:308|9:10|13:10|3:135|3:135;1|2:4|3:132|4:6|16:281|5:309|6:283|7:284|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|16:281|5:310|6:290|7:284|17:2'
  252. ..'85|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|16:281|5:311|6:297|7:312|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:313|6:279|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:314|6:297|7:276|9:10|13:10|3:135|3:135;1|2:4|3:'
  253. ..'135|4:6|5:315|6:283|7:276|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:316|6:279|7:317|18:139|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:318|6:279|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:320|6:275|7:319|17:285'
  254. ..'|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:321|6:297|7:322|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:323|6:283|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:324|6:279|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:13'
  255. ..'5|4:6|5:325|6:290|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:326|6:287|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:327|6:279|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:328|6:279|7:276|9:1'
  256. ..'0|13:10|3:135|3:135;1|2:4|3:135|4:6|5:329|6:290|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:330|6:290|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:331|6:287|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:332'
  257. ..'|6:275|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:333|6:287|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:334|6:290|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:335|6:287|7:276|9:10|13:10|3:1'
  258. ..'35|3:135;1|2:4|3:135|4:6|5:336|6:275|7:337|9:10|13:10|3:135|3:135;2;n;1|1:338|2:4|3:135|4:6|5:339|6:340|7:341|17:285|9:10|13:10|3:135|3:135;1|1:338|2:4|3:135|4:6|16:342|5:343|6:340|7:344|17:285|9:10|13:10|3:135|3'
  259. ..':135;p;1|2:4|3:135|4:6|5:345|6:297|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:346|6:275|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:347|6:283|7:276|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:34'
  260. ..'8|6:283|7:319|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:349|6:297|7:350|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:351|6:283|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:352|6:297|7:319|9:10|13:10|3:135|3:1'
  261. ..'35;1|2:4|3:135|4:6|5:353|6:287|7:354|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:355|6:279|7:356|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:357|6:297|7:319|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:358|6:283|7:3'
  262. ..'19|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:359|6:275|7:319|9:10|13:10|3:135|3:135;2|1:360;n;1|2:4|3:132|4:6|5:361|6:362|7:363|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:364|6:362|7:365|9:10|13:10|3:34|3:34;1'
  263. ..'|2:4|3:132|4:6|5:366|6:362|7:363|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|5:367|6:368|7:369|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|5:370|6:368|7:371|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:372|6:368|7:373|9:10|1'
  264. ..'1:139|13:10|3:132|3:132;6|3:34|4:6|5:374|6:8|7:375|9:139|13:10|3:34|3:34;p;1|2:4|3:132|4:6|16:281|5:376|6:287|7:284|17:285|9:10|13:10|3:132|3:132;1|1:377|3:378|4:133|5:379|6:17|7:380|3:378|3:378;n;7|19:381;8;5;p;'
  265. ..'1|2:4|3:132|4:133|5:382|6:279|7:293|18:139|17:285|9:10|13:10|3:132|3:132;n;9|20:10|21:383|22:384;p;1|1:385|2:4|3:135|4:6|5:386|6:279|7:387|18:139|9:10|13:10|3:135|3:135;n;10|1:388|23:4|24:389|25:390|26:391;10|1:3'
  266. ..'92|23:4|25:390|26:393;10|1:394|25:395|26:4;10|1:396|25:397|26:398;10|1:399|25:400|26:401;10|1:402|23:4|24:403|25:404;p;1|2:4|3:132|4:6|5:405|6:279|7:406|18:139|9:10|13:10|3:132|3:132;2|1:360;n;6|3:132|4:6|5:407|6'
  267. ..':17|7:375|9:139|13:10|3:132|3:132;1|2:4|3:132|4:133|5:408|6:279|7:373|9:10|11:139|13:10|3:132|3:132;1|2:4|3:132|4:6|5:409|6:279|7:371|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|5:410|6:279|7:369|9:10|13:10|3:132|3:13'
  268. ..'2;1|2:4|3:132|4:6|5:411|6:412|7:363|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:413|6:412|7:365|9:10|13:10|3:34|3:34;1|2:4|3:132|4:6|5:414|6:412|7:363|9:10|13:10|3:132|3:132;p;2|1:360;n;6|3:132|4:6|5:415|6:28|7:375|9'
  269. ..':139|13:10|3:132|3:132;1|2:4|3:132|4:133|5:416|6:417|7:373|9:10|11:139|13:10|3:132|3:132;1|2:4|3:132|4:6|5:418|6:417|7:371|9:10|13:10|3:132|3:132;1|2:4|3:132|4:6|5:419|6:417|7:369|9:10|13:10|3:132|3:132;1|2:4|3:1'
  270. ..'32|4:6|5:420|6:421|7:363|9:10|13:10|3:132|3:132;1|2:4|3:34|4:6|5:422|6:421|7:365|9:10|13:10|3:34|3:34;1|2:4|3:132|4:6|5:423|6:421|7:363|9:10|13:10|3:132|3:132;p;1|2:4|3:135|4:6|5:424|6:290|7:319|17:285|9:10|13:10'
  271. ..'|3:135|3:135;p;1|1:425|2:4|3:135|4:6|16:4|5:426|6:8|7:427|17:285|9:10|13:10|3:135|3:135;n;11|27:378|28:428;12|29:429;p;5|1:430;2|1:431;n;2|1:432;n;1|2:4|3:132|4:133|5:433|6:279|7:434|18:139|17:285|9:10|13:10|3:13'
  272. ..'2|3:132;1|2:4|3:135|4:6|5:435|6:279|7:436|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:437|6:279|7:434|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:438|6:279|7:434|18:139|17:285|9:10|13:10'
  273. ..'|3:132|3:132;1|2:4|3:135|4:133|5:439|6:279|7:440|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:441|6:279|7:434|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:442|6:279|7:443|18:139|17:285|9:10|'
  274. ..'13:10|3:135|3:135;1|2:4|3:132|4:133|5:444|6:279|7:317|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:445|6:446|7:447|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:448|6:446|7:447|17:285|9:10|13:10|3'
  275. ..':132|3:132;1|2:4|3:132|4:133|5:449|6:38|7:447|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:450|6:38|7:447|17:285|9:10|13:10|3:132|3:132;13|2:4|3:132|4:6|5:451|6:452|7:453|17:285|9:10|3:132|3:132;13|2:4|3:132'
  276. ..'|4:6|5:454|6:41|7:453|17:285|9:10|3:132|3:132;13|2:4|3:132|4:6|5:455|6:446|7:453|17:285|9:10|3:132|3:132;13|2:4|3:132|4:6|5:456|6:38|7:453|17:285|9:10|3:132|3:132;1|2:4|3:135|4:133|5:457|6:279|7:458|18:139|17:285'
  277. ..'|9:10|13:10|3:135|3:135;p;2|1:459;n;1|2:4|3:132|4:133|5:460|6:461|7:462|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:463|6:461|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:465|6:461|7:'
  278. ..'466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:467|6:461|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:468|6:297|7:469|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:470|6:4'
  279. ..'61|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:471|6:297|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:472|6:297|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:47'
  280. ..'3|6:297|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:474|6:297|7:462|18:139|17:285|9:10|13:10|3:135|3:135;p;2|1:475;n;1|2:4|3:135|4:6|5:476|6:279|7:462|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3'
  281. ..':132|4:133|5:477|6:279|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:478|6:279|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:479|6:279|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|'
  282. ..'2:4|3:135|4:6|5:480|6:279|7:469|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:481|6:482|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:483|6:482|7:466|18:139|17:285|9:10|13:10|3:132|3:1'
  283. ..'32;1|2:4|3:132|4:133|5:484|6:482|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:485|6:482|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:486|6:482|7:462|18:139|17:285|9:10|13:10|3:13'
  284. ..'2|3:132;p;2|1:487;n;1|2:4|3:132|4:133|5:488|6:482|7:462|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:489|6:482|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:490|6:482|7:466|18:139|17:28'
  285. ..'5|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:491|6:482|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:492|6:279|7:469|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:493|6:482|7:466|18:139|'
  286. ..'17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:494|6:279|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:495|6:279|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:496|6:279|7:466|18'
  287. ..':139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:497|6:279|7:462|18:139|17:285|9:10|13:10|3:135|3:135;p;2|1:498;n;1|2:4|3:135|4:6|5:499|6:297|7:462|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:135|4:6|5:500|6'
  288. ..':297|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:501|6:297|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:502|6:297|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:'
  289. ..'503|6:297|7:469|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:133|5:504|6:461|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:135|4:6|5:505|6:461|7:464|18:139|17:285|9:10|13:10|3:135|3:135;1|2:4|3:132|4:1'
  290. ..'33|5:506|6:461|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:507|6:461|7:466|18:139|17:285|9:10|13:10|3:132|3:132;1|2:4|3:132|4:133|5:508|6:461|7:462|18:139|17:285|9:10|13:10|3:132|3:132;p;p;p;2|'
  291. ..'1:509;1|1:510|2:4|3:511|16:512|5:513|7:514|17:285|13:10|3:511|3:511;1|2:4|3:129|4:515|30:4|5:516|6:17|7:517|9:10|13:10|3:129|3:129;p;')
  292. for _,Object in pairs(Objects) do
  293. Object.Parent = script and script.Parent==workspace and script or workspace
  294. end
  295. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement