Advertisement
AxeuerAlt

Rocket Test #4

Oct 13th, 2019
876
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.27 KB | None | 0 0
  1. --Just Cause Rocket Test #3 got alotta views
  2. -- Converted using Mokiros's Model to Script plugin
  3. -- Converted string size: 31744
  4.  
  5. local Scripts = { function()
  6. function a()script.Parent.ClickDetector.MaxActivationDistance=0 script.Parent.Parent.Core.A:Play()script.Parent.BrickColor=BrickColor.new("Bright red")script.Parent.Parent.Parent.Parent.Launch:Fire()end script.Parent.ClickDetector.MouseClick:connect(a)
  7. end; function()
  8. 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()
  9. end; function()
  10. 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(7)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)
  11. end;}local ActualScripts = {}
  12. function s(var)
  13. local func = table.remove(Scripts,1)
  14. setfenv(func,setmetatable({script=var},{
  15. __index = getfenv(func),
  16. }))
  17. table.insert(ActualScripts,coroutine.wrap(func))
  18. end
  19.  
  20. local Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  21. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  22. function(t,f)
  23. for a,b in pairs(t) do
  24. f(a,b)
  25. end
  26. end
  27. local Types = {
  28. Color3 = Color3.new,
  29. Vector3 = Vector3.new,
  30. Vector2 = Vector2.new,
  31. UDim = UDim.new,
  32. UDim2 = UDim2.new,
  33. CFrame = CFrame.new,
  34. Rect = Rect.new,
  35. NumberRange = NumberRange.new,
  36. NumberSequence = function(...)
  37. local a = {...}
  38. local t = {}
  39. repeat
  40. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  41. until #a==0
  42. return NumberSequence.new(t)
  43. end,
  44. ColorSequence = function(...)
  45. local a = {...}
  46. local t = {}
  47. repeat
  48. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  49. until #a==0
  50. return ColorSequence.new(t)
  51. end,
  52. number = tonumber,
  53. boolean = function(a)
  54. return a=="1"
  55. end
  56. }
  57. split = function(str,sep)
  58. if not str then return end
  59. local fields = {}
  60. local ConcatNext = false
  61. str:gsub(("([^%s]+)"):format(sep),function(c)
  62. if ConcatNext == true then
  63. fields[#fields] = fields[#fields]..sep..c
  64. ConcatNext = false
  65. else
  66. fields[#fields+1] = c
  67. end
  68. if c:sub(#c)=="\\" then
  69. c = fields[#fields]
  70. fields[#fields] = c:sub(1,#c-1)
  71. ConcatNext = true
  72. end
  73. end)
  74. return fields
  75. end
  76. RemoveAndSplit = function(t)
  77. return split(table_remove(t,1),comma)
  78. end
  79. t = split(str,";")
  80. props = RemoveAndSplit(t)
  81. classes = RemoveAndSplit(t)
  82. values = split(table_remove(t,1),'|')
  83. ICList = RemoveAndSplit(t)
  84. InstanceList = {}
  85. Model = inst"Model"
  86. CurPar = Model
  87. table_foreach(t,function(ct,c)
  88. if c=="n" or c=="p" then
  89. CurPar = c=="n" and LastIns or CurPar[parnt]
  90. else
  91. ct = split(c,"|")
  92. local class = classes[tonum(table_remove(ct,1))]
  93. if class=="UnionOperation" then
  94. LastIns = {Locked="true",Anchored="true",UsePartColor="true"}
  95. else
  96. LastIns = inst(class)
  97. if LastIns:IsA"Script" then
  98. s(LastIns)
  99. end
  100. end
  101.  
  102. local function SetProperty(LastIns,p,str,s)
  103. s = Types[typeof(LastIns[p])]
  104. LastIns[p] = s and s(unpack(split(str,comma))) or str
  105. end
  106.  
  107. local UnionData
  108. table_foreach(ct,function(s,p,a,str)
  109. a = p:find":"
  110. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  111. if p=="UnionData" then
  112. UnionData = split(str," ")
  113. return
  114. end
  115. if class=="UnionOperation" then
  116. LastIns[p] = str
  117. return
  118. end
  119. SetProperty(LastIns,p,str)
  120. end)
  121.  
  122. if UnionData then
  123. local LI_Data = LastIns
  124. LastIns = DecodeUnion(UnionData)
  125. table_foreach(LI_Data,function(p,str)
  126. SetProperty(LastIns,p,str)
  127. end)
  128. end
  129. table.insert(InstanceList,LastIns)
  130. LastIns[parnt] = CurPar
  131. end
  132. end)
  133. table_remove(ICList,1)
  134. table_foreach(ICList,function(a,b)
  135. b = split(b,">")
  136. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  137. end)
  138.  
  139. return Model:GetChildren()
  140. end
  141.  
  142. local Objects = Decode('Name,Anchored,Color,Material,Position,Orientation,Size,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,PrimaryPart,Transparency,Shape,CanCollide,C0,C1,Part0,Part1,Looped,PlaybackSpeed,'
  143. ..'SoundId,Volume,Face,Range,Brightness,MaxActivationDistance,Velocity,MaxForce,MaxTorque,Style;Part,Model,TrussPart,Weld,Seat,Sound,SurfaceLight,ClickDetector,CylinderMesh,Script,BodyVelocity,BodyGyro,WedgePart,Bi'
  144. ..'ndableEvent;Part|RocketModel|Truss7|1|1,0,0|1056|41.744,20.124,-30.047|0,-90,0|2,38.049,2|0|Truss8|38.77,38.099,-30.047|-90,-90,0|2,3.999,2|Truss5|19.582,20.124,-7.885|0,180,0|Truss4|19.582,38.099,-10.86|-90,-18'
  145. ..'0,0|Truss3|-2.581,20.124,-30.047|0,90,0|Truss1|0.394,38.099,-30.047|-90,90,0|Truss2|19.582,20.124,-52.21|Truss6|19.581,38.099,-49.235|-90,0,0|Rocket|Top|0.388,0.372,0.384|1088|25.866,88.166,-26.297|0,150,-90|0.1'
  146. ..'5,0.2,4|13.222,85.516,-33.598|19.544,85.516,-37.248|0,90,-90|13.222,88.166,-33.598|0.392,0.588,0.588|1568|0.8|15.894,86.866,-36.27|0,120,-90|2.599,0.05,4|25.866,85.516,-33.598|0,30,-90|13.222,88.166,-26.297|23.1'
  147. ..'94,85.516,-36.27|0,60,-90|23.194,88.166,-36.27|0.972,0.972,0.972|19.544,81.816,-29.948|0.499,15,15|2|25.866,88.166,-33.598|15.894,88.166,-23.626|12.244,88.166,-29.948|0,0,-90|19.544,88.166,-22.647|13.222,86.866,'
  148. ..'-33.598|19.544,86.866,-22.647|13.222,86.866,-26.297|25.866,86.866,-26.297|15.894,86.866,-23.626|23.194,88.166,-23.626|19.544,86.866,-37.248|15.894,88.166,-36.27|26.844,85.141,-27.998|6.2,0.2,0.2|23.194,86.866,-2'
  149. ..'3.626|23.194,86.866,-36.27|12.244,86.866,-29.948|2.5,0.05,4|19.544,88.166,-37.248|12.244,85.516,-29.948|15.894,85.516,-36.27|19.544,80.566,-29.948|2,14.8,14.8|19.544,83.766,-37.248|3.4,0.2,4|25.866,89.916,-26.29'
  150. ..'7|26.844,85.066,-31.923|6.05,0.231,0.173|15.894,83.766,-36.27|19.544,89.916,-37.248|23.194,83.766,-36.27|25.866,89.916,-33.598|19.544,89.916,-22.647|19.544,85.516,-22.647|15.894,83.766,-23.626|15.894,85.516,-23.'
  151. ..'626|13.222,83.766,-26.297|25.866,85.516,-26.297|13.222,89.916,-26.297|15.894,89.916,-23.626|13.222,85.516,-26.297|25.828,83.766,-26.233|3.4,0.2,3.85|Door|0.356,0.364,0.411|26.845,88.093,-29.973|0,0,60|0.05,0.2,0'
  152. ..'.2|0|28.345,90.691,-29.973|6.05,0.2,3.75|12.244,89.916,-29.948|13.222,89.916,-33.598|23.194,85.516,-23.626|23.194,83.766,-23.626|23.194,89.916,-36.27|15.894,89.916,-36.27|12.244,83.766,-29.948|25.816,83.766,-33.'
  153. ..'684|3.4,0.2,3.8|19.544,83.741,-22.647|3.45,0.2,4|26.844,89.916,-29.948|23.194,89.916,-23.626|13.222,83.766,-33.598|Seat|12.789,83.928,-31.498|0,180,-95|3.899,0.65,0.7|0.015,0.686,0.925|12.715,83.921,-29.973|3.89'
  154. ..'9,0.5,2.35|12.789,83.928,-28.448|13.844,83.066,-28.448|0,-180,-90|2,2.599,0.699|13.844,83.066,-31.498|2,2.599,0.7|13.919,82.566,-29.973|1,2.449,2.35|-0.501,0,0,-0,-0,-1,0,1,0,1,0,0|-0.001,-0.025,0.149,-1,0,0,0,0'
  155. ..',1,0,1,0|14.069,83.091,-29.973|2.349,0.05,2.149|288|14.669,90.916,-30.648|0.05,3.849,1|14.669,90.916,-29.248|14.669,91.266,-29.948|0.7,4.849,3|24.369,90.916,-30.648|24.369,91.266,-29.948|Core|19.544,69.816,-29.9'
  156. ..'48|19.7,15,15|D|1.5|rbxassetid://558246436|5|E|2|Decoupler|rbxassetid://231977665|C|rbxassetid://167570993|3|B|rbxassetid://160914477|0.899|A|1.2|rbxassetid://154757584|19.544,82.041,-29.948|0.15,10,10|19.667,83'
  157. ..'.091,-35.571|0,-0.026,0,1,0,0,-0,-0,-1,0,1,0|-0.5,-0.15,-0.001,0,0,1,0,1,0,-1,0,0|19.667,82.566,-35.721|21.192,83.066,-35.796|18.142,83.066,-35.796|18.142,83.928,-36.85|0,90,-95|19.667,83.921,-36.925|21.192,83.9'
  158. ..'28,-36.85|19.667,83.091,-24.627|-0.5,-0.151,-0.001,0,0,1,0,1,0,-1,0,0|19.667,82.566,-24.477|0,-90,-90|18.142,83.066,-24.402|21.192,83.066,-24.402|21.192,83.928,-23.348|0,-90,-95|19.667,83.921,-23.273|18.142,83.9'
  159. ..'28,-23.348|26.844,88.166,-29.973|0.149,0.231,4.073|25.866,86.866,-33.598|24.369,90.916,-29.248|19.544,91.816,-29.948|14|0.699|Trigger|0.203,0.556,0.25|14.797,84.171,-28.419|0,-180,0|0.4,0.21,0.4|12|CFrame|19.543'
  160. ..',69.816,-29.947|0.1,0.1,0.1|0,1,0|3.9999998248094e+25,3.9999998248094e+25,3.9999998248094e+25|400000,400000,400000|SectionA|Side|19.544,14.116,-29.948|0.699,15,15|19.544,33.316,-29.948|36.5,15,15|19.544,9.916,-2'
  161. ..'9.948|3.2,15,15|19.544,12.716,-29.948|19.544,54.166,-29.948|0.066,0.066,0.066|19.544,33.291,-29.948|43.75,14,14|19.544,52.766,-29.948|19.544,56.616,-29.948|2.9,15,15|19.544,58.966,-29.948|28.349,10.136,-21.129|0'
  162. ..',-45,0|9.949,1.159,0.5|10.742,10.136,-38.736|10.742,10.136,-21.129|0,-135,0|28.349,10.136,-38.736|10.759,23.216,-38.718|0,45,0|0.5,25,10|10.759,23.216,-21.146|0,135,0|28.331,23.216,-38.718|28.331,23.216,-21.146|'
  163. ..'BoosterD|7.068,38.716,-29.972|0,0,90|2.3,10,10|7.068,36.516,-29.972|2.099,9,9|7.068,36.866,-29.972|0.5,10,10|7.068,36.066,-29.972|7.068,23.866,-29.972|22.3,10,10|7.068,35.266,-29.972|7.068,12.016,-29.972|7.068,1'
  164. ..'1.566,-29.972|7.068,11.216,-29.972|7.068,9.366,-29.972|BoosterC|19.544,9.366,-42.448|19.544,11.216,-42.448|19.544,12.016,-42.448|19.544,11.566,-42.448|19.544,23.866,-42.448|19.544,35.266,-42.448|0,90,90|19.544,3'
  165. ..'6.066,-42.448|19.544,36.866,-42.448|19.544,36.516,-42.448|19.544,38.716,-42.448|BoosterA|19.544,38.716,-17.497|19.544,36.516,-17.497|19.544,36.866,-17.497|19.544,36.066,-17.497|19.544,23.866,-17.497|19.544,35.26'
  166. ..'6,-17.497|19.544,11.566,-17.497|19.544,12.016,-17.497|19.544,11.216,-17.497|19.544,9.366,-17.497|BoosterB|32.019,9.366,-29.972|32.019,11.566,-29.972|32.019,11.216,-29.972|32.019,12.016,-29.972|32.019,23.866,-29.'
  167. ..'972|32.019,35.266,-29.972|32.019,36.516,-29.972|32.019,36.066,-29.972|32.019,36.866,-29.972|32.019,38.716,-29.972|Weld|Walk|Truss|0.105,0.164,0.207|54.092,48.624,-28.041|0.2,0.249,2.621|55.756,48.624,-31.4|0.2,0'
  168. ..'.249,1.371|55.756,48.624,-28.499|54.042,59.124,-31.841|56.192,59.124,-29.966|0.2,0.249,2.071|56.192,50.724,-29.966|55.756,50.724,-31.4|54.042,50.724,-31.841|55.756,59.124,-31.4|54.042,57.024,-31.841|54.092,52.82'
  169. ..'4,-28.041|55.756,54.924,-31.4|56.192,57.024,-29.966|55.756,59.124,-28.499|55.756,52.824,-28.499|54.042,52.824,-31.841|54.042,54.924,-31.841|55.756,57.024,-31.4|55.756,50.724,-28.499|56.192,54.924,-29.966|54.092,'
  170. ..'50.724,-28.041|54.042,48.624,-31.841|56.192,52.824,-29.966|55.756,54.924,-28.499|55.756,52.824,-31.4|55.756,57.024,-28.499|54.092,57.024,-28.041|54.092,54.924,-28.041|54.092,59.124,-28.041|55.756,10.824,-31.4|55'
  171. ..'.756,12.924,-28.499|54.092,10.824,-28.041|55.756,15.024,-31.4|54.042,19.224,-31.841|54.042,12.924,-31.841|55.756,12.924,-31.4|56.192,10.824,-29.966|55.756,15.024,-28.499|54.092,15.024,-28.041|56.192,15.024,-29.9'
  172. ..'66|55.756,19.224,-31.4|55.756,10.824,-28.499|54.042,10.824,-31.841|56.192,12.924,-29.966|54.092,12.924,-28.041|54.042,15.024,-31.841|55.756,17.124,-31.4|56.192,17.124,-29.966|54.042,17.124,-31.841|54.092,21.324,'
  173. ..'-28.041|55.756,17.124,-28.499|56.192,19.224,-29.966|54.092,19.224,-28.041|55.756,19.224,-28.499|54.092,17.124,-28.041|55.756,21.324,-28.499|56.192,21.324,-29.966|55.756,21.324,-31.4|54.042,21.324,-31.841|54.092,'
  174. ..'38.124,-28.041|54.042,36.024,-31.841|55.756,40.224,-31.4|55.756,36.024,-28.499|54.042,42.324,-31.841|54.042,40.224,-31.841|54.042,44.424,-31.841|55.756,42.324,-31.4|56.192,38.124,-29.966|54.092,36.024,-28.041|55'
  175. ..'.756,36.024,-31.4|56.192,36.024,-29.966|55.756,38.124,-31.4|54.092,40.224,-28.041|55.756,40.224,-28.499|55.756,38.124,-28.499|56.192,40.224,-29.966|54.042,38.124,-31.841|55.756,46.524,-31.4|54.042,46.524,-31.841'
  176. ..'|55.756,46.524,-28.499|56.192,46.524,-29.966|56.192,44.424,-29.966|55.756,42.324,-28.499|54.092,46.524,-28.041|55.756,44.424,-28.499|55.756,44.424,-31.4|54.092,42.324,-28.041|56.192,42.324,-29.966|54.092,44.424,'
  177. ..'-28.041|51.853,41.599,-29.941|3.899,81,1.899|54.092,84.324,-28.041|51.87,70.149,-29.948|0,90,180|2,23.999,2|55.756,84.324,-31.4|56.192,82.224,-29.966|55.756,82.224,-31.4|54.092,82.224,-28.041|54.042,82.224,-31.8'
  178. ..'41|55.756,82.224,-28.499|55.756,25.524,-31.4|56.192,23.424,-29.966|55.756,23.424,-31.4|54.042,23.424,-31.841|55.756,25.524,-28.499|54.092,23.424,-28.041|56.192,25.524,-29.966|54.092,25.524,-28.041|54.092,27.624,'
  179. ..'-28.041|55.756,27.624,-28.499|56.192,27.624,-29.966|54.042,25.524,-31.841|55.756,23.424,-28.499|54.042,29.724,-31.841|56.192,31.824,-29.966|54.092,33.924,-28.041|55.756,31.824,-31.4|55.756,27.624,-31.4|55.756,29'
  180. ..'.724,-28.499|55.756,31.824,-28.499|54.042,27.624,-31.841|54.092,31.824,-28.041|54.092,29.724,-28.041|55.756,29.724,-31.4|55.756,33.924,-28.499|56.192,33.924,-29.966|55.756,33.924,-31.4|54.042,33.924,-31.841|56.1'
  181. ..'92,29.724,-29.966|54.042,31.824,-31.841|54.042,84.324,-31.841|56.192,80.124,-29.966|55.756,78.024,-28.499|54.092,78.024,-28.041|54.092,80.124,-28.041|55.756,80.124,-28.499|56.192,78.024,-29.966|55.756,78.024,-31'
  182. ..'.4|54.042,78.024,-31.841|54.042,80.124,-31.841|55.756,80.124,-31.4|55.756,73.824,-31.4|56.192,75.924,-29.966|55.756,61.224,-28.499|54.042,75.924,-31.841|56.192,73.824,-29.966|56.192,61.224,-29.966|55.756,75.924,'
  183. ..'-31.4|55.756,61.224,-31.4|54.042,61.224,-31.841|54.042,63.324,-31.841|55.756,73.824,-28.499|54.092,73.824,-28.041|54.092,61.224,-28.041|54.042,73.824,-31.841|55.756,75.924,-28.499|55.756,63.324,-28.499|55.756,65'
  184. ..'.424,-31.4|54.042,65.424,-31.841|54.042,67.524,-31.841|55.756,65.424,-28.499|55.756,63.324,-31.4|56.192,63.324,-29.966|54.092,65.424,-28.041|54.042,69.624,-31.841|55.756,67.524,-31.4|56.192,65.424,-29.966|55.756'
  185. ..',69.624,-31.4|54.092,75.924,-28.041|54.092,63.324,-28.041|54.092,69.624,-28.041|55.756,71.724,-28.499|56.192,71.724,-29.966|55.756,71.724,-31.4|54.092,67.524,-28.041|54.042,71.724,-31.841|56.192,69.624,-29.966|5'
  186. ..'6.192,67.524,-29.966|54.092,71.724,-28.041|55.756,67.524,-28.499|55.756,69.624,-28.499|0.2,75.85,0.2|52.07,29.124,-29.948|2,58.05,2|56.192,84.324,-29.966|55.756,84.324,-28.499|55.756,46.549,-28.499|0.2,75.8,0.2|'
  187. ..'54.092,8.724,-28.041|55.756,8.724,-28.499|56.192,8.724,-29.966|55.756,8.724,-31.4|54.042,8.724,-31.841|56.192,48.624,-29.966|Walkway|27.091,83.274,-28.041|0.2,2.349,0.221|38.792,83.274,-31.841|38.967,81.099,-29.'
  188. ..'941|2.299,1.799,23.672|46.742,83.274,-31.841|39.867,84.324,-28.041|0.2,0.249,25.471|27.091,83.274,-31.841|39.866,82.974,-28.041|30.941,83.274,-31.841|39.942,84.324,-31.841|0.2,0.249,25.621|42.892,83.274,-31.841|'
  189. ..'50.942,83.274,-31.841|39.867,83.124,-31.841|38.92,81.099,-28.948|34.942,83.274,-31.841|38.792,83.274,-28.041|30.941,83.274,-28.041|38.92,81.099,-30.947|42.892,83.274,-28.041|52.692,83.274,-28.041|34.942,83.274,-'
  190. ..'28.041|52.642,83.274,-31.841|46.742,83.274,-28.041|50.942,83.274,-28.041|PrimPart|50.667,81.099,-29.941|2.299,1.799,0.272|Launch;0,10>14>123,59>14>60,81>20>80,81>21>82,98>20>97,98>21>99,107>20>106,107>21>108,382'
  191. ..'>14>406;2|1:2;n;3|1:3|2:4|3:5|4:6|5:7|6:8|7:9|8:10|9: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:1'
  192. ..'0|11:10|12:10|13:10|3:5|3:5;3|1:18|2:4|3:5|4:6|5:19|6: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|6:23|7:9|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:24|2:4|3:5|4:6|5:25|6:26|7:1'
  193. ..'4|8:10|9:10|10:10|11:10|12:10|13:10|3:5|3:5;3|1:27|2:4|3:5|4:6|5: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'
  194. ..':4|3:34|4:35|5:36|6:37|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:39|6:37|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:40|6:41|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:42|6:37|7:38|9:10|13:10|3:34|3:34;1|2:4|'
  195. ..'3:43|4:44|15:45|5:46|6:47|7:48|9:10|13:10|3:43|3:43;1|2:4|3:34|4:35|5:49|6:50|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:51|6:50|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:52|6:53|7:38|9:10|13:10|3:34|3:34;1|2'
  196. ..':4|3:34|4:35|5:54|6:53|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:56|6:41|7:57|16:58|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:59|6:50|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:60|6:53|7:38|9:10|13:10|3:34|3:34;1'
  197. ..'|2:4|3:34|4:35|5:61|6:62|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:63|6:41|7:38|9:10|13:10|3:34|3:34;1|2:4|3:43|4:44|15:45|5:64|6:37|7:48|9:10|13:10|3:43|3:43;1|2:4|3:43|4:44|15:45|5:65|6:41|7:48|9:10|13:10|3:'
  198. ..'43|3:43;1|2:4|3:43|4:44|15:45|5:66|6:50|7:48|9:10|13:10|3:43|3:43;1|2:4|3:43|4:44|15:45|5:67|6:37|7:48|9:10|13:10|3:43|3:43;1|2:4|3:43|4:44|15:45|5:68|6:53|7:48|9:10|13:10|3:43|3:43;1|2:4|3:34|4:35|5:69|6:47|7:3'
  199. ..'8|9:10|13:10|3:34|3:34;1|2:4|3:43|4:44|15:45|5:70|6:41|7:48|9:10|13:10|3:43|3:43;1|2:4|3:34|4:35|5:71|6:47|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:72|6:62|7:73|9:10|13:10|3:34|3:34;1|2:4|3:43|4:44|15:45|5:74'
  200. ..'|6:47|7:48|9:10|13:10|3:43|3:43;1|2:4|3:43|4:44|15:45|5:75|6:53|7:48|9:10|13:10|3:43|3:43;1|2:4|3:43|4:44|15:45|5:76|6:62|7:77|9:10|13:10|3:43|3:43;1|2:4|3:34|4:35|5:78|6:41|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|'
  201. ..'4:35|5:79|6:62|7:38|9:10|13:10|3:34|3:34;1|2:4|3:34|4:35|5:80|6:47|7:38|9:10|13:10|3:34|3:34;1|2:4|4:6|5:81|6:41|7:82|16:58|9:10|13:10;1|2:4|3:55|4:6|5:83|6:41|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:85|6:37|'
  202. ..'7:84|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:86|6:62|7:87|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:88|6:47|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:89|6:41|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:90|6:53|7:84|9'
  203. ..':10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:91|6:50|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:92|6:41|7:84|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:93|6:41|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:94|6:53|7:84|9:10|13'
  204. ..':10|3:55|3:55;1|2:4|3:34|4:35|5:95|6:53|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:96|6:50|7:84|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:97|6:37|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:98|6:50|7:84|9:10|13:10|3'
  205. ..':55|3:55;1|2:4|3:55|4:6|5:99|6:53|7:84|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:100|6:50|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:101|6:37|7:102|9:10|13:10|3:55|3:55;2;n;1|1:103|2:4|3:104|4:6|5:105|6:106|7:107|1'
  206. ..'7:108|9:10|13:10|3:104|3:104;1|1:103|2:4|3:104|4:6|5:109|6:106|7:110|9:10|13:10|3:104|3:104;p;1|2:4|3:55|4:6|5:111|6:62|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:112|6:37|7:84|9:10|13:10|3:55|3:55;1|2:4|3:34|4:'
  207. ..'35|5:113|6:47|7:38|9:10|13:10|3:34|3:34;1|2:4|3:55|4:6|5:114|6:47|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:115|6:53|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:116|6:47|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|'
  208. ..'5:117|6:62|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:118|6:50|7:119|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:120|6:41|7:121|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:122|6:62|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5'
  209. ..':123|6:47|7:84|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:124|6:37|7:84|9:10|13:10|3:55|3:55;2|1:125;n;1|2:4|4:35|5:126|6:127|7:128|9:10|13:10;1|2:4|3:129|4:35|5:130|6:127|7:131|9:10|13:10|3:129|3:129;1|2:4|4:35|5:13'
  210. ..'2|6:127|7:128|9:10|13:10;1|2:4|4:35|5:133|6:134|7:135|9:10|13:10;1|2:4|4:35|5:136|6:134|7:137|9:10|13:10;1|2:4|4:35|5:138|6:134|7:139|9:10|11:58|13:10;n;4|18:140|19:141;p;5|3:129|4:35|5:142|6:8|7:143|9:58|13:10|'
  211. ..'3:129|3:129;p;1|2:4|3:55|4:144|5:145|6:62|7:146|9:10|13:10|3:55|3:55;1|2:4|3:55|4:144|5:147|6:62|7:146|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:148|6:62|7:149|9:10|13:10|3:34|3:34;1|2:4|3:55|4:144|5:150|6:62|7:146'
  212. ..'|9:10|13:10|3:55|3:55;1|2:4|3:34|4:35|5:151|6:62|7:149|9:10|13:10|3:34|3:34;1|1:152|2:4|3:55|4:6|5:153|6:41|7:154|16:58|9:10|13:10|3:55|3:55;n;6|1:155|22:4|23:156|24:157|25:158;6|1:159|22:4|24:157|25:160;6|1:161'
  213. ..'|24:162|25:4;6|1:163|24:164|25:165;6|1:166|24:167|25:168;6|1:169|22:4|23:170|24:171;p;1|2:4|4:6|5:172|6:41|7:173|16:58|9:10|13:10;2|1:125;n;5|3:129|4:35|5:174|6:17|7:143|9:58|13:10|3:129|3:129;n;4|18:175|19:176;'
  214. ..'p;1|2:4|4:35|5:177|6:41|7:139|9:10|11:58|13:10;1|2:4|4:35|5:178|6:41|7:137|9:10|13:10;1|2:4|4:35|5:179|6:41|7:135|9:10|13:10;1|2:4|4:35|5:180|6:181|7:128|9:10|13:10;1|2:4|3:129|4:35|5:182|6:181|7:131|9:10|13:10|'
  215. ..'3:129|3:129;1|2:4|4:35|5:183|6:181|7:128|9:10|13:10;p;2|1:125;n;5|3:129|4:35|5:184|7:143|9:58|13:10|3:129|3:129;n;4|18:175|19:185;p;1|2:4|4:35|5:186|6:187|7:139|9:10|11:58|13:10;1|2:4|4:35|5:188|6:187|7:137|9:10'
  216. ..'|13:10;1|2:4|4:35|5:189|6:187|7:135|9:10|13:10;1|2:4|4:35|5:190|6:191|7:128|9:10|13:10;1|2:4|3:129|4:35|5:192|6:191|7:131|9:10|13:10|3:129|3:129;1|2:4|4:35|5:193|6:191|7:128|9:10|13:10;p;1|2:4|3:34|4:35|5:194|6:'
  217. ..'62|7:195|9:10|13:10|3:34|3:34;1|2:4|3:43|4:44|15:45|5:196|6:50|7:48|9:10|13:10|3:43|3:43;1|2:4|3:55|4:144|5:197|6:62|7:146|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:198|6:41|7:57|16:58|9:10|13:10|3:55|3:55;n;7|26:10'
  218. ..'|27:199|28:200;p;1|1:201|3:202|4:144|5:203|6:204|7:205|3:202|3:202;n;8|29:206;9;10;p;p;1|1:207|2:4|15:4|5:208|6:8|7:209|17:108|9:10|13:10;n;11|30:210|31:211;12|32:212;p;2|1:213;n;2|1:214;n;1|2:4|3:55|4:6|5:215|6'
  219. ..':41|7:216|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:217|6:41|7:218|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:219|6:41|7:220|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:221|6:41|7:216|16:58|9:10|13:10|3:55|3:'
  220. ..'55;1|2:4|3:55|4:6|5:222|6:41|7:216|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:224|6:41|7:225|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:226|6:41|7:216|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:227|6:41|7:'
  221. ..'228|16:58|9:10|13:10|3:55|3:55;1|2:4|4:6|5:229|6:41|7:82|16:58|9:10|13:10;1|2:4|3:223|4:35|5:230|6:231|7:232|9:10|13:10|3:223|3:223;1|2:4|3:223|4:35|5:233|6:231|7:232|9:10|13:10|3:223|3:223;1|2:4|3:223|4:35|5:23'
  222. ..'4|6:235|7:232|9:10|13:10|3:223|3:223;1|2:4|3:223|4:35|5:236|6:235|7:232|9:10|13:10|3:223|3:223;13|2:4|4:35|5:237|6:238|7:239|9:10;13|2:4|4:35|5:240|6:241|7:239|9:10;13|2:4|4:35|5:242|6:231|7:239|9:10;13|2:4|4:35'
  223. ..'|5:243|6:235|7:239|9:10;p;2|1:244;n;1|2:4|3:55|4:6|5:245|6:246|7:247|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:248|6:246|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:250|6:246|7:251|16:58|9:10|13:10|3:'
  224. ..'55|3:55;1|2:4|3:55|4:6|5:252|6:246|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:253|6:62|7:254|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:255|6:246|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:256|6:6'
  225. ..'2|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:257|6:62|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:258|6:62|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:259|6:62|7:247|16:58|9:10|13:10|3:55|3'
  226. ..':55;p;2|1:260;n;1|2:4|3:55|4:6|5:261|6:41|7:247|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:262|6:41|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:263|6:41|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:'
  227. ..'264|6:41|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:265|6:41|7:254|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:266|6:267|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:268|6:267|7:251|16:58|9:10|13:1'
  228. ..'0|3:55|3:55;1|2:4|3:55|4:6|5:269|6:267|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:270|6:267|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:271|6:267|7:247|16:58|9:10|13:10|3:55|3:55;p;2|1:272;n;1|2:'
  229. ..'4|3:55|4:6|5:273|6:267|7:247|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:274|6:267|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:275|6:267|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:276|6:267|7:251'
  230. ..'|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:277|6:41|7:254|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:278|6:267|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:279|6:41|7:249|16:58|9:10|13:10|3:223|3:223;1|'
  231. ..'2:4|3:55|4:6|5:280|6:41|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:281|6:41|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:282|6:41|7:247|16:58|9:10|13:10|3:55|3:55;p;2|1:283;n;1|2:4|3:55|4:6|5:284|6:6'
  232. ..'2|7:247|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:285|6:62|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:286|6:62|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:287|6:62|7:251|16:58|9:10|13:10|3:55|3'
  233. ..':55;1|2:4|3:55|4:6|5:288|6:62|7:254|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:289|6:246|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:223|4:6|5:290|6:246|7:249|16:58|9:10|13:10|3:223|3:223;1|2:4|3:55|4:6|5:291|6:24'
  234. ..'6|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:292|6:246|7:251|16:58|9:10|13:10|3:55|3:55;1|2:4|3:55|4:6|5:293|6:246|7:247|16:58|9:10|13:10|3:55|3:55;p;p;10|1:294;p;2|1:295;n;2|1:296;n;1|2:4|3:297|4:35|5:29'
  235. ..'8|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:300|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:302|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:303|6:8|7:299|9:10|13:10|3:297|3:297;1|2:'
  236. ..'4|3:297|4:35|5:304|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:306|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:307|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:308|6:8|7:299|9:10|13:10|3:297|3:2'
  237. ..'97;1|2:4|3:297|4:35|5:309|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:310|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:311|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:312|6:235|7:301|9:1'
  238. ..'0|13:10|3:297|3:297;1|2:4|3:297|4:35|5:313|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:314|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:315|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:316|'
  239. ..'6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:317|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:318|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:319|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|'
  240. ..'3:297|4:35|5:320|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:321|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:322|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:323|7:305|9:10|13:10|3:297|3:297;1'
  241. ..'|2:4|3:297|4:35|5:324|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:325|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:326|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:327|6:8|7:299|9:10|'
  242. ..'13:10|3:297|3:297;1|2:4|3:297|4:35|5:328|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:329|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:330|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:331|'
  243. ..'6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:332|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:333|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:334|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|'
  244. ..'3:297|4:35|5:335|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:336|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:337|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:338|6:241|7:301|9:10|13:10|3:297'
  245. ..'|3:297;1|2:4|3:297|4:35|5:339|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:340|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:341|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:342|6:241|7:301|9:1'
  246. ..'0|13:10|3:297|3:297;1|2:4|3:297|4:35|5:343|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:344|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:345|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:346|6:8|'
  247. ..'7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:347|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:348|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:349|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35'
  248. ..'|5:350|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:351|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:352|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:353|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4'
  249. ..'|3:297|4:35|5:354|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:355|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:356|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:357|7:305|9:10|13:10|3:29'
  250. ..'7|3:297;1|2:4|3:297|4:35|5:358|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:359|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:360|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:361|6:8|7:299|'
  251. ..'9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:362|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:363|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:364|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35'
  252. ..'|5:365|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:366|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:367|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:368|7:305|9:10|13:10|3:297|3:297;1|2:4'
  253. ..'|3:297|4:35|5:369|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:370|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:371|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:372|6:235|7:301|9:10|13:10|3:29'
  254. ..'7|3:297;1|2:4|3:297|4:35|5:373|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:374|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:375|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:376|7:305|9:'
  255. ..'10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:377|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:378|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:379|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:3'
  256. ..'80|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:381|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:382|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:383|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297'
  257. ..'|4:35|5:384|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:385|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:386|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:387|6:8|7:299|9:10|13:10|3:297|'
  258. ..'3:297;1|2:4|3:297|4:35|5:388|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:389|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:34|4:35|5:390|6:8|7:391|9:10|13:10|3:34|3:34;1|2:4|3:297|4:35|5:392|6:8|7:299|9:10|13:10|'
  259. ..'3:297|3:297;3|2:4|3:223|4:6|5:393|6:394|7:395|33:58|8:10|9:10|10:10|11:10|12:10|13:10|3:223|3:223;1|2:4|3:297|4:35|5:396|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:397|7:305|9:10|13:10|3:297|3:297;1|2'
  260. ..':4|3:297|4:35|5:398|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:399|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:400|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:401|6:241|7:301|9:10|13:1'
  261. ..'0|3:297|3:297;1|2:4|3:297|4:35|5:402|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:403|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:404|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:405|6:8|7:'
  262. ..'299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:406|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:407|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:408|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5'
  263. ..':409|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:410|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:411|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:412|7:305|9:10|13:10|3:297|3:297;1|2:4|3'
  264. ..':297|4:35|5:413|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:414|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:415|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:416|7:305|9:10|13:10|3:297|3:'
  265. ..'297;1|2:4|3:297|4:35|5:417|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:418|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:419|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:420|6:241|7:301|'
  266. ..'9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:421|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:422|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:423|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5'
  267. ..':424|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:425|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:426|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:427|7:305|9:10|13:10|3:297|3:297;1|2:4'
  268. ..'|3:297|4:35|5:428|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:429|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:430|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:431|6:8|7:299|9:10|13:10|3:297|'
  269. ..'3:297;1|2:4|3:297|4:35|5:432|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:433|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:434|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:435|6:8|7:299|9:10|1'
  270. ..'3:10|3:297|3:297;1|2:4|3:297|4:35|5:436|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:437|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:438|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:439|6:235'
  271. ..'|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:440|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:441|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:442|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297'
  272. ..'|4:35|5:443|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:444|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:445|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:446|6:8|7:299|9:10|13:10|3:297|3:29'
  273. ..'7;1|2:4|3:297|4:35|5:447|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:448|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:449|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:450|6:235|7:301|9:10|13:10|3'
  274. ..':297|3:297;1|2:4|3:297|4:35|5:451|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:452|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:453|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:454|6:8|7:2'
  275. ..'99|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:455|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:456|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:457|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:3'
  276. ..'5|5:458|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:459|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:460|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:461|6:8|7:299|9:10|13:10|3:297|3:29'
  277. ..'7;1|2:4|3:297|4:35|5:462|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:463|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:464|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:465|6:8|7:299|9:10|13:'
  278. ..'10|3:297|3:297;1|2:4|3:297|4:35|5:466|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:467|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:468|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:469|6:235|7'
  279. ..':301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:470|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:471|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:472|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:3'
  280. ..'5|5:473|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:474|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:475|6:235|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:476|6:8|7:299|9:10|13:10|3:297|3:297;1|'
  281. ..'2:4|3:297|4:35|5:477|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:478|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:479|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:480|6:8|7:299|9:10|13:10|3:297|3:2'
  282. ..'97;1|2:4|3:297|4:35|5:481|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:482|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:378|6:235|7:483|9:10|13:10|3:297|3:297;3|2:4|3:223|4:6|5:484|6:394|7:485|'
  283. ..'33:58|8:10|9:10|10:10|11:10|12:10|13:10|3:223|3:223;1|2:4|3:297|4:35|5:486|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:487|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:488|6:241|7:489|9:10|13:10|3:2'
  284. ..'97|3:297;1|2:4|3:297|4:35|5:490|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:491|6:241|7:301|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:492|7:305|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:493|6:235|7:301|9'
  285. ..':10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:494|6:8|7:299|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:495|7:305|9:10|13:10|3:297|3:297;p;2|1:496;n;1|2:4|3:297|4:35|5:497|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4'
  286. ..':35|5:499|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:34|4:35|5:500|6:8|7:501|9:10|13:10|3:34|3:34;1|2:4|3:297|4:35|5:502|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:503|6:8|7:504|9:10|13:10|3:297|3:297;1|2'
  287. ..':4|3:297|4:35|5:505|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:506|6:8|7:504|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:507|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:508|6:8|7:509|9:10|13:10|3:'
  288. ..'297|3:297;1|2:4|3:297|4:35|5:510|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:511|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:512|6:8|7:504|9:10|13:10|3:297|3:297;3|2:4|3:223|4:6|5:513|6:13|7:395|'
  289. ..'33:58|8:10|9:10|10:10|11:10|12:10|13:10|3:223|3:223;1|2:4|3:297|4:35|5:514|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:515|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:516|6:8|7:498|9:10|13:10|3:2'
  290. ..'97|3:297;3|2:4|3:223|4:6|5:517|6:13|7:395|33:58|8:10|9:10|10:10|11:10|12:10|13:10|3:223|3:223;1|2:4|3:297|4:35|5:518|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:519|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4'
  291. ..'|3:297|4:35|5:520|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:521|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:522|6:8|7:498|9:10|13:10|3:297|3:297;1|2:4|3:297|4:35|5:523|6:8|7:498|9:10|13:10|3:29'
  292. ..'7|3:297;1|1:524|2:4|3:34|4:35|15:4|5:525|6:8|7:526|9:10|13:10|3:34|3:34;p;p;14|1:527;n;10;p;p;')
  293. for _,Object in pairs(Objects) do
  294. Object.Parent = script and script.Parent==workspace and script or workspace
  295. end
  296. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement