Advertisement
AxeuerAlt

Rocket Model Test

Jun 10th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.68 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 33240
  3.  
  4. local Scripts = { function()
  5. 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)
  6. end; function()
  7. 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()
  8. end; function()
  9. 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)
  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,Locked,Color,Material,Position,Orientation,Size,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,PrimaryPart,Transparency,Shape,CanCollide,C0,C1,Part0,Part1,Looped,PlaybackSpeed,Sou'
  142. ..'ndId,Volume,Face,Range,Brightness,MaxActivationDistance,Velocity,MaxForce,MaxTorque,Style;Part,Model,TrussPart,Weld,Seat,Sound,SurfaceLight,ClickDetector,CylinderMesh,Script,BodyVelocity,BodyGyro,WedgePart,BindableEvent;P'
  143. ..'art|RocketModel|Truss7|1|1,0,0|1056|30.344,20.125,-2.247|0,-90,0|2,38.049,2|0|Truss8|27.37,38.1,-2.247|-90,-90,0|2,3.999,2|Truss5|8.182,20.125,19.915|0,180,0|Truss4|8.182,38.1,16.94|-90,-180,0|Truss3|-13.981,20.125,-2.247'
  144. ..'|0,90,0|Truss1|-11.006,38.1,-2.247|-90,90,0|Truss2|8.182,20.125,-24.41|Truss6|8.181,38.1,-21.435|-90,0,0|Rocket|Top|0.388,0.372,0.384|1088|14.466,88.166,1.503|0,150,-90|0.15,0.2,4|1.822,85.516,-5.798|8.144,85.516,-9.448|0'
  145. ..',90,-90|1.822,88.166,-5.798|0.392,0.588,0.588|1568|0.8|4.494,86.866,-8.47|0,120,-90|2.599,0.05,4|14.466,85.516,-5.798|0,30,-90|1.822,88.166,1.503|11.794,85.516,-8.47|0,60,-90|11.794,88.166,-8.47|0.972,0.972,0.972|8.144,81'
  146. ..'.816,-2.148|0.499,15,15|2|14.466,88.166,-5.798|4.494,88.166,4.174|0.844,88.166,-2.148|0,0,-90|8.144,88.166,5.153|1.822,86.866,-5.798|8.144,86.867,5.153|1.822,86.867,1.503|14.466,86.867,1.503|4.494,86.867,4.174|11.794,88.1'
  147. ..'66,4.174|8.144,86.866,-9.448|4.494,88.166,-8.47|15.444,85.141,-0.198|6.2,0.2,0.2|11.794,86.867,4.174|11.794,86.866,-8.47|0.844,86.867,-2.148|2.5,0.05,4|8.144,88.166,-9.448|0.844,85.516,-2.148|4.494,85.516,-8.47|8.144,80.5'
  148. ..'66,-2.148|2,14.8,14.8|8.144,83.766,-9.448|3.4,0.2,4|14.466,89.916,1.503|15.444,85.066,-4.123|6.05,0.231,0.173|4.494,83.766,-8.47|8.144,89.916,-9.448|11.794,83.766,-8.47|14.466,89.916,-5.798|8.144,89.916,5.153|8.144,85.516'
  149. ..',5.153|4.494,83.766,4.174|4.494,85.516,4.174|1.822,83.766,1.503|14.466,85.516,1.503|1.822,89.916,1.503|4.494,89.916,4.174|1.822,85.516,1.503|14.428,83.766,1.567|3.4,0.2,3.85|Door|0.356,0.364,0.411|15.445,88.093,-2.173|0,0'
  150. ..',60|0.05,0.2,0.2|0|16.945,90.691,-2.173|6.05,0.2,3.75|0.844,89.916,-2.148|1.822,89.916,-5.798|11.794,85.516,4.174|11.794,83.766,4.174|11.794,89.916,-8.47|4.494,89.916,-8.47|0.844,83.766,-2.148|14.416,83.766,-5.884|3.4,0.2'
  151. ..',3.8|8.144,83.741,5.153|3.45,0.2,4|15.444,89.916,-2.148|11.794,89.916,4.174|1.822,83.766,-5.798|Seat|1.389,83.928,-3.698|0,180,-95|3.899,0.65,0.7|0.015,0.686,0.925|1.315,83.921,-2.173|3.899,0.5,2.35|1.389,83.928,-0.648|2.'
  152. ..'444,83.066,-0.648|0,-180,-90|2,2.599,0.699|2.444,83.066,-3.698|2,2.599,0.7|2.519,82.566,-2.173|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,1,0,1,0|2.669,83.091,-2.173|2.349,0.05,2.149|288|3'
  153. ..'.269,90.916,-2.848|0.05,3.849,1|3.269,90.916,-1.448|3.269,91.266,-2.148|0.7,4.849,3|12.969,90.916,-2.848|12.969,91.266,-2.148|Core|8.144,69.816,-2.148|19.7,15,15|D|1.5|rbxassetid://558246436|5|E|2|Decoupler|rbxassetid://2'
  154. ..'31977665|C|rbxassetid://167570993|3|B|rbxassetid://160914477|0.899|A|1.2|rbxassetid://154757584|8.144,82.041,-2.148|0.15,10,10|8.267,83.091,-7.771|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|8.267'
  155. ..',82.566,-7.921|9.792,83.066,-7.996|6.742,83.066,-7.996|6.742,83.928,-9.05|0,90,-95|8.267,83.921,-9.125|9.792,83.928,-9.05|8.267,83.091,3.173|-0.5,-0.151,-0.001,0,0,1,0,1,0,-1,0,0|8.267,82.566,3.323|0,-90,-90|6.742,83.066,'
  156. ..'3.398|9.792,83.066,3.398|9.792,83.928,4.452|0,-90,-95|8.267,83.921,4.527|6.742,83.928,4.452|15.444,88.166,-2.173|0.149,0.231,4.073|14.466,86.867,-5.798|12.969,90.916,-1.448|8.144,91.816,-2.148|14|0.699|Trigger|0.203,0.556'
  157. ..',0.25|3.397,84.171,-0.619|0,-180,0|0.4,0.21,0.4|12|CFrame|8.143,69.817,-2.147|0.1,0.1,0.1|0,1,0|3.9999998248094e+25,3.9999998248094e+25,3.9999998248094e+25|400000,400000,400000|SectionA|Side|8.144,14.116,-2.148|0.699,15,1'
  158. ..'5|8.144,33.316,-2.148|36.5,15,15|8.144,9.917,-2.148|3.2,15,15|8.144,12.717,-2.148|8.144,54.166,-2.148|0.066,0.066,0.066|8.144,33.291,-2.148|43.75,14,14|8.144,52.766,-2.148|8.144,56.616,-2.148|2.9,15,15|8.144,58.966,-2.148'
  159. ..'|16.949,10.136,6.671|0,-45,0|9.949,1.159,0.5|-0.658,10.136,-10.936|-0.658,10.136,6.671|0,-135,0|16.949,10.136,-10.936|-0.641,23.216,-10.918|0,45,0|0.5,25,10|-0.641,23.216,6.654|0,135,0|16.931,23.216,-10.918|16.931,23.216,'
  160. ..'6.654|BoosterD|-4.332,38.717,-2.172|0,0,90|2.3,10,10|-4.332,36.517,-2.172|2.099,9,9|-4.332,36.867,-2.172|0.5,10,10|-4.332,36.067,-2.172|-4.332,23.867,-2.172|22.3,10,10|-4.332,35.267,-2.172|-4.332,12.016,-2.172|-4.332,11.5'
  161. ..'66,-2.172|-4.332,11.216,-2.172|-4.332,9.367,-2.172|BoosterC|8.144,9.367,-14.648|8.144,11.216,-14.648|8.144,12.016,-14.648|8.144,11.566,-14.648|8.144,23.867,-14.648|8.144,35.267,-14.648|0,90,90|8.144,36.067,-14.648|8.144,3'
  162. ..'6.867,-14.648|8.144,36.517,-14.648|8.144,38.717,-14.648|BoosterA|8.144,38.717,10.303|8.144,36.517,10.303|8.144,36.867,10.303|8.144,36.067,10.303|8.144,23.867,10.303|8.144,35.267,10.303|8.144,11.566,10.303|8.144,12.016,10.'
  163. ..'303|8.144,11.216,10.303|8.144,9.367,10.303|BoosterB|20.619,9.367,-2.172|20.619,11.566,-2.172|20.619,11.216,-2.172|20.619,12.016,-2.172|20.619,23.867,-2.172|20.619,35.267,-2.172|20.619,36.517,-2.172|20.619,36.067,-2.172|20'
  164. ..'.619,36.867,-2.172|20.619,38.717,-2.172|Weld|Walk|Truss|0.105,0.164,0.207|42.692,48.624,-0.241|0.2,0.249,2.621|44.356,48.624,-3.599|0.2,0.249,1.371|44.356,48.624,-0.699|42.642,59.125,-4.041|44.792,59.125,-2.166|0.2,0.249,'
  165. ..'2.071|44.792,50.725,-2.166|44.356,50.725,-3.599|42.642,50.725,-4.041|44.356,59.125,-3.599|42.642,57.024,-4.041|42.692,52.824,-0.241|44.356,54.925,-3.599|44.792,57.024,-2.166|44.356,59.125,-0.699|44.356,52.824,-0.699|42.64'
  166. ..'2,52.824,-4.041|42.642,54.925,-4.041|44.356,57.024,-3.599|44.356,50.725,-0.699|44.792,54.925,-2.166|42.692,50.725,-0.241|42.642,48.624,-4.041|44.792,52.824,-2.166|44.356,54.925,-0.699|44.356,52.824,-3.599|44.356,57.024,-0'
  167. ..'.699|42.692,57.024,-0.241|42.692,54.925,-0.241|42.692,59.125,-0.241|44.356,10.824,-3.599|44.356,12.925,-0.699|42.692,10.824,-0.241|44.356,15.024,-3.599|42.642,19.224,-4.041|42.642,12.925,-4.041|44.356,12.925,-3.599|44.792'
  168. ..',10.824,-2.166|44.356,15.024,-0.699|42.692,15.024,-0.241|44.792,15.024,-2.166|44.356,19.224,-3.599|44.356,10.824,-0.699|42.642,10.824,-4.041|44.792,12.925,-2.166|42.692,12.925,-0.241|42.642,15.024,-4.041|44.356,17.125,-3.'
  169. ..'599|44.792,17.125,-2.166|42.642,17.125,-4.041|42.692,21.324,-0.241|44.356,17.125,-0.699|44.792,19.224,-2.166|42.692,19.224,-0.241|44.356,19.224,-0.699|42.692,17.125,-0.241|44.356,21.324,-0.699|44.792,21.324,-2.166|44.356,'
  170. ..'21.324,-3.599|42.642,21.324,-4.041|42.692,38.125,-0.241|42.642,36.024,-4.041|44.356,40.224,-3.599|44.356,36.024,-0.699|42.642,42.325,-4.041|42.642,40.224,-4.041|42.642,44.424,-4.041|44.356,42.325,-3.599|44.792,38.125,-2.1'
  171. ..'66|42.692,36.024,-0.241|44.356,36.024,-3.599|44.792,36.024,-2.166|44.356,38.125,-3.599|42.692,40.224,-0.241|44.356,40.224,-0.699|44.356,38.125,-0.699|44.792,40.224,-2.166|42.642,38.125,-4.041|44.356,46.525,-3.599|42.642,4'
  172. ..'6.525,-4.041|44.356,46.525,-0.699|44.792,46.525,-2.166|44.792,44.424,-2.166|44.356,42.325,-0.699|42.692,46.525,-0.241|44.356,44.424,-0.699|44.356,44.424,-3.599|42.692,42.325,-0.241|44.792,42.325,-2.166|42.692,44.424,-0.24'
  173. ..'1|40.453,41.599,-2.141|3.899,81,1.899|42.692,84.324,-0.241|40.47,70.15,-2.148|0,90,180|2,23.999,2|44.356,84.324,-3.599|44.792,82.224,-2.166|44.356,82.224,-3.599|42.692,82.224,-0.241|42.642,82.224,-4.041|44.356,82.224,-0.6'
  174. ..'99|44.356,25.525,-3.599|44.792,23.424,-2.166|44.356,23.424,-3.599|42.642,23.424,-4.041|44.356,25.525,-0.699|42.692,23.424,-0.241|44.792,25.525,-2.166|42.692,25.525,-0.241|42.692,27.624,-0.241|44.356,27.624,-0.699|44.792,2'
  175. ..'7.624,-2.166|42.642,25.525,-4.041|44.356,23.424,-0.699|42.642,29.725,-4.041|44.792,31.824,-2.166|42.692,33.925,-0.241|44.356,31.824,-3.599|44.356,27.624,-3.599|44.356,29.725,-0.699|44.356,31.824,-0.699|42.642,27.624,-4.04'
  176. ..'1|42.692,31.824,-0.241|42.692,29.725,-0.241|44.356,29.725,-3.599|44.356,33.925,-0.699|44.792,33.925,-2.166|44.356,33.925,-3.599|42.642,33.925,-4.041|44.792,29.725,-2.166|42.642,31.824,-4.041|42.642,84.324,-4.041|44.792,80'
  177. ..'.124,-2.166|44.356,78.024,-0.699|42.692,78.024,-0.241|42.692,80.124,-0.241|44.356,80.124,-0.699|44.792,78.024,-2.166|44.356,78.024,-3.599|42.642,78.024,-4.041|42.642,80.124,-4.041|44.356,80.124,-3.599|44.356,73.824,-3.599'
  178. ..'|44.792,75.924,-2.166|44.356,61.224,-0.699|42.642,75.924,-4.041|44.792,73.824,-2.166|44.792,61.224,-2.166|44.356,75.924,-3.599|44.356,61.224,-3.599|42.642,61.224,-4.041|42.642,63.325,-4.041|44.356,73.824,-0.699|42.692,73.'
  179. ..'824,-0.241|42.692,61.224,-0.241|42.642,73.824,-4.041|44.356,75.924,-0.699|44.356,63.325,-0.699|44.356,65.424,-3.599|42.642,65.424,-4.041|42.642,67.525,-4.041|44.356,65.424,-0.699|44.356,63.325,-3.599|44.792,63.325,-2.166|'
  180. ..'42.692,65.424,-0.241|42.642,69.624,-4.041|44.356,67.525,-3.599|44.792,65.424,-2.166|44.356,69.624,-3.599|42.692,75.924,-0.241|42.692,63.325,-0.241|42.692,69.624,-0.241|44.356,71.724,-0.699|44.792,71.724,-2.166|44.356,71.7'
  181. ..'24,-3.599|42.692,67.525,-0.241|42.642,71.724,-4.041|44.792,69.624,-2.166|44.792,67.525,-2.166|42.692,71.724,-0.241|44.356,67.525,-0.699|44.356,69.624,-0.699|44.356,46.524,-3.599|0.2,75.85,0.2|40.67,29.124,-2.148|2,58.05,2'
  182. ..'|44.792,84.324,-2.166|44.356,84.324,-0.699|44.356,46.549,-0.699|0.2,75.8,0.2|42.692,8.725,-0.241|44.356,8.725,-0.699|44.792,8.725,-2.166|44.356,8.725,-3.599|42.642,8.725,-4.041|44.792,48.624,-2.166|Walkway|15.691,83.274,-'
  183. ..'0.241|0.2,2.349,0.221|27.392,83.274,-4.041|27.567,81.099,-2.141|2.299,1.799,23.672|35.342,83.274,-4.041|28.467,84.324,-0.241|0.2,0.249,25.471|15.691,83.274,-4.041|28.466,82.974,-0.241|19.541,83.274,-4.041|28.542,84.324,-4'
  184. ..'.041|0.2,0.249,25.621|31.492,83.274,-4.041|39.542,83.274,-4.041|28.467,83.124,-4.041|27.52,81.1,-1.148|23.542,83.274,-4.041|27.392,83.274,-0.241|19.541,83.274,-0.241|27.52,81.1,-3.147|31.492,83.274,-0.241|41.292,83.274,-0'
  185. ..'.241|23.542,83.274,-0.241|41.242,83.274,-4.041|35.342,83.274,-0.241|39.542,83.274,-0.241|PrimPart|39.267,81.099,-2.141|2.299,1.799,0.272|Launch;0,10>15>123,59>15>60,81>21>80,81>22>82,98>21>97,98>22>99,107>21>106,107>22>10'
  186. ..'8,382>15>406;2|1:2;n;3|1:3|2:4|3:4|4:5|5:6|6:7|7:8|8:9|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:11|2:4|3:4|4:5|5:6|6:12|7:13|8:14|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:15|2:4|3:4|4:5|5:6|6:16|7:17|8:9|9:10|'
  187. ..'10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:18|2:4|3:4|4:5|5:6|6:19|7:20|8:14|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:21|2:4|3:4|4:5|5:6|6:22|7:23|8:9|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:24|2:4|3:4|4:5|5:6'
  188. ..'|6:25|7:26|8:14|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:27|2:4|3:4|4:5|5:6|6:28|8:9|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;3|1:29|2:4|3:4|4:5|5:6|6:30|7:31|8:14|9:10|10:10|11:10|12:10|13:10|14:10|4:5|4:5;2|1:32'
  189. ..';n;2|1:33;n;1|2:4|3:4|4:34|5:35|6:36|7:37|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:39|7:37|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:40|7:41|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:42|7:37|8:38|10:'
  190. ..'10|14:10|4:34|4:34;1|2:4|3:4|4:43|5:44|16:45|6:46|7:47|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:34|5:35|6:49|7:50|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:51|7:50|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:52|'
  191. ..'7:53|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:54|7:53|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:56|7:41|8:57|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:59|7:50|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:3'
  192. ..'4|5:35|6:60|7:53|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:61|7:62|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:63|7:41|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:43|5:44|16:45|6:64|7:37|8:48|10:10|14:10|4:43|4:43;'
  193. ..'1|2:4|3:4|4:43|5:44|16:45|6:65|7:41|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:43|5:44|16:45|6:66|7:50|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:43|5:44|16:45|6:67|7:37|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:43|5:44|16:45|6:68|7'
  194. ..':53|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:34|5:35|6:69|7:47|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:43|5:44|16:45|6:70|7:41|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:34|5:35|6:71|7:47|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:3'
  195. ..'4|5:35|6:72|7:62|8:73|10:10|14:10|4:34|4:34;1|2:4|3:4|4:43|5:44|16:45|6:74|7:47|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:43|5:44|16:45|6:75|7:53|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:43|5:44|16:45|6:76|7:62|8:77|10:10|14:1'
  196. ..'0|4:43|4:43;1|2:4|3:4|4:34|5:35|6:78|7:41|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:79|7:62|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:34|5:35|6:80|7:47|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|5:6|6:81|7:41|8:82|17:58|10:'
  197. ..'10|14:10;1|2:4|3:4|4:55|5:6|6:83|7:41|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:85|7:37|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:86|7:62|8:87|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:88|7:47|8:84|10:10|14:'
  198. ..'10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:89|7:41|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:90|7:53|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:91|7:50|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:92|7:41|8:84|10:10|'
  199. ..'14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:93|7:41|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:94|7:53|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:95|7:53|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:96|7:50|8:84|1'
  200. ..'0:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:97|7:37|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:98|7:50|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:99|7:53|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:100|7:50|'
  201. ..'8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:101|7:37|8:102|10:10|14:10|4:55|4:55;2;n;1|1:103|2:4|3:4|4:104|5:6|6:105|7:106|8:107|18:108|10:10|14:10|4:104|4:104;1|1:103|2:4|3:4|4:104|5:6|6:109|7:106|8:110|10:10|14:10|4'
  202. ..':104|4:104;p;1|2:4|3:4|4:55|5:6|6:111|7:62|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:112|7:37|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:113|7:47|8:38|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:6|6:114|7:47|8:84|1'
  203. ..'0:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:115|7:53|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:116|7:47|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:117|7:62|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:118|7:50'
  204. ..'|8:119|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:120|7:41|8:121|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:122|7:62|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:123|7:47|8:84|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6'
  205. ..':124|7:37|8:84|10:10|14:10|4:55|4:55;2|1:125;n;1|2:4|3:4|5:35|6:126|7:127|8:128|10:10|14:10;1|2:4|3:4|4:129|5:35|6:130|7:127|8:131|10:10|14:10|4:129|4:129;1|2:4|3:4|5:35|6:132|7:127|8:128|10:10|14:10;1|2:4|3:4|5:35|6:133|'
  206. ..'7:134|8:135|10:10|14:10;1|2:4|3:4|5:35|6:136|7:134|8:137|10:10|14:10;1|2:4|3:4|5:35|6:138|7:134|8:139|10:10|12:58|14:10;n;4|19:140|20:141;p;5|2:4|3:4|4:129|5:35|6:142|7:8|8:143|10:58|14:10|4:129|4:129;p;1|2:4|3:4|4:55|5:1'
  207. ..'44|6:145|7:62|8:146|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:144|6:147|7:62|8:146|10:10|14:10|4:55|4:55;1|2:4|3:4|4:34|5:35|6:148|7:62|8:149|10:10|14:10|4:34|4:34;1|2:4|3:4|4:55|5:144|6:150|7:62|8:146|10:10|14:10|4:55|4:55;'
  208. ..'1|2:4|3:4|4:34|5:35|6:151|7:62|8:149|10:10|14:10|4:34|4:34;1|1:152|2:4|3:4|4:55|5:6|6:153|7:41|8:154|17:58|10:10|14:10|4:55|4:55;n;6|1:155|23:4|24:156|25:157|26:158;6|1:159|23:4|25:157|26:160;6|1:161|25:162|26:4;6|1:163|2'
  209. ..'5:164|26:165;6|1:166|25:167|26:168;6|1:169|23:4|24:170|25:171;p;1|2:4|3:4|5:6|6:172|7:41|8:173|17:58|10:10|14:10;2|1:125;n;5|2:4|3:4|4:129|5:35|6:174|7:17|8:143|10:58|14:10|4:129|4:129;n;4|19:175|20:176;p;1|2:4|3:4|5:35|6'
  210. ..':177|7:41|8:139|10:10|12:58|14:10;1|2:4|3:4|5:35|6:178|7:41|8:137|10:10|14:10;1|2:4|3:4|5:35|6:179|7:41|8:135|10:10|14:10;1|2:4|3:4|5:35|6:180|7:181|8:128|10:10|14:10;1|2:4|3:4|4:129|5:35|6:182|7:181|8:131|10:10|14:10|4:1'
  211. ..'29|4:129;1|2:4|3:4|5:35|6:183|7:181|8:128|10:10|14:10;p;2|1:125;n;5|2:4|3:4|4:129|5:35|6:184|8:143|10:58|14:10|4:129|4:129;n;4|19:175|20:185;p;1|2:4|3:4|5:35|6:186|7:187|8:139|10:10|12:58|14:10;1|2:4|3:4|5:35|6:188|7:187|'
  212. ..'8:137|10:10|14:10;1|2:4|3:4|5:35|6:189|7:187|8:135|10:10|14:10;1|2:4|3:4|5:35|6:190|7:191|8:128|10:10|14:10;1|2:4|3:4|4:129|5:35|6:192|7:191|8:131|10:10|14:10|4:129|4:129;1|2:4|3:4|5:35|6:193|7:191|8:128|10:10|14:10;p;1|2'
  213. ..':4|3:4|4:34|5:35|6:194|7:62|8:195|10:10|14:10|4:34|4:34;1|2:4|3:4|4:43|5:44|16:45|6:196|7:50|8:48|10:10|14:10|4:43|4:43;1|2:4|3:4|4:55|5:144|6:197|7:62|8:146|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:198|7:41|8:57|17:58|'
  214. ..'10:10|14:10|4:55|4:55;n;7|27:10|28:199|29:200;p;1|1:201|2:4|3:4|4:202|5:144|6:203|7:204|8:205|4:202|4:202;n;8|30:206;9;10;p;p;1|1:207|2:4|3:4|16:4|6:208|7:8|8:209|18:108|10:10|14:10;n;11|31:210|32:211;12|33:212;p;2|1:213;'
  215. ..'n;2|1:214;n;1|2:4|3:4|4:55|5:6|6:215|7:41|8:216|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:217|7:41|8:218|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:219|7:41|8:220|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:'
  216. ..'6|6:221|7:41|8:216|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:222|7:41|8:216|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:224|7:41|8:225|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:226|7:41|8:216|17:58|1'
  217. ..'0:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:227|7:41|8:228|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|5:6|6:229|7:41|8:82|17:58|10:10|14:10;1|2:4|3:4|4:223|5:35|6:230|7:231|8:232|10:10|14:10|4:223|4:223;1|2:4|3:4|4:223|5:35|6:23'
  218. ..'3|7:231|8:232|10:10|14:10|4:223|4:223;1|2:4|3:4|4:223|5:35|6:234|7:235|8:232|10:10|14:10|4:223|4:223;1|2:4|3:4|4:223|5:35|6:236|7:235|8:232|10:10|14:10|4:223|4:223;13|2:4|3:4|5:35|6:237|7:238|8:239|10:10;13|2:4|3:4|5:35|6'
  219. ..':240|7:241|8:239|10:10;13|2:4|3:4|5:35|6:242|7:231|8:239|10:10;13|2:4|3:4|5:35|6:243|7:235|8:239|10:10;p;2|1:244;n;1|2:4|3:4|4:55|5:6|6:245|7:246|8:247|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:248|7:246|8:249|17:'
  220. ..'58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:250|7:246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:252|7:246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:253|7:62|8:254|17:58|10:10|14:10|4:55|4:55;'
  221. ..'1|2:4|3:4|4:55|5:6|6:255|7:246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:256|7:62|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:257|7:62|8:249|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:258|'
  222. ..'7:62|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:259|7:62|8:247|17:58|10:10|14:10|4:55|4:55;p;2|1:260;n;1|2:4|3:4|4:55|5:6|6:261|7:41|8:247|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:262|7:41|8:251|17:58|'
  223. ..'10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:263|7:41|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:264|7:41|8:249|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:265|7:41|8:254|17:58|10:10|14:10|4:55|4:55;1|2:'
  224. ..'4|3:4|4:55|5:6|6:266|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:268|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:269|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:270|7:26'
  225. ..'7|8:249|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:271|7:267|8:247|17:58|10:10|14:10|4:55|4:55;p;2|1:272;n;1|2:4|3:4|4:55|5:6|6:273|7:267|8:247|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:274|7:267|8:249|17:'
  226. ..'58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:275|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:276|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:277|7:41|8:254|17:58|10:10|14:10|4:55|4:55;'
  227. ..'1|2:4|3:4|4:55|5:6|6:278|7:267|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:279|7:41|8:249|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:280|7:41|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:281|'
  228. ..'7:41|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:282|7:41|8:247|17:58|10:10|14:10|4:55|4:55;p;2|1:283;n;1|2:4|3:4|4:55|5:6|6:284|7:62|8:247|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:285|7:62|8:249|17:58'
  229. ..'|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:286|7:62|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:287|7:62|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:288|7:62|8:254|17:58|10:10|14:10|4:55|4:55;1|2:'
  230. ..'4|3:4|4:55|5:6|6:289|7:246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:223|5:6|6:290|7:246|8:249|17:58|10:10|14:10|4:223|4:223;1|2:4|3:4|4:55|5:6|6:291|7:246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:292|7:'
  231. ..'246|8:251|17:58|10:10|14:10|4:55|4:55;1|2:4|3:4|4:55|5:6|6:293|7:246|8:247|17:58|10:10|14:10|4:55|4:55;p;p;10|1:294;p;2|1:295;n;2|1:296;n;1|2:4|3:4|4:297|5:35|6:298|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6'
  232. ..':300|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:302|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:303|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:304|8:305|10:10|14:10|4:297|4:297'
  233. ..';1|2:4|3:4|4:297|5:35|6:306|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:307|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:308|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:309|7:235|8:301|'
  234. ..'10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:310|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:311|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:312|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:'
  235. ..'297|5:35|6:313|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:314|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:315|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:316|7:8|8:299|10:10|14:10|4'
  236. ..':297|4:297;1|2:4|3:4|4:297|5:35|6:317|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:318|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:319|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:'
  237. ..'320|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:321|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:322|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:323|8:305|10:10|14:10|4:297|4:297;1|2:4|3:'
  238. ..'4|4:297|5:35|6:324|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:325|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:326|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:327|7:8|8:299|10:'
  239. ..'10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:328|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:329|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:330|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297'
  240. ..'|5:35|6:331|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:332|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:333|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:334|7:8|8:299|10:10|14:10|'
  241. ..'4:297|4:297;1|2:4|3:4|4:297|5:35|6:335|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:336|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:337|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:338|7'
  242. ..':241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:339|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:340|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:341|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4'
  243. ..'|3:4|4:297|5:35|6:342|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:343|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:344|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:345|7:8|8:299|10:10|14'
  244. ..':10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:346|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:347|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:348|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:3'
  245. ..'49|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:350|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:351|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:352|8:305|10:10|14:10|4:297|4:297;1|2'
  246. ..':4|3:4|4:297|5:35|6:353|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:354|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:355|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:356|7:241|8:301|'
  247. ..'10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:357|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:358|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:359|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|'
  248. ..'5:35|6:360|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:361|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:362|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:363|7:241|8:301|10:10|14:10|4'
  249. ..':297|4:297;1|2:4|3:4|4:297|5:35|6:364|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:365|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:366|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:367|'
  250. ..'7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:368|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:369|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:370|7:235|8:301|10:10|14:10|4:297|4:297;1|2:'
  251. ..'4|3:4|4:297|5:35|6:371|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:372|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:373|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:374|7:241|8:301|10:10'
  252. ..'|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:375|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:376|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:377|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|'
  253. ..'6:378|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:379|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:380|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:381|8:305|10:10|14:10|4:297|4:29'
  254. ..'7;1|2:4|3:4|4:297|5:35|6:382|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:383|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:384|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:385|7:241|8:301'
  255. ..'|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:386|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:387|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:388|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297'
  256. ..'|5:35|6:389|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:34|5:35|6:390|7:8|8:391|10:10|14:10|4:34|4:34;1|2:4|3:4|4:297|5:35|6:392|7:8|8:299|10:10|14:10|4:297|4:297;3|2:4|3:4|4:223|5:6|6:393|7:394|8:395|34:58|9:10|10:10|1'
  257. ..'1:10|12:10|13:10|14:10|4:223|4:223;1|2:4|3:4|4:297|5:35|6:396|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:397|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:398|7:235|8:301|10:10|14:10|4:297|4:297;1|2'
  258. ..':4|3:4|4:297|5:35|6:399|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:400|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:401|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:402|7:235|8:301|'
  259. ..'10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:403|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:404|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:405|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|'
  260. ..'5:35|6:406|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:407|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:408|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:409|7:8|8:299|10:10|14:10|4:297|4'
  261. ..':297;1|2:4|3:4|4:297|5:35|6:410|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:411|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:412|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:413|7:8|8:29'
  262. ..'9|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:414|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:415|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:416|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:29'
  263. ..'7|5:35|6:417|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:418|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:419|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:420|7:241|8:301|10:10|14:'
  264. ..'10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:421|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:422|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:423|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|'
  265. ..'6:424|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:425|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:426|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:427|8:305|10:10|14:10|4:297|4:29'
  266. ..'7;1|2:4|3:4|4:297|5:35|6:428|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:429|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:430|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:431|7:8|8:299|1'
  267. ..'0:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:432|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:433|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:434|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5'
  268. ..':35|6:435|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:436|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:437|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:438|8:305|10:10|14:10|4:297|4:'
  269. ..'297;1|2:4|3:4|4:297|5:35|6:439|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:440|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:441|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:442|7:235'
  270. ..'|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:443|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:444|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:445|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3'
  271. ..':4|4:297|5:35|6:446|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:447|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:448|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:449|7:235|8:301|10:10|14:10|4:'
  272. ..'297|4:297;1|2:4|3:4|4:297|5:35|6:450|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:451|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:452|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:453'
  273. ..'|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:454|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:455|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:456|7:8|8:299|10:10|14:10|4:297|4:297;1'
  274. ..'|2:4|3:4|4:297|5:35|6:457|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:458|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:459|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:460|7:8|8:'
  275. ..'299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:461|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:462|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:463|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|'
  276. ..'3:4|4:297|5:35|6:464|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:465|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:466|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:467|7:235|8:301|10:10|14:'
  277. ..'10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:468|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:469|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:470|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:47'
  278. ..'1|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:472|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:473|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:474|8:305|10:10|14:10|4:297|4:297;1|2:'
  279. ..'4|3:4|4:297|5:35|6:475|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:476|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:477|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:478|8:305|10:10|1'
  280. ..'4:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:479|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:480|7:8|8:299|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:481|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:'
  281. ..'482|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:483|7:235|8:484|10:10|14:10|4:297|4:297;3|2:4|3:4|4:223|5:6|6:485|7:394|8:486|34:58|9:10|10:10|11:10|12:10|13:10|14:10|4:223|4:223;1|2:4|3:4|4:297|5:35|6:487|'
  282. ..'8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:488|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:489|7:241|8:490|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:491|7:8|8:299|10:10|14:10|4:297|4:297;1|2:'
  283. ..'4|3:4|4:297|5:35|6:492|7:241|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:493|8:305|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:494|7:235|8:301|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:495|7:8|8:299|10:10'
  284. ..'|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:496|8:305|10:10|14:10|4:297|4:297;p;2|1:497;n;1|2:4|3:4|4:297|5:35|6:498|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:500|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4'
  285. ..':34|5:35|6:501|7:8|8:502|10:10|14:10|4:34|4:34;1|2:4|3:4|4:297|5:35|6:503|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:504|7:8|8:505|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:506|7:8|8:499|10:10|14:10|4:2'
  286. ..'97|4:297;1|2:4|3:4|4:297|5:35|6:507|7:8|8:505|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:508|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:509|7:8|8:510|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:511|7:'
  287. ..'8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:512|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:513|7:8|8:505|10:10|14:10|4:297|4:297;3|2:4|3:4|4:223|5:6|6:514|7:13|8:395|34:58|9:10|10:10|11:10|12:10|1'
  288. ..'3:10|14:10|4:223|4:223;1|2:4|3:4|4:297|5:35|6:515|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:516|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:517|7:8|8:499|10:10|14:10|4:297|4:297;3|2:4|3:4|4:223'
  289. ..'|5:6|6:518|7:13|8:395|34:58|9:10|10:10|11:10|12:10|13:10|14:10|4:223|4:223;1|2:4|3:4|4:297|5:35|6:519|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:520|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:5'
  290. ..'21|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:522|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:523|7:8|8:499|10:10|14:10|4:297|4:297;1|2:4|3:4|4:297|5:35|6:524|7:8|8:499|10:10|14:10|4:297|4:297;1'
  291. ..'|1:525|2:4|3:4|4:34|5:35|16:4|6:526|7:8|8:527|10:10|14:10|4:34|4:34;p;p;14|1:528;n;10;p;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