Advertisement
lafur

Untitled

May 19th, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.12 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 34408
  3. local genv={}
  4. local Scripts = {
  5. function() model = script.Parent.Parent.Parent
  6. backup = model:clone()
  7. local debounce = false
  8.  
  9. function onTouch(part)
  10. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  11. debounce = true
  12. wait(2)
  13. model = backup:clone()
  14. model.Parent = game.Workspace
  15. model:makeJoints()
  16. script.Parent.Count.Value = 1
  17. debounce = false
  18. end
  19. end
  20. script.Parent.Touched:connect(onTouch) end;
  21. function() position = script.Parent.Engine.Position
  22. local frame = Instance.new("CFrameValue")
  23. frame.Name = "OriginCFrame"
  24. frame.Value = script.Parent.Engine.CFrame
  25. frame.Parent = script.Parent
  26.  
  27. local object = Instance.new("ObjectValue")
  28. object.Value = script.Parent.Parent.Parent
  29.  
  30. seat = script.Parent.Seat
  31.  
  32. function onChildAdded(part)
  33. if part.className == "Weld" then
  34. local torso = part.Part1
  35. if torso ~= nil then
  36. local parent = torso.Parent
  37. if parent ~= nil then
  38. script.Parent.Parent.Parent = parent
  39. while true do
  40. wait(2)
  41. local pos = script.Parent.Engine.Position
  42. if (position - pos).magnitude > 30 then
  43. if object.Value ~= nil then
  44. object.Value.Regen.Value = 1
  45. wait(.5)
  46. object.Value.Regen.Value = 0
  47. object.Value = nil
  48. end
  49. break end
  50. end
  51. while true do
  52. print("Loop")
  53. wait(2)
  54. if part == nil then
  55. script.Parent.Parent.Parent = game.Workspace
  56. script.Parent.Parent:MakeJoints()
  57. break end
  58. end
  59. end
  60. end
  61. end
  62. end
  63. seat.ChildAdded:connect(onChildAdded) end;
  64. function() --[[
  65. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  66. (e.g. both in workspace directly, or both directly in the same group or model)
  67. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  68. If you want more than one set of teleporters I will be adding more types in the future.
  69.  
  70. Send me requests and ideas - miked.
  71. --]]
  72.  
  73.  
  74. --Enter the name of the model you want to go to here.
  75. ------------------------------------
  76. modelname="teleporter1b"
  77. ------------------------------------
  78.  
  79. function onTouched(part)
  80. if part.Parent ~= nil then
  81. local h = part.Parent:findFirstChild("Humanoid")
  82. if h~=nil then
  83. local teleportfrom=script.Parent.Enabled.Value
  84. if teleportfrom~=0 then
  85. if h==humanoid then
  86. return
  87. end
  88. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  89. if teleportto~=nil then
  90. local torso = h.Parent.Torso
  91. local location = {teleportto.Position}
  92. local i = 1
  93.  
  94. local x = location[i].x
  95. local y = location[i].y
  96. local z = location[i].z
  97.  
  98. x = x + math.random(-1, 1)
  99. z = z + math.random(-1, 1)
  100. y = y + math.random(2, 3)
  101.  
  102. local cf = torso.CFrame
  103. local lx = 0
  104. local ly = y
  105. local lz = 0
  106.  
  107. script.Parent.Enabled.Value=0
  108. teleportto.Enabled.Value=0
  109. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  110. wait(0.1)
  111. script.Parent.Enabled.Value=1
  112. teleportto.Enabled.Value=1
  113. else
  114. print("Could not find teleporter!")
  115. end
  116. end
  117. end
  118. end
  119. end
  120.  
  121. script.Parent.Touched:connect(onTouched)
  122. end;
  123. function() --[[
  124. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  125. (e.g. both in workspace directly, or both directly in the same group or model)
  126. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  127. If you want more than one set of teleporters I will be adding more types in the future.
  128.  
  129. Send me requests and ideas - miked.
  130. --]]
  131.  
  132.  
  133. --Enter the name of the model you want to go to here.
  134. ------------------------------------
  135. modelname="teleporter1a"
  136. ------------------------------------
  137.  
  138. function onTouched(part)
  139. if part.Parent ~= nil then
  140. local h = part.Parent:findFirstChild("Humanoid")
  141. if h~=nil then
  142. local teleportfrom=script.Parent.Enabled.Value
  143. if teleportfrom~=0 then
  144. if h==humanoid then
  145. return
  146. end
  147. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  148. if teleportto~=nil then
  149. local torso = h.Parent.Torso
  150. local location = {teleportto.Position}
  151. local i = 1
  152.  
  153. local x = location[i].x
  154. local y = location[i].y
  155. local z = location[i].z
  156.  
  157. x = x + math.random(-1, 1)
  158. z = z + math.random(-1, 1)
  159. y = y + math.random(2, 3)
  160.  
  161. local cf = torso.CFrame
  162. local lx = 0
  163. local ly = y
  164. local lz = 0
  165.  
  166. script.Parent.Enabled.Value=0
  167. teleportto.Enabled.Value=0
  168. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  169. wait(0.1)
  170. script.Parent.Enabled.Value=1
  171. teleportto.Enabled.Value=1
  172. else
  173. print("Could not find teleporter!")
  174. end
  175. end
  176. end
  177. end
  178. end
  179.  
  180. script.Parent.Touched:connect(onTouched)
  181. end;
  182. function() --[[
  183. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  184. (e.g. both in workspace directly, or both directly in the same group or model)
  185. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  186. If you want more than one set of teleporters I will be adding more types in the future.
  187.  
  188. Send me requests and ideas - miked.
  189. --]]
  190.  
  191.  
  192. --Enter the name of the model you want to go to here.
  193. ------------------------------------
  194. modelname="teleporter1b"
  195. ------------------------------------
  196.  
  197. function onTouched(part)
  198. if part.Parent ~= nil then
  199. local h = part.Parent:findFirstChild("Humanoid")
  200. if h~=nil then
  201. local teleportfrom=script.Parent.Enabled.Value
  202. if teleportfrom~=0 then
  203. if h==humanoid then
  204. return
  205. end
  206. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  207. if teleportto~=nil then
  208. local torso = h.Parent.Torso
  209. local location = {teleportto.Position}
  210. local i = 1
  211.  
  212. local x = location[i].x
  213. local y = location[i].y
  214. local z = location[i].z
  215.  
  216. x = x + math.random(-1, 1)
  217. z = z + math.random(-1, 1)
  218. y = y + math.random(2, 3)
  219.  
  220. local cf = torso.CFrame
  221. local lx = 0
  222. local ly = y
  223. local lz = 0
  224.  
  225. script.Parent.Enabled.Value=0
  226. teleportto.Enabled.Value=0
  227. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  228. wait(0.3)
  229. script.Parent.Enabled.Value=1
  230. teleportto.Enabled.Value=1
  231. else
  232. print("Could not find teleporter!")
  233. end
  234. end
  235. end
  236. end
  237. end
  238.  
  239. script.Parent.Touched:connect(onTouched)
  240. end;
  241. function() --[[
  242. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  243. (e.g. both in workspace directly, or both directly in the same group or model)
  244. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  245. If you want more than one set of teleporters I will be adding more types in the future.
  246.  
  247. Send me requests and ideas - miked.
  248. --]]
  249.  
  250.  
  251. --Enter the name of the model you want to go to here.
  252. ------------------------------------
  253. modelname="teleporter1a"
  254. ------------------------------------
  255.  
  256. function onTouched(part)
  257. if part.Parent ~= nil then
  258. local h = part.Parent:findFirstChild("Humanoid")
  259. if h~=nil then
  260. local teleportfrom=script.Parent.Enabled.Value
  261. if teleportfrom~=0 then
  262. if h==humanoid then
  263. return
  264. end
  265. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  266. if teleportto~=nil then
  267. local torso = h.Parent.Torso
  268. local location = {teleportto.Position}
  269. local i = 1
  270.  
  271. local x = location[i].x
  272. local y = location[i].y
  273. local z = location[i].z
  274.  
  275. x = x + math.random(-1, 1)
  276. z = z + math.random(-1, 1)
  277. y = y + math.random(2, 3)
  278.  
  279. local cf = torso.CFrame
  280. local lx = 0
  281. local ly = y
  282. local lz = 0
  283.  
  284. script.Parent.Enabled.Value=0
  285. teleportto.Enabled.Value=0
  286. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  287. wait(0.1)
  288. script.Parent.Enabled.Value=1
  289. teleportto.Enabled.Value=1
  290. else
  291. print("Could not find teleporter!")
  292. end
  293. end
  294. end
  295. end
  296. end
  297.  
  298. script.Parent.Touched:connect(onTouched)
  299. end;
  300. function() --[[
  301. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  302. (e.g. both in workspace directly, or both directly in the same group or model)
  303. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  304. If you want more than one set of teleporters I will be adding more types in the future.
  305.  
  306. Send me requests and ideas - miked.
  307. --]]
  308.  
  309.  
  310. --Enter the name of the model you want to go to here.
  311. ------------------------------------
  312. modelname="teleporter1a"
  313. ------------------------------------
  314.  
  315. function onTouched(part)
  316. if part.Parent ~= nil then
  317. local h = part.Parent:findFirstChild("Humanoid")
  318. if h~=nil then
  319. local teleportfrom=script.Parent.Enabled.Value
  320. if teleportfrom~=0 then
  321. if h==humanoid then
  322. return
  323. end
  324. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  325. if teleportto~=nil then
  326. local torso = h.Parent.Torso
  327. local location = {teleportto.Position}
  328. local i = 1
  329.  
  330. local x = location[i].x
  331. local y = location[i].y
  332. local z = location[i].z
  333.  
  334. x = x + math.random(-1, 1)
  335. z = z + math.random(-1, 1)
  336. y = y + math.random(2, 3)
  337.  
  338. local cf = torso.CFrame
  339. local lx = 0
  340. local ly = y
  341. local lz = 0
  342.  
  343. script.Parent.Enabled.Value=0
  344. teleportto.Enabled.Value=0
  345. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  346. wait(0.1)
  347. script.Parent.Enabled.Value=1
  348. teleportto.Enabled.Value=1
  349. else
  350. print("Could not find teleporter!")
  351. end
  352. end
  353. end
  354. end
  355. end
  356.  
  357. script.Parent.Touched:connect(onTouched)
  358. end;
  359. function() --[[
  360. INSTRUCTIONS: Place both teleporter1a and teleporter1b in the same directory
  361. (e.g. both in workspace directly, or both directly in the same group or model)
  362. Otherwise it wont work. Once youve done that, jump on the teleporter to teleport to the other.
  363. If you want more than one set of teleporters I will be adding more types in the future.
  364.  
  365. Send me requests and ideas - miked.
  366. --]]
  367.  
  368.  
  369. --Enter the name of the model you want to go to here.
  370. ------------------------------------
  371. modelname="teleporter1b"
  372. ------------------------------------
  373.  
  374. function onTouched(part)
  375. if part.Parent ~= nil then
  376. local h = part.Parent:findFirstChild("Humanoid")
  377. if h~=nil then
  378. local teleportfrom=script.Parent.Enabled.Value
  379. if teleportfrom~=0 then
  380. if h==humanoid then
  381. return
  382. end
  383. local teleportto=script.Parent.Parent:findFirstChild(modelname)
  384. if teleportto~=nil then
  385. local torso = h.Parent.Torso
  386. local location = {teleportto.Position}
  387. local i = 1
  388.  
  389. local x = location[i].x
  390. local y = location[i].y
  391. local z = location[i].z
  392.  
  393. x = x + math.random(-1, 1)
  394. z = z + math.random(-1, 1)
  395. y = y + math.random(2, 3)
  396.  
  397. local cf = torso.CFrame
  398. local lx = 0
  399. local ly = y
  400. local lz = 0
  401.  
  402. script.Parent.Enabled.Value=0
  403. teleportto.Enabled.Value=0
  404. torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
  405. wait(0.1)
  406. script.Parent.Enabled.Value=1
  407. teleportto.Enabled.Value=1
  408. else
  409. print("Could not find teleporter!")
  410. end
  411. end
  412. end
  413. end
  414. end
  415.  
  416. script.Parent.Touched:connect(onTouched)
  417. end;
  418. function() local boom = false
  419.  
  420. function createExplosion(position)
  421.  
  422. explosion = Instance.new("Explosion")
  423. explosion.Position = position
  424. explosion.BlastRadius = 12
  425. explosion.Parent = game.Workspace
  426.  
  427. end
  428.  
  429. function onTouch(part)
  430. if boom == true then return end
  431. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  432. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  433. boom = true
  434. createExplosion(script.Parent.Parts.Engine.Position)
  435. script.Parent:BreakJoints()
  436. local stuff = script.Parent:children()
  437. for i=1,#stuff do
  438. if stuff[i].Name == "BodyKit" or
  439. stuff[i].Name == "Parts" then
  440. local parts = stuff[i]:children()
  441. for p = 1, #parts do
  442. if parts[p].className == "Part" then
  443. local velo = Instance.new("BodyVelocity")
  444. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  445. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  446. velo.Parent = parts[p]
  447. end
  448. end
  449. end
  450. end
  451. wait(4)
  452. script.Parent:remove()
  453. end
  454. end
  455.  
  456. script.Parent.Parts.Tip.Touched:connect(onTouch)
  457. end;}local ActualScripts = {}
  458. function s(var)
  459. local func = table.remove(Scripts,1)
  460. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  461. __index = getfenv(func),
  462. }))
  463. table.insert(ActualScripts,coroutine.wrap(func))
  464. end
  465. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  466. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  467. function(t,f)
  468. for a,b in pairs(t) do
  469. f(a,b)
  470. end
  471. end
  472. local Types = {
  473. Color3 = Color3.new,
  474. Vector3 = Vector3.new,
  475. Vector2 = Vector2.new,
  476. UDim = UDim.new,
  477. UDim2 = UDim2.new,
  478. CFrame = CFrame.new,
  479. Rect = Rect.new,
  480. NumberRange = NumberRange.new,
  481. BrickColor = BrickColor.new,
  482. PhysicalProperties = PhysicalProperties.new,
  483. NumberSequence = function(...)
  484. local a = {...}
  485. local t = {}
  486. repeat
  487. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  488. until #a==0
  489. return NumberSequence.new(t)
  490. end,
  491. ColorSequence = function(...)
  492. local a = {...}
  493. local t = {}
  494. repeat
  495. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  496. until #a==0
  497. return ColorSequence.new(t)
  498. end,
  499. number = tonumber,
  500. boolean = function(a)
  501. return a=="1"
  502. end
  503. }
  504. split = function(str,sep)
  505. if not str then return end
  506. local fields = {}
  507. local ConcatNext = false
  508. str:gsub(("([^%s]+)"):format(sep),function(c)
  509. if ConcatNext == true then
  510. fields[#fields] = fields[#fields]..sep..c
  511. ConcatNext = false
  512. else
  513. fields[#fields+1] = c
  514. end
  515. if c:sub(#c)=="\\" then
  516. c = fields[#fields]
  517. fields[#fields] = c:sub(1,#c-1)
  518. ConcatNext = true
  519. end
  520. end)
  521. return fields
  522. end
  523. RemoveAndSplit = function(t)
  524. return split(table_remove(t,1),comma)
  525. end
  526. t = split(str,";")
  527. props = RemoveAndSplit(t)
  528. classes = RemoveAndSplit(t)
  529. values = split(table_remove(t,1),'|')
  530. ICList = RemoveAndSplit(t)
  531. InstanceList = {}
  532. Model = inst"Model"
  533. CurPar = Model
  534. table_foreach(t,function(ct,c)
  535. if c=="n" or c=="p" then
  536. CurPar = c=="n" and LastIns or CurPar[parnt]
  537. else
  538. ct = split(c,"|")
  539. local class = classes[tonum(table_remove(ct,1))]
  540. if class=="UnionOperation" then
  541. LastIns = {UsePartColor="1"}
  542. else
  543. LastIns = inst(class)
  544. if LastIns:IsA"Script" then
  545. s(LastIns)
  546. elseif LastIns:IsA("ModuleScript") then
  547. ms(LastIns)
  548. end
  549. end
  550.  
  551. local function SetProperty(LastIns,p,str,s)
  552. s = Types[typeof(LastIns[p])]
  553. if p=="CustomPhysicalProperties" then
  554. s = PhysicalProperties.new
  555. end
  556. if s then
  557. LastIns[p] = s(unpack(split(str,comma)))
  558. else
  559. LastIns[p] = str
  560. end
  561. end
  562.  
  563. local UnionData
  564. table_foreach(ct,function(s,p,a,str)
  565. a = p:find":"
  566. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  567. if p=="UnionData" then
  568. UnionData = split(str," ")
  569. return
  570. end
  571. if class=="UnionOperation" then
  572. LastIns[p] = str
  573. return
  574. end
  575. SetProperty(LastIns,p,str)
  576. end)
  577.  
  578. if UnionData then
  579. local LI_Data = LastIns
  580. LastIns = DecodeUnion(UnionData)
  581. table_foreach(LI_Data,function(p,str)
  582. SetProperty(LastIns,p,str)
  583. end)
  584. end
  585. table.insert(InstanceList,LastIns)
  586. LastIns[parnt] = CurPar
  587. end
  588. end)
  589. table_remove(ICList,1)
  590. table_foreach(ICList,function(a,b)
  591. b = split(b,">")
  592. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  593. end)
  594.  
  595. return Model:GetChildren()
  596. end
  597.  
  598. local Objects = Decode('Name,PrimaryPart,Value,Color,Position,Orientation,Size,BottomSurface,TopSurface,C0,C1,Part0,Part1,FrontSurface,RightSurface,LeftSurface,Transparency,MaxTorque,MaxForce,Reflectance,BackSurface,MeshType,CanCollide;Part,Model,CFrame'
  599. ..'Value,Seat,Weld,IntValue,BodyGyro,BodyPosition,Script,Rotate,SpecialMesh;Part|SpaceShip|Parts|OriginCFrame|-102.9924,10.7712,-726.6936,-1,0.0004,0,0.0004,0.9999,-0.0007,-0.0001,-0.0007,-1|819.9973,10.8972,-814.9733,-1,0.0004,0,0.'
  600. ..'0004,0.9999,0,-0.0001,0,-1|222.9997,10.8018,-157.9743,-1,0,-0.0001,0,1,0,0,0,-1|-45.0007,11.6175,-151.9751,-1,0,-0.0001,0,1,0.0001,0,0.0001,-1|40,1,74,-1,0,-0,-0,1,-0,-0,0,-1|0.7686,0.1568,0.1098|30.0334,47.4005,56.1241|0,180,0|2'
  601. ..',0.4,2|2|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|13,0.6,0.5,0,-1,0,0,0,-1,1,0,0|Gun1|0.1058,0.1647,0.2078|36.0334,18.0005,173.1241|2,7.2,14|6|0|1,0,0,0,0,1,0,1,0,-1,-0,-0|3.5,-0.6,0,0,0,-1,0,1,0,1,0,0|Gun2|27.0334,18.0005,173.1241|-1,0,'
  602. ..'0,-0,-0,-1,0,1,0,1,0,0|-3.5,-0.6,0,0,0,1,0,1,0,-1,0,0|Engine|0.4274,0.4313,0.4235|1|32.5334,1.8005,85.1241|0,-180,0|47,1.2,174|Count|0,0,0|-1.5,3,-48|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-16,5.9999,23.5,0,1,0,0,0,-1,-1,0,0|-48,5.9999,23.'
  603. ..'5,0,1,0,0,0,-1,-1,0,0|-13,5.9999,69.5,1,0,0,0,0,-1,0,1,0|21,5.9999,67.5,1,0,0,0,0,-1,0,1,0|32,5.9999,23.5,0,1,0,0,0,-1,-1,0,0|8,5.9999,72,1,0,0,0,0,-1,0,1,0|hinge|33.0334,0.6,83.6241|48,1.2,125|-0.5,-0.6,1.5,-1,-0,-0,0,0,1,0,1,0|'
  604. ..'-256,10,256,-1,0,0,0,0,1,0,1,0|-289.0335,-0.6001,172.3758,-1,0,0,0,0,1,0,1,0|PlaneCheck|Stunt|BodyKit|0.949,0.9529,0.9529|0.2|0.5|56.0334,28.8005,36.1241|0,-90,0|28,12,4|41.0334,51.4005,67.1241|2,3.6,14|0,-1.8001,0,1,0,0,-0,-0,-1'
  605. ..',0,1,0|0,1.2,-10.5001,0,-1,0,0,0,-1,1,0,0|0,0,7,1,0,0,0,1,0,0,0,1|17,1.2,0,0,0,-1,0,1,0,1,0,0|56.5334,19.8005,40.1241|3,3.6,12|SmoothBlockModel|56.5334,19.8005,33.1241|3,3.6,2|56.0334,28.8005,52.1241|4,12,4|30.5334,46.6005,66.624'
  606. ..'1|0,180,180|23,1.2,13|30.5334,48.4005,67.1241|14,2.4,23|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|-10.5,-1.8,0,0,1,0,0,0,1,1,0,0|0,-1.2001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.6001,-0.5,0,-1,0,0,0,1,-1,0,0|0.8|30.5334,51.4005,67.1241|19,3.6,14|0,1.2,0'
  607. ..',0,-1,0,0,0,-1,1,0,0|56.5334,19.8005,19.1241|0,1.8,-63.5,-1,0,0,0,0,-1,0,-1,0|56.0334,28.8005,20.1241|56.5334,19.8005,26.1241|0,1.8,-56.5,-1,0,0,0,0,-1,0,-1,0|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|25,-0.6001,-56.5,1,0,0,0,0,1,0,-1,0|44.03'
  608. ..'34,42.0005,33.6241|17,12,4|0,-6,0,1,0,0,-0,-0,-1,0,1,0|12.5,0.6,-49.5,0,-1,0,0,0,-1,1,0,0|0,0,2,1,0,0,0,1,0,0,0,1|-9.5,-8.2,-1,1,0,0,0,1,0,0,0,1|0,1.1999,-11.5,1,0,0,0,1,0,0,0,1|30.5334,42.0005,23.1241|25,12,4|-8.5,0,13.5,0,0,1,0'
  609. ..',1,0,-1,0,0|-8.5,1.1999,0,0,0,1,0,1,0,-1,0,0|-1,0.6,-60,1,0,0,0,0,-1,0,1,0|8.5,0,13.5,0,0,-1,0,1,0,1,0,0|31.5334,15.0005,170.6241|0,90,0|19,1.2,7|0,-3.0001,-2.5,0,1,0,0,0,1,1,0,0|0,0,-3.5,-1,-0,-0,0,1,0,-0,-0,-1|-1,-3.0001,2.5,0,'
  610. ..'0,1,0,1,0,-1,0,0|0,-3.0001,7,0,1,0,0,0,1,1,0,0|0,0,3.5,1,0,0,0,1,0,0,0,1|1,-3.0001,2.5,0,0,-1,0,1,0,1,0,0|31.5334,28.8005,19.1241|2,12,45|0,6,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6001,-64,0,-1,0,0,0,1,-1,0,0|0,0,-22.5,-1,-0,-0,0,1,0,-0,-0'
  611. ..',-1|-1,0,2,-1,0,0,0,1,0,0,0,-1|-1.5,-0.6,0,0,1,0,0,0,1,1,0,0|0,0,22.5,1,0,0,0,1,0,0,0,1|1,0,2,-1,0,0,0,1,0,0,0,-1|7.0334,8.4005,85.1241|0,90,180|-24.5,-0.6,-1,0,1,0,0,0,1,1,0,0|7.0334,8.4005,117.1241|30.5334,40.8005,33.6241|17,9.'
  612. ..'6,23|56.5334,19.8005,146.1241|0,1.8,63.5,-1,0,0,0,0,-1,0,-1,0|31.5334,28.2005,164.1241|7,13.2,32|0,-6.6001,0,1,0,0,-0,-0,-1,0,1,0|0,3,5,-1,0,0,0,0,-1,0,-1,0|0,3,8.5,-1,0,0,0,0,-1,0,-1,0|0,3,-9,-1,0,0,0,0,-1,0,-1,0|0,3,14.5,-1,0,0'
  613. ..',0,0,-1,0,-1,0|56.0334,8.4005,85.1241|0,-90,180|-23.5,0.5999,0,-0,1,0,0,0,-1,-1,0,0|-0.5,-1.8,2.5,0,-1,0,0,0,1,-1,0,0|31.5334,15.0005,155.6241|45,1.2,3|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|-14,-6,-1,1,0,0,-0,-0,1,0,-1,0|20,-6,-3,1,0,'
  614. ..'0,-0,-0,1,0,-1,0|0,-3.0001,0,-1,0,0,0,0,1,0,1,0|31.5334,30.3005,17.5241|0,-90,90|9,1.2,5|56.5334,19.8005,96.1241|0,1.8,13.5,-1,0,0,0,0,-1,0,-1,0|56.0334,8.4005,21.1241|-23.5,0.5999,64,0,1,0,0,0,-1,-1,0,0|22.5,5.3999,-62.5,0,0,-1,'
  615. ..'0,-1,0,-1,0,0|24.5,-0.6,-65,0,-1,0,0,0,1,-1,0,0|-0.5,-1.8,-61.5,0,-1,0,0,0,1,-1,0,0|1,-0.6,-22.5,-1,0,0,0,-1,0,0,0,1|38.5334,28.2005,157.1241|7,13.2,18|7,3,1.5,-1,0,0,0,0,-1,0,-1,0|56.0334,8.4005,37.1241|6.5334,19.8005,19.1241|7.'
  616. ..'0334,28.8005,84.1241|56.5334,19.8005,68.1241|0,1.8,-14.5,-1,0,0,0,0,-1,0,-1,0|Teleports1|teleporter1a|35.0334,23.0005,142.1241|4,0.4,4|0|Enabled|teleporter1b|35.0334,15.8005,142.1241|3.5,0.6,56,1,0,0,0,0,-1,0,1,0|31.5334,18.6005,'
  617. ..'173.1241|7,6,14|6.5334,19.8005,146.1241|Teleports2|0.4313,0.6,0.7921|35.0334,15.8005,26.1241|3.5,0.6,-60,0,1,0,0,0,-1,-1,0,0|35.0334,3.8005,26.1241|6.5334,19.8005,48.1241|7.0334,28.8005,52.1241|56.5334,19.8005,75.1241|31.5334,30.'
  618. ..'3005,6.7241|90,180,0|5,20.4,9|0,-10.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.5999,0,0,-1,0,0,0,-1,1,0,0|7.0334,28.8005,132.6241|29,12,4|-14.5,0,0,-0,-0,-1,0,1,0,1,0,0|1.5,0.5999,4,-1,0,0,0,1,0,0,0,-1|17.5334,8.4005,154.6241|7,12,13|-14,-0'
  619. ..'.6,68.5,1,0,0,0,0,1,0,-1,0|15,0.5999,-69.5,1,0,0,0,0,-1,0,1,0|-14,-0.6,-4.5,1,0,0,0,0,1,0,-1,0|-14,-0.6,-1,1,0,0,0,0,1,0,-1,0|6.5334,19.8005,104.1241|30.5334,53.8005,43.1241|34,1.2,23|0,2.9999,10.5,1,0,0,0,0,-1,0,1,0|0,2.9999,16,'
  620. ..'0,-1,0,0,0,-1,1,0,0|0,2.9999,-10.5,1,0,0,0,0,-1,0,1,0|8.5334,28.2005,151.1241|1,13.2,8|-23,3,1.5,-1,0,0,0,0,-1,0,-1,0|6.5334,19.8005,62.1241|0.0509,0.4117,0.6745|56.0334,8.4005,69.1241|7.0334,8.4005,21.1241|31.5334,8.4005,164.124'
  621. ..'1|7,12,32|0,-0.6,78,1,0,0,0,0,1,0,-1,0|0,-0.6,5,1,0,0,0,0,1,0,-1,0|0,-0.6,8.5,1,0,0,0,0,1,0,-1,0|6.5,-0.6,0,0,1,0,0,0,1,1,0,0|1,0.5999,-79,1,0,0,0,0,-1,0,1,0|7.0334,28.8005,68.1241|6.5334,19.8005,76.1241|56.0334,28.8005,100.1241|'
  622. ..'24.5334,8.4005,157.1241|7,12,18|-7,-0.6,1.5,1,0,0,0,0,1,0,-1,0|56.5334,19.8005,47.1241|6.5334,19.8005,83.1241|56.5334,19.8005,131.1241|0,1.8,48.5,-1,0,0,0,0,-1,0,-1,0|Seat2|37.0334,47.4005,42.1241|30.5334,46.6005,43.1241|6.5,-0.2'
  623. ..'001,-1,0,1,0,0,0,1,1,0,0|0,-3.0001,10.5,-1,0,0,0,0,1,0,1,0|0,0,-11.5,-1,-0,-0,0,1,0,-0,-0,-1|9.5,4.5999,2,-1,0,0,0,1,0,0,0,-1|-11,-0.2001,-2.5,1,0,0,0,0,1,0,-1,0|17,0,0,0,0,1,0,1,0,-1,-0,-0|0,0,6.5,1,0,0,0,-1,0,0,0,-1|-6.5,-0.200'
  624. ..'1,-1,0,1,0,0,0,1,1,0,0|0,-3.0001,-10.5,-1,0,0,0,0,1,0,1,0|0,-3.0001,16,0,-1,0,0,0,1,-1,0,0|0,0,11.5,1,0,0,0,1,0,0,0,1|-9.5,4.5999,2,-1,0,0,0,1,0,0,0,-1|56.0334,8.4005,53.1241|-23.5,0.5999,32,0,1,0,0,0,-1,-1,0,0|22.5,5.3999,-30.5,'
  625. ..'0,0,-1,0,-1,0,-1,0,0|24.5,-0.6,-33,0,-1,0,0,0,1,-1,0,0|-0.5,-1.8,-29.5,0,-1,0,0,0,1,-1,0,0|31.5334,18.6005,155.6241|45,6,3|38.5334,15.0005,163.6241|5,1.2,7|7,-3.0001,0,0,1,0,0,0,1,1,0,0|56.5334,16.2005,82.6241|3,3.6,129|0,-1.8001'
  626. ..',-0.5,1,0,0,0,0,1,0,-1,0|0,-1.8001,-7.5,1,0,0,0,0,1,0,-1,0|0,-1.8001,-28.5,1,0,0,0,0,1,0,-1,0|0,-1.8001,-42.5,1,0,0,0,0,1,0,-1,0|0,-1.8001,56,1,0,0,0,0,1,0,-1,0|0,-1.8001,-49.5,1,0,0,0,0,1,0,-1,0|0,-1.8001,-35.5,1,0,0,0,0,1,0,-1,'
  627. ..'0|50.5,-6,-0.5,0,-1,0,0,0,1,-1,0,0|0,-1.8001,41.5,1,0,0,0,0,1,0,-1,0|34.5,-6,-0.5,0,-1,0,0,0,1,-1,0,0|-45.5,-6,-0.5,0,-1,0,0,0,1,-1,0,0|-13.5,-6,-0.5,0,-1,0,0,0,1,-1,0,0|56.0334,8.4005,101.1241|24.5,-0.6,15,0,-1,0,0,0,1,-1,0,0|-0'
  628. ..'.5,-1.8,18.5,0,-1,0,0,0,1,-1,0,0|-23.5,0.5999,-16,-0,1,0,0,0,-1,-1,0,0|6.5334,19.8005,139.1241|24.5334,28.2005,157.1241|-7,3,-2,-1,0,0,0,0,-1,0,-1,0|-7,3,1.5,-1,0,0,0,0,-1,0,-1,0|-7,3,7.5,-1,0,0,0,0,-1,0,-1,0|54.5334,8.4005,151.1'
  629. ..'241|1,12,8|-22,0.5999,-66,1,0,0,0,0,-1,0,1,0|Teleports3|35.0334,23.0005,26.1241|33.0334,47.4005,32.1241|31.5334,18.6005,159.1241|35,6,4|0,3,0,-1,-0,-0,0,0,1,0,1,0|7,-6.6001,-2,1,0,0,0,0,1,0,-1,0|0.3882,0.3725,0.3843|31.5334,22.20'
  630. ..'05,82.6241|53,1.2,129|-33.5,-6,24.5,0,1,0,0,0,1,1,0,0|25,1.8,41.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,56,-1,0,0,0,0,-1,0,-1,0|25,1.8,13.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,27.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,6.5,-1,0,0,0,0,-1,0,-1,0|0,0,64.5,1,0,'
  631. ..'0,0,1,0,0,0,1|23,-6,4,-1,0,0,0,1,0,0,0,-1|25,1.8,-0.5,-1,0,0,0,0,-1,0,-1,0|14.5,-6,24.5,0,1,0,0,0,1,1,0,0|-1.5,-6,24.5,0,1,0,0,0,1,1,0,0|30.5,-6,24.5,0,1,0,0,0,1,1,0,0|25,1.8,-28.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,-49.5,-1,0,0,0,0,-1,'
  632. ..'0,-1,0|25,1.8,-35.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,-63.5,-1,0,0,0,0,-1,0,-1,0|46.5,-6,24.5,0,1,0,0,0,1,1,0,0|0,0,-64.5,-1,-0,-0,0,1,0,-0,-0,-1|3.6,-10.8001,0.5,0,1,0,0,0,1,1,0,0|0,3,-67,1,0,0,0,0,-1,0,1,0|25,1.8,-56.5,1,0,0,0,0,-1,0'
  633. ..',1,0|25,1.8,63.5,-1,0,0,0,0,-1,0,-1,0|62.5,-6,24.5,0,1,0,0,0,1,1,0,0|25,1.8,-42.5,1,0,0,0,0,-1,0,1,0|25,1.8,-14.5,1,0,0,0,0,-1,0,1,0|25,1.8,-49.5,1,0,0,0,0,-1,0,1,0|17.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|25,1.8,20.5,-1,0,0,0,0,-1,0,-1,'
  634. ..'0|25,1.8,-42.5,-1,0,0,0,0,-1,0,-1,0|1.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|25,1.8,-28.5,1,0,0,0,0,-1,0,1,0|-17.5,-6,24.5,0,1,0,0,0,1,1,0,0|-3.5001,-0.2,56.5,-1,0,0,0,0,1,0,1,0|25,1.8,-63.5,1,0,0,0,0,-1,0,1,0|25,1.8,20.5,1,0,0,0,0,-1,0,1'
  635. ..',0|25,1.8,48.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,13.5,1,0,0,0,0,-1,0,1,0|-30.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|25,1.8,-21.5,1,0,0,0,0,-1,0,1,0|-14.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|25,1.8,41.5,1,0,0,0,0,-1,0,1,0|25,1.8,-7.5,1,0,0,0,0,-1,0,1,0|'
  636. ..'25,1.8,48.5,1,0,0,0,0,-1,0,1,0|25,1.8,-14.5,-1,0,0,0,0,-1,0,-1,0|25,1.8,6.5,1,0,0,0,0,-1,0,1,0|25,1.8,-0.5,1,0,0,0,0,-1,0,1,0|25,1.8,27.5,1,0,0,0,0,-1,0,1,0|25,1.8,-35.5,1,0,0,0,0,-1,0,1,0|25,1.8,34.5,-1,0,0,0,0,-1,0,-1,0|-62.5,-'
  637. ..'6,24.5,0,-1,0,0,0,1,-1,0,0|63.5,3,0,0,1,0,0,0,-1,-1,0,0|25,1.8,-7.5,-1,0,0,0,0,-1,0,-1,0|-46.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|25,1.8,34.5,1,0,0,0,0,-1,0,1,0|25,1.8,63.5,1,0,0,0,0,-1,0,1,0|25,1.8,56,1,0,0,0,0,-1,0,1,0|59.5,-0.2,-3.50'
  638. ..'01,0,-1,0,0,0,1,-1,0,0|63.5,-6,0,0,1,0,0,0,1,1,0,0|-23,-6,4,-1,0,0,0,1,0,0,0,-1|50,-6,24.5,0,-1,0,0,0,1,-1,0,0|33.5,-6,24.5,0,-1,0,0,0,1,-1,0,0|7.0334,28.8005,36.1241|56.5334,19.8005,103.1241|0,1.8,20.5,-1,0,0,0,0,-1,0,-1,0|56.53'
  639. ..'34,19.8005,124.1241|56.5334,19.8005,61.1241|25,-0.6001,-21.5,1,0,0,0,0,1,0,-1,0|0,1.8,-21.5,-1,0,0,0,0,-1,0,-1,0|11.5334,28.2005,152.6241|5,13.2,9|-20,3,-3,-1,0,0,0,0,-1,0,-1,0|6.5334,19.8005,118.1241|31.5334,18.6005,149.6241|47,'
  640. ..'6,9|20,-6.6001,3,1,0,0,0,0,1,0,-1,0|-20,-6.6001,3,1,0,0,0,0,1,0,-1,0|7,-6.6001,7.5,1,0,0,0,0,1,0,-1,0|56.5334,19.8005,82.1241|56.0334,28.8005,116.1241|8.5334,8.4005,151.1241|0,0,4,1,0,0,0,1,0,0,0,1|14,0,1.5,0,0,-1,0,1,0,1,0,0|45.'
  641. ..'5334,8.4005,154.6241|31.5334,7.1005,18.5241|6.5334,19.8005,34.1241|6.5334,19.8005,26.6241|3,3.6,13|0,1.8,-56,1,0,0,0,0,-1,0,1,0|32.0334,18.6005,7.3241|14,21.6,14|0,-10.8001,0,1,0,0,-0,-0,-1,0,1,0|0.5,3.6,-68,0,-1,0,1,0,0,0,0,1|-1'
  642. ..',-10.2001,-0.5,0,0,1,1,0,0,0,1,0|-1,0,-0.5,0,0,1,1,0,0,0,1,0|31.5334,18.6005,19.1241|2,6,47|0,-3,0,1,0,0,-0,-0,-1,0,1,0|0,0.6,-67,0,-1,0,0,0,-1,1,0,0|15.5,-0.6,0.9999,1,0,0,0,0,1,0,-1,0|-15,-0.6,0.9999,1,0,0,0,0,1,0,-1,0|31.5334,'
  643. ..'35.4005,83.1241|47,1.2,130|49.5,-4.8001,-1,0,1,0,0,0,1,1,0,0|6.5334,19.8005,97.1241|0,1.8,14.5,1,0,0,0,0,-1,0,1,0|24.0334,47.4005,42.1241|17.0334,42.0005,33.6241|-14.5,0.6,-49.5,0,1,0,0,0,-1,-1,0,0|-9.5,-8.2,1,-1,0,0,0,1,0,0,0,-1'
  644. ..'|0,1.1999,11.5,-1,0,0,0,1,0,0,0,-1|6.5334,19.8005,132.1241|6.5334,19.8005,125.1241|56.5334,19.8005,89.1241|0,1.8,6.5,-1,0,0,0,0,-1,0,-1,0|7.0334,8.4005,53.1241|-24.5,-0.6,-33,0,1,0,0,0,1,1,0,0|6.5334,19.8005,69.1241|54.5334,28.20'
  645. ..'05,151.1241|23,3,1.5,-1,0,0,0,0,-1,0,-1,0|47.0334,19.6005,17.5241|16,1.2,4|56.0334,8.4005,117.1241|7.0334,28.8005,20.1241|31.5334,9.0005,20.1241|2,10.8,45|1.8999,-0.6,0,0,1,0,0,0,1,1,0,0|-1,-0.6,2,1,0,0,0,-1,0,0,0,-1|56.5334,19.8'
  646. ..'005,117.1241|0,1.8,34.5,-1,0,0,0,0,-1,0,-1,0|56.0334,28.8005,132.6241|24.5,0.5999,50,0,-1,0,0,0,-1,1,0,0|14.5,0,0,0,0,1,0,1,0,-1,-0,-0|-1.5,0.5999,4,-1,0,0,0,1,0,0,0,-1|56.0334,28.8005,68.1241|56.0334,28.8005,84.1241|31.5334,18.6'
  647. ..'005,163.6241|21,6,5|0,-6.6001,0.5,1,0,0,0,0,1,0,-1,0|-7,-6.6001,-6.5,1,0,0,0,0,1,0,-1,0|7,-6.6001,-6.5,1,0,0,0,0,1,0,-1,0|0,0.6,7,0,-1,0,0,0,-1,1,0,0|56.5334,19.8005,54.1241|20.0334,50.2005,43.1241|34,6,2|56.5334,19.8005,110.1241'
  648. ..'|0,1.8,27.5,-1,0,0,0,0,-1,0,-1,0|6.5334,19.8005,111.1241|7.0334,28.8005,116.1241|7.0334,8.4005,133.1241|17.5334,28.2005,154.6241|7,13.2,13|-14,3,-4.5,-1,0,0,0,0,-1,0,-1,0|-14,3,-1,-1,0,0,0,0,-1,0,-1,0|-14,3,5,-1,0,0,0,0,-1,0,-1,0'
  649. ..'|7.0334,8.4005,37.1241|6.5334,19.8005,90.1241|6.5334,19.8005,41.1241|38.5334,8.4005,157.1241|-6.0001,0.5999,-72,1,0,0,0,0,-1,0,1,0|7,-0.6,1.5,1,0,0,0,0,1,0,-1,0|24.5334,15.0005,163.6241|6.5334,16.2005,82.6241|0,-1.8001,-56.5,-1,0'
  650. ..',0,0,0,1,0,1,0|0,-1.8001,-42.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-35.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-28.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-21.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-49.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,13.5,-1,0,0,0,0,1,0,1,0|0,-1.'
  651. ..'8001,-63.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,20.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,27.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,-7.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,41.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,6.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,48.5,-1,0,0,0,0,1,0,'
  652. ..'1,0|0,-1.8001,-0.5,-1,0,0,0,0,1,0,1,0|-50.5,-6,-0.5,0,1,0,0,0,1,1,0,0|-18.5,-6,-0.5,0,1,0,0,0,1,1,0,0|13.5,-6,-0.5,0,1,0,0,0,1,1,0,0|0,-1.8001,34.5,-1,0,0,0,0,1,0,1,0|0,-1.8001,63.5,-1,0,0,0,0,1,0,1,0|29.5,-6,-0.5,0,1,0,0,0,1,1,0'
  653. ..',0|-34.5,-6,-0.5,0,1,0,0,0,1,1,0,0|-2.5,-6,-0.5,0,1,0,0,0,1,1,0,0|45.5,-6,-0.5,0,1,0,0,0,1,1,0,0|61.5,-6,-0.5,0,1,0,0,0,1,1,0,0|51.5334,8.4005,152.6241|5,12,9|-19,0.5999,-67.5,1,0,0,0,0,-1,0,1,0|20,-0.6,66.5,1,0,0,0,0,1,0,-1,0|20'
  654. ..',-0.6,-3,1,0,0,0,0,1,0,-1,0|45.5334,28.2005,154.6241|14,3,-4.5,-1,0,0,0,0,-1,0,-1,0|14,3,5,-1,0,0,0,0,-1,0,-1,0|14,3,-1,-1,0,0,0,0,-1,0,-1,0|7.0334,8.4005,69.1241|16.0334,19.6005,6.7241|0,90,-90|4,20.4,16|0.5,0.5999,0,0,-1,0,0,0,'
  655. ..'-1,1,0,0|56.5334,19.8005,138.6241|30.5334,50.2005,27.1241|19,6,2|6.5334,19.8005,55.1241|20.0334,51.4005,67.1241|11.5334,8.4005,152.6241|16.5334,19.6005,17.5241|17,1.2,4|41.0334,50.2005,43.1241|7.0334,28.8005,100.1241|7.0334,8.400'
  656. ..'5,101.1241|31.5334,15.0005,159.1241|35,1.2,4|-7.0001,-6,-2,1,0,0,-0,-0,1,0,-1,0|7,-6,-2,1,0,0,-0,-0,1,0,-1,0|-14,-6,-4.5,1,0,0,-0,-0,1,0,-1,0|51.5334,28.2005,152.6241|20,3,-3,-1,0,0,0,0,-1,0,-1,0|31.5334,15.0005,86.1241|47,1.2,13'
  657. ..'6|-17,-6,24.5,0,-1,0,0,0,1,-1,0,0|-49,-6,24.5,0,-1,0,0,0,1,-1,0,0|-7.0001,-6,71,1,0,0,-0,-0,1,0,-1,0|-14,-6,68.5,1,0,0,-0,-0,1,0,-1,0|31,-6,24.5,0,-1,0,0,0,1,-1,0,0|7,-6,71,1,0,0,-0,-0,1,0,-1,0|0,-3.0001,-63.5,-1,0,0,0,0,1,0,1,0|'
  658. ..'-23,-6,65,1,0,0,-0,-0,1,0,-1,0|-47,-6,24.5,0,1,0,0,0,1,1,0,0|47,-6,24.5,0,-1,0,0,0,1,-1,0,0|-15,-6,24.5,0,1,0,0,0,1,1,0,0|17,-6,24.5,0,1,0,0,0,1,1,0,0|23,-6,65,1,0,0,0,0,1,0,-1,0|-31,-6,24.5,0,1,0,0,0,1,1,0,0|20,-6,66.5,1,0,0,-0,'
  659. ..'-0,1,0,-1,0|49,-6,24.5,0,1,0,0,0,1,1,0,0|-1,-6,24.5,0,-1,0,0,0,1,-1,0,0|66,5.3999,0,0,1,0,0,0,-1,-1,0,0|65,-6,24.5,0,1,0,0,0,1,1,0,0|47.0334,19.6005,6.7241|-0.0001,0.5999,0,0,1,0,0,0,-1,-1,0,0|56.0334,8.4005,133.1241|-14,0,0,-0,-'
  660. ..'0,-1,0,1,0,1,0,0|1.5,0,4,-1,0,0,0,1,0,0,0,-1|-23.5,0.5999,-48,-0,1,0,0,0,-1,-1,0,0|31.5334,7.1005,7.7241|-90,0,0|0,0.5999,0,0,1,0,0,0,-1,-1,0,0|31.5334,3.0005,83.6241|45,1.2,129|22.5,0,0,0,0,1,0,1,0,-1,-0,-0|1.5,5.3999,2,1,0,0,0,'
  661. ..'-1,-0,0,0,-1|-14.5,5.3999,2,1,0,0,0,-1,-0,0,0,-1|-46.5,5.3999,2,1,0,0,0,-1,-0,0,0,-1|-20,5.3999,4.5,1,0,0,-0,-1,-0,0,0,-1|-7.0001,5.3999,9,1,0,0,-0,-1,-0,0,0,-1|-14,5.3999,6.5,1,0,0,-0,-1,-0,0,0,-1|0,5.3999,16,1,0,0,-0,-1,-0,0,0,'
  662. ..'-1|-4.1,-0.6,0,0,1,0,0,0,1,1,0,0|-3.5001,-0.2,57.5,-1,0,0,0,0,1,0,1,0|14,5.3999,6.5,1,0,0,-0,-1,-0,0,0,-1|-22.5,0,0,-0,-0,-1,0,1,0,1,0,0|-49.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|49.5,5.3999,2,1,0,0,0,-1,-0,0,0,-1|-17.5,5.3999,2,1,0,0,0'
  663. ..',-1,0,0,0,-1|14.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|30.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|-33.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|46.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|20,5.3999,4.5,1,0,0,-0,-1,-0,0,0,-1|-1.5,5.3999,2,1,0,0,0,-1,0,0,0,-1|17.5,5.39'
  664. ..'99,2,1,0,0,0,-1,-0,0,0,-1|63.5,-5.4,0,0,1,0,0,0,1,1,0,0|33.5,5.3999,2,1,0,0,0,-1,-0,0,0,-1|7,5.3999,9,1,0,0,-0,-1,-0,0,0,-1|1,0.6,1.5,-1,-0,0,0,0,-1,-0,-1,0|62.5,5.3999,2,1,0,0,0,-1,0,0,0,-1;0,1>2>15,2>2>15,9>12>8,9>13>189,11>12>'
  665. ..'10,11>13>129,13>12>12,13>13>129,20>12>15,20>13>164,21>12>15,21>13>114,22>12>15,22>13>326,23>12>15,23>13>456,24>12>15,24>13>363,25>12>15,25>13>180,28>12>27,28>13>15,29>12,29>13>27,32>2>244,37>12>35,37>13>45,38>12>35,38>13>459,46>1'
  666. ..'2>45,46>13>453,47>12>45,47>13>43,50>12>48,50>13>45,52>12>51,52>13>208,56>12>55,56>13>208,57>12>55,57>13>244,60>12>58,60>13>341,61>12>58,61>13>459,62>12>58,62>13>84,65>12>63,65>13>58,66>12>63,66>13>84,67>12>63,67>13>341,68>12>63,6'
  667. ..'8>13>346,70>12>69,70>13>129,71>12>69,71>13>12,72>12>69,72>13>380,73>12>69,73>13>10,75>12>74,75>13>341,76>12>74,76>13>53,77>12>74,77>13>101,78>12>74,78>13>365,81>12>79,81>13>472,86>12>85,86>13>208,89>12>87,89>13>242,90>12>87,90>13'
  668. ..'>205,91>12>87,91>13>129,92>12>87,92>13>316,95>12>93,95>13>15,96>12>93,96>13>208,98>12>97,98>13>326,99>12>97,99>13>456,100>12>97,100>13>205,103>12>102,103>13>208,106>12>104,106>13>15,107>12>104,107>13>502,108>12>104,108>13>472,109'
  669. ..'>12>104,109>13>208,110>12>104,110>13>367,113>12>111,113>13>205,120>12>119,120>13>208,121>2>122,128>12>125,128>13>472,131>2>132,135>12>132,135>13>472,145>12>143,145>13>101,148>12>146,148>13>160,151>12>149,151>13>472,152>12>149,152'
  670. ..'>13>15,153>12>149,153>13>464,154>12>149,154>13>97,157>12>156,157>13>459,158>12>156,158>13>451,159>12>156,159>13>386,162>12>160,162>13>316,170>12>168,170>13>472,171>12>168,171>13>464,172>12>168,172>13>97,173>12>168,173>13>69,174>1'
  671. ..'2>168,174>13>15,182>12>180,182>13>408,183>12>180,183>13>97,187>12>186,187>13>208,190>12>189,190>13>188,191>12>189,191>13>459,192>12>189,192>13>58,193>12>189,193>13>239,194>12>189,194>13>43,195>12>189,195>13>345,196>12>189,196>13>'
  672. ..'386,197>12>189,197>13>451,198>12>189,198>13>346,201>12>199,201>13>15,202>12>199,202>13>502,203>12>199,203>13>472,204>12>199,204>13>208,207>12>206,207>13>380,209>12>208,209>13>320,210>12>208,210>13>142,211>12>208,211>13>385,212>12'
  673. ..'>208,212>13>39,213>12>208,213>13>450,214>12>208,214>13>40,215>12>208,215>13>184,216>12>208,216>13>495,217>12>208,217>13>308,218>12>208,218>13>363,219>12>208,219>13>114,220>12>208,220>13>164,223>12>221,223>13>472,224>12>221,224>13'
  674. ..'>208,225>12>221,225>13>15,229>12>227,229>13>242,230>12>227,230>13>205,231>12>227,231>13>316,234>12>232,234>13>15,235>2>236,243>12>242,243>13>111,245>12>244,245>13>321,246>12>244,246>13>308,247>12>244,247>13>450,248>12>244,248>13>'
  675. ..'102,249>12>244,249>13>387,250>12>244,250>13>353,251>12>244,251>13>359,252>12>244,252>13>320,253>12>244,253>13>376,254>12>244,254>13>378,255>12>244,255>13>41,256>12>244,256>13>385,257>12>244,257>13>40,258>12>244,258>13>184,259>12>'
  676. ..'244,259>13>51,260>12>244,260>13>33,261>12>244,261>13>332,262>12>244,262>13>316,263>12>244,263>13>226,264>12>244,264>13>85,265>12>244,265>13>53,266>12>244,266>13>352,267>12>244,267>13>343,268>12>244,268>13>351,269>12>244,269>13>46'
  677. ..'0,270>12>244,270>13>306,271>12>244,271>13>39,272>12>244,272>13>117,273>12>244,273>13>389,274>12>244,274>13>178,275>12>244,275>13>236,276>12>244,276>13>130,277>12>244,277>13>163,278>12>244,278>13>186,279>12>244,279>13>358,280>12>2'
  678. ..'44,280>13>140,281>12>244,281>13>155,282>12>244,282>13>175,283>12>244,283>13>402,284>12>244,284>13>401,285>12>244,285>13>329,286>12>244,286>13>119,287>12>244,287>13>177,288>12>244,288>13>185,289>12>244,289>13>452,290>12>244,290>13'
  679. ..'>315,291>12>244,291>13>370,292>12>244,292>13>365,293>12>244,293>13>337,294>12>244,294>13>142,295>12>244,295>13>304,296>12>244,296>13>139,297>12>244,297>13>116,298>12>244,298>13>330,299>12>244,299>13>122,300>12>244,300>13>74,301>1'
  680. ..'2>244,301>13>160,302>12>244,302>13>146,303>12>244,303>13>390,307>12>306,307>13>208,310>12>309,310>13>244,311>12>309,311>13>208,314>12>312,314>13>205,317>12>316,317>13>469,318>12>316,318>13>312,319>12>316,319>13>111,325>12>323,325'
  681. ..'>13>392,331>12>330,331>13>409,334>12>332,334>13>472,335>12>332,335>13>74,336>12>332,336>13>337,338>12>337,338>13>472,339>12>337,339>13>362,340>12>337,340>13>458,342>12>341,342>13>84,344>12>343,344>13>409,348>12>346,348>13>341,349'
  682. ..'>12>346,349>13>386,350>12>346,350>13>84,354>12>353,354>13>208,357>12>355,357>13>472,361>12>359,361>13>316,368>12>367,368>13>328,369>12>367,369>13>166,371>12>370,371>13>208,374>12>372,374>13>244,375>12>372,375>13>359,381>12>380,38'
  683. ..'1>13>87,382>12>380,382>13>227,383>12>380,383>13>111,384>12>380,384>13>408,388>12>387,388>13>208,396>12>394,396>13>242,397>12>394,397>13>205,398>12>394,398>13>316,405>12>403,405>13>15,406>12>403,406>13>97,407>12>403,407>13>206,410'
  684. ..'>12>409,410>13>226,411>12>409,411>13>352,412>12>409,412>13>315,413>12>409,413>13>389,414>12>409,414>13>155,415>12>409,415>13>351,416>12>409,416>13>358,417>12>409,417>13>130,418>12>409,418>13>163,419>12>409,419>13>452,420>12>409,4'
  685. ..'20>13>401,421>12>409,421>13>402,422>12>409,422>13>177,423>12>409,423>13>329,424>12>409,424>13>185,425>12>409,425>13>392,426>12>409,426>13>462,427>12>409,427>13>445,428>12>409,428>13>139,429>12>409,429>13>116,430>12>409,430>13>355'
  686. ..',431>12>409,431>13>82,432>12>409,432>13>79,433>12>409,433>13>399,434>12>409,434>13>166,437>12>435,437>13>15,438>12>435,438>13>472,439>12>435,439>13>97,442>12>440,442>13>242,443>12>440,443>13>316,444>12>440,444>13>205,449>12>447,4'
  687. ..'49>13>458,455>12>453,455>13>386,465>12>464,465>13>403,466>12>464,466>13>180,467>12>464,467>13>242,468>12>464,468>13>326,471>12>469,471>13>205,473>12>472,473>13>164,474>12>472,474>13>114,475>12>472,475>13>403,476>12>472,476>13>326'
  688. ..',477>12>472,477>13>363,478>12>472,478>13>180,479>12>472,479>13>316,480>12>472,480>13>232,481>12>472,481>13>392,482>12>472,482>13>495,483>12>472,483>13>462,484>12>472,484>13>445,485>12>472,485>13>323,486>12>472,486>13>82,487>12>47'
  689. ..'2,487>13>456,488>12>472,488>13>399,489>12>472,489>13>93,490>12>472,490>13>367,491>12>472,491>13>166,494>12>492,494>13>362,497>12>495,497>13>232,498>12>495,498>13>15,501>12>499,501>13>328,503>12>502,503>13>93,504>12>502,504>13>164'
  690. ..',505>12>502,505>13>114,506>12>502,506>13>435,507>12>502,507>13>403,508>12>502,508>13>326,509>12>502,509>13>168,510>12>502,510>13>328,511>12>502,511>13>136,512>12>502,512>13>149,513>12>502,513>13>392,514>12>502,514>13>495,515>12>5'
  691. ..'02,515>13>462,516>12>502,516>13>445,517>12>502,517>13>355,518>12>502,518>13>82,519>12>502,519>13>399,520>12>502,520>13>456,521>12>502,521>13>79,522>12>502,522>13>221,523>12>502,523>13>367,524>12>502,524>13>363,525>12>502,525>13>1'
  692. ..'80,526>12>502,526>13>15,527>12>502,527>13>166;2|1:2;n;2|1:3;n;3|1:4|3:5;3|1:4|3:6;3|1:4|3:7;3|1:4|3:8;3|1:4|3:9;4|4:10|5:11|6:12|7:13|8:14|9:14|4:10|4:10;n;5|10:15|11:16;p;1|1:17|4:18|5:19|6:12|7:20|14:21|15:14|9:22|4:18|4:18;n;5'
  693. ..'|10:23|11:24;p;1|1:25|4:18|5:26|6:12|7:20|14:21|16:14|9:22|4:18|4:18;n;5|10:27|11:28;p;3|1:4|3:9;1|1:29|4:30|17:31|5:32|6:33|7:34|8:22|9:14|4:30|4:30;n;6|1:35;7|18:36;8|5:37|19:36;9;5|10:38|11:39;5|10:38|11:40;5|10:38|11:41;5|10:'
  694. ..'38|11:42;5|10:38|11:43;5|10:38|11:44;p;9;1|1:45|4:30|17:31|5:46|7:47|8:22|9:21|4:30|4:30;n;10|10:38|11:48;5|10:49|11:50;p;p;6|1:51;6|1:52;2|1:53;n;1|4:54|20:55|17:56|5:57|6:58|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|4:30|5:'
  695. ..'60|6:12|7:61|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:62|11:63;5|10:64|11:65;p;1|4:54|20:55|17:56|5:66|6:12|7:67|8:22|9:14|4:54|4:54;1|1:68|4:30|5:69|6:12|7:70|8:22|9:14|4:30|4:30;1|4:30|5:71|6:58|7:72|21:14|8:14|9:22|4:30|4:30;'
  696. ..'n;11|22:14;p;1|4:30|5:73|6:74|7:75|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:76|6:58|7:77|8:14|9:14|4:30|4:30;n;5|10:78|11:79;5|10:80|11:81;p;1|4:54|20:55|17:82|5:83|6:12|7:84|21:14|8:14|9:22|4:54|4:54;n;11|22:14;5|10:62|11'
  697. ..':85;p;1|1:68|4:30|5:86|6:12|7:70|8:22|9:14|4:30|4:30;n;5|10:62|11:87;p;1|4:30|5:88|6:58|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:54|20:55|17:56|5:89|6:12|7:67|8:22|9:14|4:54|4:54;n;5|10:62|11:90;5|10:91|11:92;p;1|4:30|5:93'
  698. ..'|6:58|7:94|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:96;5|10:97|11:98;5|10:97|11:99;p;1|4:30|5:100|7:101|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:97|11:102;5|10:97|11:103;5|10:95|11:104;5|10:97|11:105;p;1|1:68|4:18|5:106|6'
  699. ..':107|7:108|8:22|9:14|4:18|4:18;n;5|10:38|11:109;5|10:110|11:111;5|10:38|11:112;5|10:113|11:114;p;1|4:30|5:115|6:58|7:116|8:14|9:14|4:30|4:30;n;5|10:117|11:118;5|10:119|11:120;5|10:27|11:121;5|10:122|11:123;p;1|4:30|5:124|6:125|7:'
  700. ..'72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:126;p;1|4:30|5:127|6:125|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:128|6:58|7:129|8:14|9:14|4:30|4:30;1|1:68|4:30|5:130|6:12|7:70|8:22|9:14|4:30|4:30;n;5|10:62|11:131;'
  701. ..'p;1|4:30|5:132|6:12|7:133|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:135;5|10:134|11:136;5|10:134|11:137;5|10:134|11:138;p;1|4:30|5:139|6:140|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:117|11:141;5|10:95|11:142;p;1|1:68'
  702. ..'|4:30|5:143|7:144|8:22|9:14|4:30|4:30;n;5|10:145|11:146;5|10:145|11:147;5|10:38|11:148;p;1|4:30|5:149|6:150|7:151|8:14|9:22|4:30|4:30;1|4:54|20:55|17:56|5:152|6:12|7:67|8:22|9:14|4:54|4:54;n;5|10:62|11:153;p;1|4:30|5:154|6:140|7:'
  703. ..'72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:117|11:155;5|10:97|11:156;5|10:95|11:157;5|10:95|11:158;5|10:97|11:159;p;1|4:30|5:160|6:12|7:161|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:162;p;1|4:54|20:55|17:56|5:163|6:140|7'
  704. ..':59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|1:68|4:30|5:164|7:70|8:22|9:14|4:30|4:30;1|4:30|5:165|6:107|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:54|20:55|17:56|5:166|6:12|7:67|8:22|9:14|4:54|4:54;n;5|10:62|11:167;p;2|1:16'
  705. ..'8;n;1|1:169|5:170|6:107|7:171|23:172|8:14|9:22;n;9;6|1:173|3:31;p;1|1:174|5:175|7:171|23:172|8:14|9:22;n;9;6|1:173|3:31;5|10:15|11:176;p;p;1|1:68|4:18|5:177|7:178|8:22|9:14|4:18|4:18;1|1:68|4:30|5:179|7:70|8:22|9:14|4:30|4:30;2|1'
  706. ..':180;n;1|1:169|4:181|5:182|6:107|7:171|23:172|8:14|9:22|4:181|4:181;n;9;6|1:173|3:31;5|10:15|11:183;p;1|1:174|4:181|5:184|7:171|23:172|8:14|9:22|4:181|4:181;n;9;6|1:173|3:31;p;p;1|1:68|4:30|5:185|7:70|8:22|9:14|4:30|4:30;1|4:30|5'
  707. ..':186|6:107|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|1:68|4:30|5:187|6:12|7:70|8:22|9:14|4:30|4:30;1|4:30|5:188|6:189|7:190|8:14|9:22|4:30|4:30;n;11|22:14;5|10:191|11:192;p;1|4:54|20:55|17:56|5:193|6:107|7:194|21:14|8:14|9:22'
  708. ..'|4:54|4:54;n;11|22:14;5|10:195|11:196;p;1|4:30|5:197|6:74|7:198|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:199;5|10:117|11:200;5|10:95|11:201;5|10:95|11:202;p;1|1:68|4:30|5:203|7:70|8:22|9:14|4:30|4:30;1|4:30|5:204|6:58|7:20'
  709. ..'5|8:14|9:14|4:30|4:30;n;5|10:145|11:206;5|10:145|11:207;5|10:145|11:208;p;1|4:30|5:209|6:12|7:210|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:211;p;1|1:68|4:30|5:212|7:70|8:22|9:14|4:30|4:30;1|4:213|20:55|17:56|5:214|6:140|7'
  710. ..':59|23:172|21:14|8:14|9:22|4:213|4:213;n;11|22:14;p;1|4:30|5:215|6:125|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:216|6:74|7:217|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:218;5|10:95|11:219;5|10:95|11:220;5|10:95|'
  711. ..'11:221;5|10:117|11:222;p;1|4:54|20:55|17:56|5:223|6:107|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|1:68|4:30|5:224|7:70|8:22|9:14|4:30|4:30;1|4:54|20:55|17:56|5:225|6:58|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|4:30|5:226'
  712. ..'|6:74|7:227|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:221;5|10:95|11:228;p;1|1:68|4:30|5:229|6:12|7:70|8:22|9:14|4:30|4:30;1|4:54|20:55|17:56|5:230|7:67|8:22|9:14|4:54|4:54;1|1:68|4:30|5:231|6:12|7:70|8:22|9:14|4:30|4:30;n;'
  713. ..'5|10:62|11:232;p;4|1:233|5:234|6:12|7:13|8:14|9:14;1|4:30|5:235|6:58|7:205|8:14|9:14|4:30|4:30;n;5|10:38|11:236;5|10:38|11:237;5|10:238|11:239;5|10:38|11:240;5|10:241|11:242;5|10:38|11:243;5|10:38|11:244;5|10:38|11:245;5|10:246|1'
  714. ..'1:247;p;1|4:30|5:248|6:140|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:117|11:249;5|10:97|11:250;5|10:95|11:251;5|10:95|11:252;p;1|1:68|4:30|5:253|7:254|8:22|9:14|4:30|4:30;1|1:68|4:18|5:255|6:107|7:256|8:22|9:14|4:18|4:18;n;5'
  715. ..'|10:38|11:257;p;1|4:30|5:258|7:259|8:22|9:14|4:30|4:30;n;5|10:91|11:260;5|10:91|11:261;5|10:91|11:262;5|10:91|11:263;5|10:91|11:264;5|10:91|11:265;5|10:91|11:266;5|10:62|11:267;5|10:91|11:268;5|10:62|11:269;5|10:62|11:270;5|10:62'
  716. ..'|11:271;p;1|4:213|20:55|17:56|5:272|6:140|7:59|23:172|21:14|8:14|9:22|4:213|4:213;n;11|22:14;5|10:95|11:273;5|10:95|11:274;5|10:117|11:275;p;1|4:54|20:55|17:56|5:276|7:67|8:22|9:14|4:54|4:54;1|4:30|5:277|6:12|7:161|21:14|8:14|9:2'
  717. ..'2|4:30|4:30;n;11|22:14;5|10:134|11:278;5|10:134|11:279;5|10:134|11:280;p;1|4:30|5:281|6:74|7:282|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:117|11:283;p;2|1:284;n;1|1:174|4:18|5:285|7:171|23:172|8:14|9:22|4:18|4:18;n;9;6|1:173|3:3'
  718. ..'1;p;1|1:169|4:18|5:286|6:107|7:171|23:172|8:14|9:22|4:18|4:18;n;9;6|1:173|3:31;p;p;1|1:68|4:30|5:287|7:288|8:22|9:14|4:30|4:30;n;5|10:289|11:290;p;1|1:68|4:291|5:292|7:293|8:22|9:14|4:291|4:291;n;5|10:38|11:294;5|10:145|11:295;5|'
  719. ..'10:145|11:296;5|10:145|11:297;5|10:145|11:298;5|10:145|11:299;5|10:300|11:301;5|10:145|11:302;5|10:38|11:303;5|10:38|11:304;5|10:38|11:305;5|10:145|11:306;5|10:145|11:307;5|10:145|11:308;5|10:145|11:309;5|10:38|11:310;5|10:311|11'
  720. ..':312;5|10:145|11:313;5|10:145|11:314;5|10:145|11:315;5|10:38|11:316;5|10:145|11:317;5|10:145|11:318;5|10:145|11:319;5|10:38|11:320;5|10:145|11:321;5|10:145|11:322;5|10:38|11:323;5|10:145|11:324;5|10:38|11:325;5|10:38|11:326;5|10:'
  721. ..'145|11:327;5|10:145|11:328;5|10:145|11:329;5|10:145|11:330;5|10:38|11:331;5|10:145|11:332;5|10:38|11:333;5|10:145|11:334;5|10:145|11:335;5|10:145|11:336;5|10:145|11:337;5|10:145|11:338;5|10:145|11:339;5|10:145|11:340;5|10:145|11:'
  722. ..'341;5|10:145|11:342;5|10:38|11:343;5|10:145|11:344;5|10:145|11:345;5|10:38|11:346;5|10:145|11:347;5|10:145|11:348;5|10:145|11:349;5|10:38|11:350;5|10:38|11:351;5|10:300|11:352;5|10:38|11:353;5|10:38|11:354;p;1|4:54|20:55|17:56|5:'
  723. ..'355|6:107|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|1:68|4:30|5:356|6:12|7:70|8:22|9:14|4:30|4:30;n;5|10:62|11:357;p;1|4:54|20:55|17:56|5:358|6:12|7:67|8:22|9:14|4:54|4:54;1|1:68|4:30|5:359|6:12|7:70|8:22|9:14|4:30|4:30;n;5|1'
  724. ..'0:91|11:360;5|10:62|11:361;p;1|4:30|5:362|6:12|7:363|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:364;p;1|1:68|4:30|5:365|7:70|8:22|9:14|4:30|4:30;1|1:68|4:30|5:366|7:367|8:22|9:14|4:30|4:30;n;5|10:289|11:368;5|10:289|11:369;'
  725. ..'5|10:289|11:370;p;1|4:54|20:55|17:56|5:371|6:12|7:67|8:22|9:14|4:54|4:54;1|4:30|5:372|6:58|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:373|6:74|7:282|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:374|11:375;p;1|4:30|5:376|6:'
  726. ..'74|7:198|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:377|6:150|7:151|8:14|9:22|4:30|4:30;1|1:68|4:30|5:378|7:70|8:22|9:14|4:30|4:30;1|4:54|20:55|17:56|5:379|7:380|8:22|9:14|4:54|4:54;n;5|10:62|11:381;p;1|4:10|20:55|17:56|5:38'
  727. ..'2|6:150|7:383|8:14|9:22|4:10|4:10;n;11;5|10:384|11:385;5|10:384|11:386;5|10:384|11:387;p;1|4:30|5:388|6:58|7:389|8:14|9:14|4:30|4:30;n;5|10:390|11:391;5|10:27|11:392;5|10:27|11:393;p;1|1:68|4:30|5:394|7:395|8:22|9:22|4:30|4:30;n;'
  728. ..'5|10:38|11:396;p;1|4:54|20:55|17:56|5:397|7:67|8:22|9:14|4:54|4:54;n;5|10:62|11:398;p;4|1:233|5:399|6:12|7:13|8:14|9:14;1|4:30|5:400|6:107|7:94|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|11:401;5|10:97|11:402;5|10:97|11:403;p;1'
  729. ..'|1:68|4:30|5:404|7:70|8:22|9:14|4:30|4:30;1|4:54|20:55|17:56|5:405|7:67|8:22|9:14|4:54|4:54;1|1:68|4:30|5:406|6:12|7:70|8:22|9:14|4:30|4:30;n;5|10:62|11:407;p;1|4:30|5:408|6:125|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:95|1'
  730. ..'1:409;p;1|4:54|20:55|17:56|5:410|7:67|8:22|9:14|4:54|4:54;1|4:30|5:411|6:12|7:210|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:412;p;1|4:30|5:413|6:189|7:414|8:14|9:22|4:30|4:30;1|4:30|5:415|6:140|7:72|21:14|8:14|9:22|4:30|4:'
  731. ..'30;n;11|22:14;p;1|4:30|5:416|6:107|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:417|6:58|7:418|8:14|9:14|4:30|4:30;n;5|10:27|11:419;5|10:122|11:420;p;1|1:68|4:30|5:421|6:12|7:70|8:22|9:14|4:30|4:30;n;5|10:62|11:422;p;1|4:'
  732. ..'54|20:55|17:56|5:423|6:58|7:194|21:14|8:14|9:22|4:54|4:54;n;11|22:14;5|10:95|11:424;5|10:425|11:426;p;1|4:54|20:55|17:56|5:427|6:58|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|4:30|5:428|6:58|7:72|21:14|8:14|9:22|4:30|4:30;n;11'
  733. ..'|22:14;p;1|1:68|4:18|5:429|7:430|8:22|9:14|4:18|4:18;n;5|10:289|11:431;5|10:289|11:432;5|10:289|11:433;5|10:390|11:434;p;1|4:54|20:55|17:56|5:435|6:12|7:67|8:22|9:14|4:54|4:54;1|4:30|5:436|6:58|7:437|8:14|9:14|4:30|4:30;1|4:54|20'
  734. ..':55|17:56|5:438|6:12|7:67|8:22|9:14|4:54|4:54;n;5|10:62|11:439;p;1|4:54|20:55|17:56|5:440|7:67|8:22|9:14|4:54|4:54;1|4:30|5:441|6:107|7:72|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:54|20:55|17:56|5:442|6:125|7:59|21:14|8:14|9:22'
  735. ..'|4:54|4:54;n;11|22:14;p;1|4:30|5:443|6:12|7:444|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:445;5|10:134|11:446;5|10:134|11:447;p;1|4:54|20:55|17:56|5:448|6:125|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|1:68|4:30|5:449|7'
  736. ..':70|8:22|9:14|4:30|4:30;1|4:54|20:55|17:56|5:450|7:67|8:22|9:14|4:54|4:54;1|4:30|5:451|6:74|7:227|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:117|11:452;5|10:95|11:453;5|10:95|11:221;p;1|1:68|4:18|5:454|6:107|7:256|8:22|9:14|4:18|4'
  737. ..':18;1|4:30|5:455|7:259|8:22|9:14|4:30|4:30;n;5|10:91|11:456;5|10:91|11:457;5|10:91|11:458;5|10:91|11:459;5|10:91|11:460;5|10:91|11:461;5|10:91|11:462;5|10:91|11:463;5|10:91|11:464;5|10:91|11:465;5|10:91|11:466;5|10:91|11:467;5|10'
  738. ..':91|11:468;5|10:91|11:469;5|10:91|11:470;5|10:62|11:471;5|10:62|11:472;5|10:62|11:473;5|10:91|11:474;5|10:91|11:475;5|10:62|11:476;5|10:62|11:477;5|10:62|11:478;5|10:62|11:479;5|10:62|11:480;p;1|4:30|5:481|6:74|7:482|21:14|8:14|9'
  739. ..':22|4:30|4:30;n;11|22:14;5|10:117|11:483;5|10:95|11:484;5|10:95|11:485;p;1|4:30|5:486|6:12|7:444|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:487;5|10:134|11:488;5|10:134|11:489;p;1|4:213|20:55|17:56|5:490|6:125|7:59|23:172|2'
  740. ..'1:14|8:14|9:22|4:213|4:213;n;11|22:14;p;1|4:30|5:491|6:492|7:493|8:14|9:22|4:30|4:30;n;11|22:14;5|10:191|11:494;p;1|4:54|20:55|17:56|5:495|6:12|7:380|8:22|9:14|4:54|4:54;1|4:30|5:496|7:497|8:14|9:14|4:30|4:30;1|4:54|20:55|17:56|5'
  741. ..':498|7:67|8:22|9:14|4:54|4:54;1|4:30|5:499|6:12|7:61|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:64|11:65;p;1|4:30|5:500|6:74|7:482|21:14|8:14|9:22|4:30|4:30;n;11|22:14;p;1|4:30|5:501|6:189|7:502|8:14|9:22|4:30|4:30;1|4:30|5:503|6:'
  742. ..'58|7:437|8:14|9:14|4:30|4:30;1|4:54|20:55|17:56|5:504|6:107|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;p;1|4:213|20:55|17:56|5:505|6:125|7:59|23:172|21:14|8:14|9:22|4:213|4:213;n;11|22:14;p;1|1:68|4:30|5:506|7:507|8:22|9:14|4:30|4'
  743. ..':30;n;5|10:145|11:508;5|10:145|11:509;5|10:38|11:148;5|10:145|11:510;p;1|4:30|5:511|6:12|7:363|21:14|8:14|9:22|4:30|4:30;n;11|22:14;5|10:134|11:512;p;1|1:68|4:30|5:513|7:514|8:22|9:14|4:30|4:30;n;5|10:145|11:515;5|10:145|11:516;5'
  744. ..'|10:145|11:517;5|10:145|11:518;5|10:145|11:519;5|10:145|11:520;5|10:38|11:521;5|10:145|11:522;5|10:145|11:523;5|10:145|11:524;5|10:145|11:525;5|10:145|11:526;5|10:145|11:527;5|10:145|11:528;5|10:145|11:529;5|10:145|11:530;5|10:14'
  745. ..'5|11:531;5|10:145|11:532;5|10:145|11:533;p;1|4:30|5:534|6:150|7:493|8:14|9:22|4:30|4:30;n;11|22:14;5|10:191|11:535;p;1|4:54|20:55|17:56|5:536|6:140|7:59|21:14|8:14|9:22|4:54|4:54;n;11|22:14;5|10:537|11:538;5|10:117|11:539;p;1|4:3'
  746. ..'0|5:540|6:541|7:190|8:14|9:22|4:30|4:30;n;11|22:14;5|10:191|11:542;p;1|4:30|5:543|7:544|8:22|9:14|4:30|4:30;n;5|10:545|11:546;5|10:545|11:547;5|10:545|11:548;5|10:300|11:549;5|10:300|11:550;5|10:300|11:551;5|10:300|11:552;5|10:31'
  747. ..'1|11:553;5|10:38|11:554;5|10:300|11:555;5|10:556|11:557;5|10:545|11:558;5|10:556|11:559;5|10:556|11:560;5|10:556|11:561;5|10:556|11:562;5|10:556|11:563;5|10:300|11:564;5|10:556|11:565;5|10:545|11:566;5|10:38|11:567;5|10:545|11:56'
  748. ..'8;5|10:300|11:569;5|10:145|11:570;5|10:556|11:571;p;p;9;p;')
  749. for _,Object in pairs(Objects) do
  750. Object.Parent = script and script.Parent==workspace and script or workspace
  751. end
  752. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement