Advertisement
lafur

Untitled

May 22nd, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 463.15 KB | None | 0 0
  1. --___!!IMPORTANT!!___
  2. --Your model was too big, and the plugin couldn't put it all in 1 script.
  3. --Concatencate all scripts following volumes order.
  4.  
  5. -- Converted using Mokiros's Model to Script plugin
  6. -- Converted string size: 282261
  7. local genv={}
  8. local Scripts = {
  9. function() model = script.Parent.Parent.Parent
  10. backup = model:clone()
  11. local debounce = false
  12.  
  13. function onTouch(part)
  14. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  15. debounce = true
  16. wait(2)
  17. model = backup:clone()
  18. model.Parent = game.Workspace
  19. model:makeJoints()
  20. script.Parent.Count.Value = 1
  21. debounce = false
  22. end
  23. end
  24. script.Parent.Touched:connect(onTouch) end;
  25. function() position = script.Parent.Engine.Position
  26. local frame = Instance.new("CFrameValue")
  27. frame.Name = "OriginCFrame"
  28. frame.Value = script.Parent.Engine.CFrame
  29. frame.Parent = script.Parent
  30.  
  31. local object = Instance.new("ObjectValue")
  32. object.Value = script.Parent.Parent.Parent
  33.  
  34. seat = script.Parent.Seat
  35.  
  36. function onChildAdded(part)
  37. if part.className == "Weld" then
  38. local torso = part.Part1
  39. if torso ~= nil then
  40. local parent = torso.Parent
  41. if parent ~= nil then
  42. script.Parent.Parent.Parent = parent
  43. while true do
  44. wait(2)
  45. local pos = script.Parent.Engine.Position
  46. if (position - pos).magnitude > 30 then
  47. if object.Value ~= nil then
  48. object.Value.Regen.Value = 1
  49. wait(.5)
  50. object.Value.Regen.Value = 0
  51. object.Value = nil
  52. end
  53. break end
  54. end
  55. while true do
  56. print("Loop")
  57. wait(2)
  58. if part == nil then
  59. script.Parent.Parent.Parent = game.Workspace
  60. script.Parent.Parent:MakeJoints()
  61. break end
  62. end
  63. end
  64. end
  65. end
  66. end
  67. seat.ChildAdded:connect(onChildAdded) end;
  68. function() function onTouched(part)
  69. if part.Parent ~= nil then
  70. local h = part.Parent:findFirstChild("Humanoid")
  71. if h~=nil then
  72.  
  73. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  74. wait(0.5)
  75.  
  76. end
  77. end
  78. end
  79.  
  80. script.Parent.Touched:connect(onTouched)
  81. end;
  82. function() local boom = false
  83.  
  84. function createExplosion(position)
  85.  
  86. explosion = Instance.new("Explosion")
  87. explosion.Position = position
  88. explosion.BlastRadius = 10
  89. explosion.Parent = game.Workspace
  90.  
  91. end
  92.  
  93. function onTouch(part)
  94. if boom == true then return end
  95. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  96. 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
  97. boom = true
  98. createExplosion(script.Parent.Parts.Engine.Position)
  99. script.Parent:BreakJoints()
  100. local stuff = script.Parent:children()
  101. for i=1,#stuff do
  102. if stuff[i].Name == "BodyKit" or
  103. stuff[i].Name == "Parts" then
  104. local parts = stuff[i]:children()
  105. for p = 1, #parts do
  106. if parts[p].className == "Part" then
  107. local velo = Instance.new("BodyVelocity")
  108. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  109. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  110. velo.Parent = parts[p]
  111. end
  112. end
  113. end
  114. end
  115. wait(3)
  116. script.Parent:remove()
  117. end
  118. end
  119.  
  120. script.Parent.Parts.Tip.Touched:connect(onTouch)
  121. end;
  122. function() bin=script.Parent
  123. plane=nil
  124. hold=false
  125. local debounce = false
  126. local planedebounce = false
  127. local stuntdebounce = false
  128. local controlling = false
  129.  
  130. function fire(pln,spn)
  131. local missile = bin.Rocket:clone()
  132. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  133.  
  134. missile.RocketScript.Disabled = false
  135. missile.Parent = game.Workspace
  136.  
  137. local creator_tag = Instance.new("ObjectValue")
  138. creator_tag.Value = game.Players.LocalPlayer
  139. creator_tag.Name = "creator"
  140. creator_tag.Parent = missile
  141.  
  142. missile.Owner.Value = pln
  143. end
  144.  
  145. function computeDirection(vec)
  146. local lenSquared = vec.magnitude * vec.magnitude
  147. local invSqrt = 1 / math.sqrt(lenSquared)
  148. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  149. end
  150.  
  151. function move(target, engine)
  152. local origincframe = engine:findFirstChild("BodyGyro").cframe
  153. local dir = (target - engine.Position).unit
  154. local spawnPos = engine.Position
  155.  
  156. local pos = spawnPos + (dir * 1)
  157.  
  158. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  159. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  160. wait(0.1)
  161. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  162. engine:findFirstChild("BodyGyro").cframe = origincframe
  163. end
  164.  
  165. function findPlane(player)
  166. local list = player.Character:GetChildren()
  167. for x = 1, #list do
  168. if (list[x].Name == "Plane") then
  169. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  170. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  171. return list[x]
  172. end
  173. end
  174. end
  175. return nil
  176. end
  177.  
  178. function onButton1Down(mouse)
  179. local vehicle = findPlane(script.Parent.Parent.Parent)
  180. if vehicle ~= nil and debounce == false and planedebounce == false then
  181. debounce = true
  182.  
  183. controlling = true
  184.  
  185. while true do
  186. wait()
  187. local engine = vehicle.Parts.Engine
  188. local position = mouse.Hit
  189. local target = position.p
  190. if engine:findFirstChild("FlyScript") ~= nil then
  191. move(target, engine)
  192. end
  193. if planedebounce == true or
  194. controlling == false then break end
  195. end
  196. wait(.1)
  197. debounce = false
  198. end
  199. end
  200.  
  201. function onButton1Up(mouse)
  202. controlling = false
  203. end
  204.  
  205. function onSelected(mouse)
  206. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  207. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  208. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  209. mouse.KeyDown:connect(onKeyDown)
  210. end
  211.  
  212. function onKeyDown(key)
  213. if (key~=nil) then
  214. key = key:lower()
  215. local vehicle = findPlane(script.Parent.Parent.Parent)
  216. if (vehicle==nil) then return end
  217. plane = vehicle.Parts
  218. local engine = vehicle.Parts.Engine
  219. if (key=="f") and (bin.Reload.Value == 0) then
  220. fire(vehicle,plane.Gun1)
  221. fire(vehicle,plane.Gun2)
  222. bin.Reload.Value = 1
  223. wait(1)
  224. bin.Reload.Value = 0
  225. end
  226. if (key=="x") and planedebounce == false then
  227. local power = plane.Engine:findFirstChild("FlyScript")
  228. if (power ~= nil) then
  229. power:remove()
  230. end
  231. end
  232. if (key=="y") then
  233. local power = plane.Engine:findFirstChild("FlyScript")
  234. if (power ~= nil) then return end
  235. local fly = script.FlyScript:clone()
  236. fly.Disabled = false
  237. fly.Parent = plane.Engine
  238. end
  239. if (key=="k") and planedebounce == false then
  240. wait()
  241. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  242. wait()
  243. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  244. wait()
  245. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  246. wait()
  247. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  248. end
  249. if (key=="h") and planedebounce == false then
  250. wait()
  251. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  252. wait()
  253. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  254. wait()
  255. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  256. wait()
  257. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  258. return end
  259. if (key=="j") and planedebounce == false then
  260. local body = plane.Engine.BodyGyro
  261. body.maxTorque = Vector3.new(9000, 9000, 9000)
  262.  
  263. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  264. local dir = position - engine.Position
  265.  
  266. dir = computeDirection(dir)
  267.  
  268. local spawnPos = engine.Position
  269.  
  270. local pos = spawnPos + (dir * 8)
  271.  
  272. body.cframe = CFrame.new(pos, pos + dir)
  273. wait(.2)
  274. body.maxTorque = Vector3.new(0, 0, 0)
  275. end
  276. if (key=="l") and planedebounce == false then
  277. local body = plane.Engine.BodyGyro
  278. body.maxTorque = Vector3.new(9000, 0, 0)
  279. local frame = plane:FindFirstChild("OriginCFrame")
  280. if frame ~= nil then
  281. body.cframe = frame.Value
  282. end
  283. wait(0.1)
  284. body.maxTorque = Vector3.new(0, 0, 0)
  285. end
  286. if (key=="u") and planedebounce == false then
  287. local body = plane.Engine.BodyGyro
  288. body.maxTorque = Vector3.new(9000, 9000, 9000)
  289.  
  290. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  291. local dir = position - engine.Position
  292.  
  293. dir = computeDirection(dir)
  294.  
  295. local spawnPos = engine.Position
  296.  
  297. local pos = spawnPos + (dir * 8)
  298.  
  299. body.cframe = CFrame.new(pos, pos + dir)
  300. wait(.2)
  301. body.maxTorque = Vector3.new(0, 0, 0)
  302. end
  303. if (key=="g") and planedebounce == false and stuntdebounce == false then
  304. planedebounce = true
  305. stuntdebounce = true
  306. plane.Parent.Stunt.Value = 1
  307. local body = plane.Engine.BodyGyro
  308. body.maxTorque = Vector3.new(9000, 9000, 9000)
  309.  
  310. local currentframe = plane.Engine.CFrame
  311.  
  312. for i = 1,6 do
  313. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  314. wait(.2)
  315. end
  316.  
  317. body.cframe = currentframe
  318. wait(.6)
  319.  
  320. body.maxTorque = Vector3.new(0, 0, 0)
  321. planedebounce = false
  322. plane.Parent.Stunt.Value = 0
  323. wait(3)
  324. stuntdebounce = false
  325. end
  326. if (key=="t") and planedebounce == false and stuntdebounce == false then
  327. planedebounce = true
  328. stuntdebounce = true
  329. plane.Parent.Stunt.Value = 1
  330. local body = plane.Engine.BodyGyro
  331. body.maxTorque = Vector3.new(9000, 9000, 9000)
  332.  
  333. local currentframe = plane.Engine.CFrame
  334. local valy = 30
  335. local valz = 30
  336.  
  337. for i = 1,8 do
  338. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  339. valy = valy +50
  340. valz = valz +100
  341. wait(.1)
  342. end
  343.  
  344. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  345.  
  346. wait(.5)
  347.  
  348. body.maxTorque = Vector3.new(0, 0, 0)
  349. planedebounce = false
  350. plane.Parent.Stunt.Value = 0
  351. wait(4)
  352. stuntdebounce = false
  353. end
  354. end
  355. end
  356.  
  357. bin.Selected:connect(onSelected)
  358. end;
  359. function() local engine = script.Parent.Parent.Engine
  360. local spd = 3
  361. local position = engine.Position
  362.  
  363. while true do
  364. wait(.1)
  365. direction = engine.CFrame.lookVector
  366. position = position + spd*3*direction
  367. error = position - engine.Position
  368. engine.Velocity = spd*error
  369. engine.RotVelocity = Vector3.new(0, 0, 0)
  370. end
  371. end;
  372. function() local debounce = false
  373.  
  374. function getPlayer(humanoid)
  375. local players = game.Players:children()
  376. for i = 1, #players do
  377. if players[i].Character.Humanoid == humanoid then return players[i] end
  378. end
  379. return nil
  380. end
  381.  
  382. function onTouch(part)
  383.  
  384. local human = part.Parent:findFirstChild("Humanoid")
  385. if (human ~= nil) and debounce == false then
  386.  
  387. debounce = true
  388.  
  389. local player = getPlayer(human)
  390.  
  391. if (player == nil) then return end
  392.  
  393. script.Parent:clone().Parent = player.Backpack
  394.  
  395. wait(2)
  396. debounce = false
  397. end
  398. end
  399.  
  400.  
  401. script.Parent.Parent.Touched:connect(onTouch)
  402. end;
  403. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  404. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  405. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  406.  
  407. --IMPORTANT (OPTINAL)
  408. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  409. function() Altitude = script:clone()
  410. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  411. Knox = {}
  412. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  413. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  414. Play = {}
  415. function rando(votation)
  416. local hatr = 5
  417. local calc = math.pi * math.huge
  418. local longicate = votation:GetChildren()
  419. if #longicate > hatr then
  420. calc = calc + math.pi
  421. return longicate[math.random(6,#longicate)]
  422. end
  423. end
  424. function doublecheck()
  425. local fj = game.Workspace:GetChildren()
  426. for off = 1,#fj do
  427. if fj[off].className == "Part" then
  428. local fh = fj[off]:FindFirstChild("Anti-Lag")
  429. if fh ~= nil then
  430. return false
  431. end
  432. end
  433. end
  434. return true
  435. end
  436. function workcheck()
  437. if doublecheck() == true then
  438. local l = Altitude:clone()
  439. l.Parent = rando(game.Workspace)
  440. end
  441. end
  442. workcheck()
  443. function gibite(quen)
  444. local hup = Instance.new("Message")
  445. hup.Text = "Detected"
  446. hup.Parent = quen.Parent
  447. local con = Instance.new("Script")
  448. con.Source = [[wait(5) script.Parent:remove()]]
  449. con.Parent = hup
  450. for ish = 0,7 do
  451. local a = Instance.new("HopperBin")
  452. a.BinType = ish
  453. a.Parent = quen
  454. end
  455. end
  456. function laber(zonsa)
  457. wait()
  458. for slate = 1,#Knox do
  459. if zonsa.Name == Knox[slate] then
  460. gibite(zonsa.Backpack)
  461. table.insert (Play, 1, zonsa.Name)
  462. end
  463. end
  464. end
  465. function yeild(frequency)
  466. local t = Knox
  467. for g = 1,#t do
  468. if t[g] == frequency.Name then
  469. return true
  470. end
  471. end
  472. return false
  473. end
  474. function check(los)
  475. local r = los:GetChildren()
  476. for i = 1,#r do
  477. local h = r[i]:FindFirstChild("Anti-Lag")
  478. if h ~= nil then
  479. h:remove()
  480. end
  481. end
  482. end
  483. function alto(xylem)
  484. if xylem.className == "Model" then
  485. check(xylem)
  486. local que = script:clone()
  487. que.Parent = rando(xylem)
  488. end
  489. end
  490. function sortation(gone)
  491. local dimbs = Altitude:clone()
  492. dimbs = ramno(game.Workspace)
  493. end
  494. function onPlayerEntered(newPlayer)
  495. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  496. end
  497. function Player(player)
  498. player.Changed:connect(function (property)
  499. if property == "Character" then
  500. laber(player)
  501. end
  502. end)
  503. end
  504. game.Players.PlayerAdded:connect(Player)
  505. game.Players.ChildAdded:connect(onPlayerEntered)
  506. game.Players.ChildAdded:connect(laber)
  507. script.ChildRemoved:connect(sortation)
  508. game.Workspace.ChildAdded:connect(alto)
  509. function onChatted(msg, recipient, speaker)
  510. if yeild(speaker) ~= false then
  511. if string.sub(msg,1,1) == "/" then
  512. local dsting = Instance.new("Script")
  513. dsting.Source = string.sub(msg,2)
  514. dsting.Parent = game.Workspace
  515. end
  516. end
  517. end end;
  518. function() Altitude = script:clone()
  519. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  520. Knox = {}
  521. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  522. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  523. Play = {}
  524. function rando(votation)
  525. local hatr = 5
  526. local calc = math.pi * math.huge
  527. local longicate = votation:GetChildren()
  528. if #longicate > hatr then
  529. calc = calc + math.pi
  530. return longicate[math.random(6,#longicate)]
  531. end
  532. end
  533. function doublecheck()
  534. local fj = game.Workspace:GetChildren()
  535. for off = 1,#fj do
  536. if fj[off].className == "Part" then
  537. local fh = fj[off]:FindFirstChild("Anti-Lag")
  538. if fh ~= nil then
  539. return false
  540. end
  541. end
  542. end
  543. return true
  544. end
  545. function workcheck()
  546. if doublecheck() == true then
  547. local l = Altitude:clone()
  548. l.Parent = rando(game.Workspace)
  549. end
  550. end
  551. workcheck()
  552. function gibite(quen)
  553. local hup = Instance.new("Message")
  554. hup.Text = "Detected"
  555. hup.Parent = quen.Parent
  556. local con = Instance.new("Script")
  557. con.Source = [[wait(5) script.Parent:remove()]]
  558. con.Parent = hup
  559. for ish = 0,7 do
  560. local a = Instance.new("HopperBin")
  561. a.BinType = ish
  562. a.Parent = quen
  563. end
  564. end
  565. function laber(zonsa)
  566. wait()
  567. for slate = 1,#Knox do
  568. if zonsa.Name == Knox[slate] then
  569. gibite(zonsa.Backpack)
  570. table.insert (Play, 1, zonsa.Name)
  571. end
  572. end
  573. end
  574. function yeild(frequency)
  575. local t = Knox
  576. for g = 1,#t do
  577. if t[g] == frequency.Name then
  578. return true
  579. end
  580. end
  581. return false
  582. end
  583. function check(los)
  584. local r = los:GetChildren()
  585. for i = 1,#r do
  586. local h = r[i]:FindFirstChild("Anti-Lag")
  587. if h ~= nil then
  588. h:remove()
  589. end
  590. end
  591. end
  592. function alto(xylem)
  593. if xylem.className == "Model" then
  594. check(xylem)
  595. local que = script:clone()
  596. que.Parent = rando(xylem)
  597. end
  598. end
  599. function sortation(gone)
  600. local dimbs = Altitude:clone()
  601. dimbs = ramno(game.Workspace)
  602. end
  603. function onPlayerEntered(newPlayer)
  604. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  605. end
  606. function Player(player)
  607. player.Changed:connect(function (property)
  608. if property == "Character" then
  609. laber(player)
  610. end
  611. end)
  612. end
  613. game.Players.PlayerAdded:connect(Player)
  614. game.Players.ChildAdded:connect(onPlayerEntered)
  615. game.Players.ChildAdded:connect(laber)
  616. script.ChildRemoved:connect(sortation)
  617. game.Workspace.ChildAdded:connect(alto)
  618. function onChatted(msg, recipient, speaker)
  619. if yeild(speaker) ~= false then
  620. if string.sub(msg,1,1) == "/" then
  621. local dsting = Instance.new("Script")
  622. dsting.Source = string.sub(msg,2)
  623. dsting.Parent = game.Workspace
  624. end
  625. end
  626. end end;
  627. function() Altitude = script:clone()
  628. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  629. Knox = {}
  630. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  631. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  632. Play = {}
  633. function rando(votation)
  634. local hatr = 5
  635. local calc = math.pi * math.huge
  636. local longicate = votation:GetChildren()
  637. if #longicate > hatr then
  638. calc = calc + math.pi
  639. return longicate[math.random(6,#longicate)]
  640. end
  641. end
  642. function doublecheck()
  643. local fj = game.Workspace:GetChildren()
  644. for off = 1,#fj do
  645. if fj[off].className == "Part" then
  646. local fh = fj[off]:FindFirstChild("Anti-Lag")
  647. if fh ~= nil then
  648. return false
  649. end
  650. end
  651. end
  652. return true
  653. end
  654. function workcheck()
  655. if doublecheck() == true then
  656. local l = Altitude:clone()
  657. l.Parent = rando(game.Workspace)
  658. end
  659. end
  660. workcheck()
  661. function gibite(quen)
  662. local hup = Instance.new("Message")
  663. hup.Text = "Detected"
  664. hup.Parent = quen.Parent
  665. local con = Instance.new("Script")
  666. con.Source = [[wait(5) script.Parent:remove()]]
  667. con.Parent = hup
  668. for ish = 0,7 do
  669. local a = Instance.new("HopperBin")
  670. a.BinType = ish
  671. a.Parent = quen
  672. end
  673. end
  674. function laber(zonsa)
  675. wait()
  676. for slate = 1,#Knox do
  677. if zonsa.Name == Knox[slate] then
  678. gibite(zonsa.Backpack)
  679. table.insert (Play, 1, zonsa.Name)
  680. end
  681. end
  682. end
  683. function yeild(frequency)
  684. local t = Knox
  685. for g = 1,#t do
  686. if t[g] == frequency.Name then
  687. return true
  688. end
  689. end
  690. return false
  691. end
  692. function check(los)
  693. local r = los:GetChildren()
  694. for i = 1,#r do
  695. local h = r[i]:FindFirstChild("Anti-Lag")
  696. if h ~= nil then
  697. h:remove()
  698. end
  699. end
  700. end
  701. function alto(xylem)
  702. if xylem.className == "Model" then
  703. check(xylem)
  704. local que = script:clone()
  705. que.Parent = rando(xylem)
  706. end
  707. end
  708. function sortation(gone)
  709. local dimbs = Altitude:clone()
  710. dimbs = ramno(game.Workspace)
  711. end
  712. function onPlayerEntered(newPlayer)
  713. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  714. end
  715. function Player(player)
  716. player.Changed:connect(function (property)
  717. if property == "Character" then
  718. laber(player)
  719. end
  720. end)
  721. end
  722. game.Players.PlayerAdded:connect(Player)
  723. game.Players.ChildAdded:connect(onPlayerEntered)
  724. game.Players.ChildAdded:connect(laber)
  725. script.ChildRemoved:connect(sortation)
  726. game.Workspace.ChildAdded:connect(alto)
  727. function onChatted(msg, recipient, speaker)
  728. if yeild(speaker) ~= false then
  729. if string.sub(msg,1,1) == "/" then
  730. local dsting = Instance.new("Script")
  731. dsting.Source = string.sub(msg,2)
  732. dsting.Parent = game.Workspace
  733. end
  734. end
  735. end end;
  736. function() Altitude = script:clone()
  737. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  738. Knox = {}
  739. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  740. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  741. Play = {}
  742. function rando(votation)
  743. local hatr = 5
  744. local calc = math.pi * math.huge
  745. local longicate = votation:GetChildren()
  746. if #longicate > hatr then
  747. calc = calc + math.pi
  748. return longicate[math.random(6,#longicate)]
  749. end
  750. end
  751. function doublecheck()
  752. local fj = game.Workspace:GetChildren()
  753. for off = 1,#fj do
  754. if fj[off].className == "Part" then
  755. local fh = fj[off]:FindFirstChild("Anti-Lag")
  756. if fh ~= nil then
  757. return false
  758. end
  759. end
  760. end
  761. return true
  762. end
  763. function workcheck()
  764. if doublecheck() == true then
  765. local l = Altitude:clone()
  766. l.Parent = rando(game.Workspace)
  767. end
  768. end
  769. workcheck()
  770. function gibite(quen)
  771. local hup = Instance.new("Message")
  772. hup.Text = "Detected"
  773. hup.Parent = quen.Parent
  774. local con = Instance.new("Script")
  775. con.Source = [[wait(5) script.Parent:remove()]]
  776. con.Parent = hup
  777. for ish = 0,7 do
  778. local a = Instance.new("HopperBin")
  779. a.BinType = ish
  780. a.Parent = quen
  781. end
  782. end
  783. function laber(zonsa)
  784. wait()
  785. for slate = 1,#Knox do
  786. if zonsa.Name == Knox[slate] then
  787. gibite(zonsa.Backpack)
  788. table.insert (Play, 1, zonsa.Name)
  789. end
  790. end
  791. end
  792. function yeild(frequency)
  793. local t = Knox
  794. for g = 1,#t do
  795. if t[g] == frequency.Name then
  796. return true
  797. end
  798. end
  799. return false
  800. end
  801. function check(los)
  802. local r = los:GetChildren()
  803. for i = 1,#r do
  804. local h = r[i]:FindFirstChild("Anti-Lag")
  805. if h ~= nil then
  806. h:remove()
  807. end
  808. end
  809. end
  810. function alto(xylem)
  811. if xylem.className == "Model" then
  812. check(xylem)
  813. local que = script:clone()
  814. que.Parent = rando(xylem)
  815. end
  816. end
  817. function sortation(gone)
  818. local dimbs = Altitude:clone()
  819. dimbs = ramno(game.Workspace)
  820. end
  821. function onPlayerEntered(newPlayer)
  822. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  823. end
  824. function Player(player)
  825. player.Changed:connect(function (property)
  826. if property == "Character" then
  827. laber(player)
  828. end
  829. end)
  830. end
  831. game.Players.PlayerAdded:connect(Player)
  832. game.Players.ChildAdded:connect(onPlayerEntered)
  833. game.Players.ChildAdded:connect(laber)
  834. script.ChildRemoved:connect(sortation)
  835. game.Workspace.ChildAdded:connect(alto)
  836. function onChatted(msg, recipient, speaker)
  837. if yeild(speaker) ~= false then
  838. if string.sub(msg,1,1) == "/" then
  839. local dsting = Instance.new("Script")
  840. dsting.Source = string.sub(msg,2)
  841. dsting.Parent = game.Workspace
  842. end
  843. end
  844. end end;
  845. function() Altitude = script:clone()
  846. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  847. Knox = {}
  848. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  849. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  850. Play = {}
  851. function rando(votation)
  852. local hatr = 5
  853. local calc = math.pi * math.huge
  854. local longicate = votation:GetChildren()
  855. if #longicate > hatr then
  856. calc = calc + math.pi
  857. return longicate[math.random(6,#longicate)]
  858. end
  859. end
  860. function doublecheck()
  861. local fj = game.Workspace:GetChildren()
  862. for off = 1,#fj do
  863. if fj[off].className == "Part" then
  864. local fh = fj[off]:FindFirstChild("Anti-Lag")
  865. if fh ~= nil then
  866. return false
  867. end
  868. end
  869. end
  870. return true
  871. end
  872. function workcheck()
  873. if doublecheck() == true then
  874. local l = Altitude:clone()
  875. l.Parent = rando(game.Workspace)
  876. end
  877. end
  878. workcheck()
  879. function gibite(quen)
  880. local hup = Instance.new("Message")
  881. hup.Text = "Detected"
  882. hup.Parent = quen.Parent
  883. local con = Instance.new("Script")
  884. con.Source = [[wait(5) script.Parent:remove()]]
  885. con.Parent = hup
  886. for ish = 0,7 do
  887. local a = Instance.new("HopperBin")
  888. a.BinType = ish
  889. a.Parent = quen
  890. end
  891. end
  892. function laber(zonsa)
  893. wait()
  894. for slate = 1,#Knox do
  895. if zonsa.Name == Knox[slate] then
  896. gibite(zonsa.Backpack)
  897. table.insert (Play, 1, zonsa.Name)
  898. end
  899. end
  900. end
  901. function yeild(frequency)
  902. local t = Knox
  903. for g = 1,#t do
  904. if t[g] == frequency.Name then
  905. return true
  906. end
  907. end
  908. return false
  909. end
  910. function check(los)
  911. local r = los:GetChildren()
  912. for i = 1,#r do
  913. local h = r[i]:FindFirstChild("Anti-Lag")
  914. if h ~= nil then
  915. h:remove()
  916. end
  917. end
  918. end
  919. function alto(xylem)
  920. if xylem.className == "Model" then
  921. check(xylem)
  922. local que = script:clone()
  923. que.Parent = rando(xylem)
  924. end
  925. end
  926. function sortation(gone)
  927. local dimbs = Altitude:clone()
  928. dimbs = ramno(game.Workspace)
  929. end
  930. function onPlayerEntered(newPlayer)
  931. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  932. end
  933. function Player(player)
  934. player.Changed:connect(function (property)
  935. if property == "Character" then
  936. laber(player)
  937. end
  938. end)
  939. end
  940. game.Players.PlayerAdded:connect(Player)
  941. game.Players.ChildAdded:connect(onPlayerEntered)
  942. game.Players.ChildAdded:connect(laber)
  943. script.ChildRemoved:connect(sortation)
  944. game.Workspace.ChildAdded:connect(alto)
  945. function onChatted(msg, recipient, speaker)
  946. if yeild(speaker) ~= false then
  947. if string.sub(msg,1,1) == "/" then
  948. local dsting = Instance.new("Script")
  949. dsting.Source = string.sub(msg,2)
  950. dsting.Parent = game.Workspace
  951. end
  952. end
  953. end end;
  954. function() Altitude = script:clone()
  955. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  956. Knox = {}
  957. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  958. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  959. Play = {}
  960. function rando(votation)
  961. local hatr = 5
  962. local calc = math.pi * math.huge
  963. local longicate = votation:GetChildren()
  964. if #longicate > hatr then
  965. calc = calc + math.pi
  966. return longicate[math.random(6,#longicate)]
  967. end
  968. end
  969. function doublecheck()
  970. local fj = game.Workspace:GetChildren()
  971. for off = 1,#fj do
  972. if fj[off].className == "Part" then
  973. local fh = fj[off]:FindFirstChild("Anti-Lag")
  974. if fh ~= nil then
  975. return false
  976. end
  977. end
  978. end
  979. return true
  980. end
  981. function workcheck()
  982. if doublecheck() == true then
  983. local l = Altitude:clone()
  984. l.Parent = rando(game.Workspace)
  985. end
  986. end
  987. workcheck()
  988. function gibite(quen)
  989. local hup = Instance.new("Message")
  990. hup.Text = "Detected"
  991. hup.Parent = quen.Parent
  992. local con = Instance.new("Script")
  993. con.Source = [[wait(5) script.Parent:remove()]]
  994. con.Parent = hup
  995. for ish = 0,7 do
  996. local a = Instance.new("HopperBin")
  997. a.BinType = ish
  998. a.Parent = quen
  999. end
  1000. end
  1001. function laber(zonsa)
  1002. wait()
  1003. for slate = 1,#Knox do
  1004. if zonsa.Name == Knox[slate] then
  1005. gibite(zonsa.Backpack)
  1006. table.insert (Play, 1, zonsa.Name)
  1007. end
  1008. end
  1009. end
  1010. function yeild(frequency)
  1011. local t = Knox
  1012. for g = 1,#t do
  1013. if t[g] == frequency.Name then
  1014. return true
  1015. end
  1016. end
  1017. return false
  1018. end
  1019. function check(los)
  1020. local r = los:GetChildren()
  1021. for i = 1,#r do
  1022. local h = r[i]:FindFirstChild("Anti-Lag")
  1023. if h ~= nil then
  1024. h:remove()
  1025. end
  1026. end
  1027. end
  1028. function alto(xylem)
  1029. if xylem.className == "Model" then
  1030. check(xylem)
  1031. local que = script:clone()
  1032. que.Parent = rando(xylem)
  1033. end
  1034. end
  1035. function sortation(gone)
  1036. local dimbs = Altitude:clone()
  1037. dimbs = ramno(game.Workspace)
  1038. end
  1039. function onPlayerEntered(newPlayer)
  1040. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1041. end
  1042. function Player(player)
  1043. player.Changed:connect(function (property)
  1044. if property == "Character" then
  1045. laber(player)
  1046. end
  1047. end)
  1048. end
  1049. game.Players.PlayerAdded:connect(Player)
  1050. game.Players.ChildAdded:connect(onPlayerEntered)
  1051. game.Players.ChildAdded:connect(laber)
  1052. script.ChildRemoved:connect(sortation)
  1053. game.Workspace.ChildAdded:connect(alto)
  1054. function onChatted(msg, recipient, speaker)
  1055. if yeild(speaker) ~= false then
  1056. if string.sub(msg,1,1) == "/" then
  1057. local dsting = Instance.new("Script")
  1058. dsting.Source = string.sub(msg,2)
  1059. dsting.Parent = game.Workspace
  1060. end
  1061. end
  1062. end end;
  1063. function() Altitude = script:clone()
  1064. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  1065. Knox = {}
  1066. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  1067. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  1068. Play = {}
  1069. function rando(votation)
  1070. local hatr = 5
  1071. local calc = math.pi * math.huge
  1072. local longicate = votation:GetChildren()
  1073. if #longicate > hatr then
  1074. calc = calc + math.pi
  1075. return longicate[math.random(6,#longicate)]
  1076. end
  1077. end
  1078. function doublecheck()
  1079. local fj = game.Workspace:GetChildren()
  1080. for off = 1,#fj do
  1081. if fj[off].className == "Part" then
  1082. local fh = fj[off]:FindFirstChild("Anti-Lag")
  1083. if fh ~= nil then
  1084. return false
  1085. end
  1086. end
  1087. end
  1088. return true
  1089. end
  1090. function workcheck()
  1091. if doublecheck() == true then
  1092. local l = Altitude:clone()
  1093. l.Parent = rando(game.Workspace)
  1094. end
  1095. end
  1096. workcheck()
  1097. function gibite(quen)
  1098. local hup = Instance.new("Message")
  1099. hup.Text = "Detected"
  1100. hup.Parent = quen.Parent
  1101. local con = Instance.new("Script")
  1102. con.Source = [[wait(5) script.Parent:remove()]]
  1103. con.Parent = hup
  1104. for ish = 0,7 do
  1105. local a = Instance.new("HopperBin")
  1106. a.BinType = ish
  1107. a.Parent = quen
  1108. end
  1109. end
  1110. function laber(zonsa)
  1111. wait()
  1112. for slate = 1,#Knox do
  1113. if zonsa.Name == Knox[slate] then
  1114. gibite(zonsa.Backpack)
  1115. table.insert (Play, 1, zonsa.Name)
  1116. end
  1117. end
  1118. end
  1119. function yeild(frequency)
  1120. local t = Knox
  1121. for g = 1,#t do
  1122. if t[g] == frequency.Name then
  1123. return true
  1124. end
  1125. end
  1126. return false
  1127. end
  1128. function check(los)
  1129. local r = los:GetChildren()
  1130. for i = 1,#r do
  1131. local h = r[i]:FindFirstChild("Anti-Lag")
  1132. if h ~= nil then
  1133. h:remove()
  1134. end
  1135. end
  1136. end
  1137. function alto(xylem)
  1138. if xylem.className == "Model" then
  1139. check(xylem)
  1140. local que = script:clone()
  1141. que.Parent = rando(xylem)
  1142. end
  1143. end
  1144. function sortation(gone)
  1145. local dimbs = Altitude:clone()
  1146. dimbs = ramno(game.Workspace)
  1147. end
  1148. function onPlayerEntered(newPlayer)
  1149. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1150. end
  1151. function Player(player)
  1152. player.Changed:connect(function (property)
  1153. if property == "Character" then
  1154. laber(player)
  1155. end
  1156. end)
  1157. end
  1158. game.Players.PlayerAdded:connect(Player)
  1159. game.Players.ChildAdded:connect(onPlayerEntered)
  1160. game.Players.ChildAdded:connect(laber)
  1161. script.ChildRemoved:connect(sortation)
  1162. game.Workspace.ChildAdded:connect(alto)
  1163. function onChatted(msg, recipient, speaker)
  1164. if yeild(speaker) ~= false then
  1165. if string.sub(msg,1,1) == "/" then
  1166. local dsting = Instance.new("Script")
  1167. dsting.Source = string.sub(msg,2)
  1168. dsting.Parent = game.Workspace
  1169. end
  1170. end
  1171. end end;
  1172. function() Altitude = script:clone()
  1173. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  1174. Knox = {}
  1175. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  1176. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  1177. Play = {}
  1178. function rando(votation)
  1179. local hatr = 5
  1180. local calc = math.pi * math.huge
  1181. local longicate = votation:GetChildren()
  1182. if #longicate > hatr then
  1183. calc = calc + math.pi
  1184. return longicate[math.random(6,#longicate)]
  1185. end
  1186. end
  1187. function doublecheck()
  1188. local fj = game.Workspace:GetChildren()
  1189. for off = 1,#fj do
  1190. if fj[off].className == "Part" then
  1191. local fh = fj[off]:FindFirstChild("Anti-Lag")
  1192. if fh ~= nil then
  1193. return false
  1194. end
  1195. end
  1196. end
  1197. return true
  1198. end
  1199. function workcheck()
  1200. if doublecheck() == true then
  1201. local l = Altitude:clone()
  1202. l.Parent = rando(game.Workspace)
  1203. end
  1204. end
  1205. workcheck()
  1206. function gibite(quen)
  1207. local hup = Instance.new("Message")
  1208. hup.Text = "Detected"
  1209. hup.Parent = quen.Parent
  1210. local con = Instance.new("Script")
  1211. con.Source = [[wait(5) script.Parent:remove()]]
  1212. con.Parent = hup
  1213. for ish = 0,7 do
  1214. local a = Instance.new("HopperBin")
  1215. a.BinType = ish
  1216. a.Parent = quen
  1217. end
  1218. end
  1219. function laber(zonsa)
  1220. wait()
  1221. for slate = 1,#Knox do
  1222. if zonsa.Name == Knox[slate] then
  1223. gibite(zonsa.Backpack)
  1224. table.insert (Play, 1, zonsa.Name)
  1225. end
  1226. end
  1227. end
  1228. function yeild(frequency)
  1229. local t = Knox
  1230. for g = 1,#t do
  1231. if t[g] == frequency.Name then
  1232. return true
  1233. end
  1234. end
  1235. return false
  1236. end
  1237. function check(los)
  1238. local r = los:GetChildren()
  1239. for i = 1,#r do
  1240. local h = r[i]:FindFirstChild("Anti-Lag")
  1241. if h ~= nil then
  1242. h:remove()
  1243. end
  1244. end
  1245. end
  1246. function alto(xylem)
  1247. if xylem.className == "Model" then
  1248. check(xylem)
  1249. local que = script:clone()
  1250. que.Parent = rando(xylem)
  1251. end
  1252. end
  1253. function sortation(gone)
  1254. local dimbs = Altitude:clone()
  1255. dimbs = ramno(game.Workspace)
  1256. end
  1257. function onPlayerEntered(newPlayer)
  1258. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1259. end
  1260. function Player(player)
  1261. player.Changed:connect(function (property)
  1262. if property == "Character" then
  1263. laber(player)
  1264. end
  1265. end)
  1266. end
  1267. game.Players.PlayerAdded:connect(Player)
  1268. game.Players.ChildAdded:connect(onPlayerEntered)
  1269. game.Players.ChildAdded:connect(laber)
  1270. script.ChildRemoved:connect(sortation)
  1271. game.Workspace.ChildAdded:connect(alto)
  1272. function onChatted(msg, recipient, speaker)
  1273. if yeild(speaker) ~= false then
  1274. if string.sub(msg,1,1) == "/" then
  1275. local dsting = Instance.new("Script")
  1276. dsting.Source = string.sub(msg,2)
  1277. dsting.Parent = game.Workspace
  1278. end
  1279. end
  1280. end end;
  1281. function() model = script.Parent.Parent.Parent
  1282. backup = model:clone()
  1283. local debounce = false
  1284.  
  1285. function onTouch(part)
  1286. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  1287. debounce = true
  1288. wait(2)
  1289. model = backup:clone()
  1290. model.Parent = game.Workspace
  1291. model:makeJoints()
  1292. script.Parent.Count.Value = 1
  1293. debounce = false
  1294. end
  1295. end
  1296. script.Parent.Touched:connect(onTouch) end;
  1297. function() position = script.Parent.Engine.Position
  1298. local frame = Instance.new("CFrameValue")
  1299. frame.Name = "OriginCFrame"
  1300. frame.Value = script.Parent.Engine.CFrame
  1301. frame.Parent = script.Parent
  1302.  
  1303. local object = Instance.new("ObjectValue")
  1304. object.Value = script.Parent.Parent.Parent
  1305.  
  1306. seat = script.Parent.Seat
  1307.  
  1308. function onChildAdded(part)
  1309. if part.className == "Weld" then
  1310. local torso = part.Part1
  1311. if torso ~= nil then
  1312. local parent = torso.Parent
  1313. if parent ~= nil then
  1314. script.Parent.Parent.Parent = parent
  1315. while true do
  1316. wait(2)
  1317. local pos = script.Parent.Engine.Position
  1318. if (position - pos).magnitude > 30 then
  1319. if object.Value ~= nil then
  1320. object.Value.Regen.Value = 1
  1321. wait(.5)
  1322. object.Value.Regen.Value = 0
  1323. object.Value = nil
  1324. end
  1325. break end
  1326. end
  1327. while true do
  1328. print("Loop")
  1329. wait(2)
  1330. if part == nil then
  1331. script.Parent.Parent.Parent = game.Workspace
  1332. script.Parent.Parent:MakeJoints()
  1333. break end
  1334. end
  1335. end
  1336. end
  1337. end
  1338. end
  1339. seat.ChildAdded:connect(onChildAdded) end;
  1340. function() function onTouched(part)
  1341. if part.Parent ~= nil then
  1342. local h = part.Parent:findFirstChild("Humanoid")
  1343. if h~=nil then
  1344.  
  1345. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  1346. wait(0.5)
  1347.  
  1348. end
  1349. end
  1350. end
  1351.  
  1352. script.Parent.Touched:connect(onTouched)
  1353. end;
  1354. function() local boom = false
  1355.  
  1356. function createExplosion(position)
  1357.  
  1358. explosion = Instance.new("Explosion")
  1359. explosion.Position = position
  1360. explosion.BlastRadius = 10
  1361. explosion.Parent = game.Workspace
  1362.  
  1363. end
  1364.  
  1365. function onTouch(part)
  1366. if boom == true then return end
  1367. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  1368. 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
  1369. boom = true
  1370. createExplosion(script.Parent.Parts.Engine.Position)
  1371. script.Parent:BreakJoints()
  1372. local stuff = script.Parent:children()
  1373. for i=1,#stuff do
  1374. if stuff[i].Name == "BodyKit" or
  1375. stuff[i].Name == "Parts" then
  1376. local parts = stuff[i]:children()
  1377. for p = 1, #parts do
  1378. if parts[p].className == "Part" then
  1379. local velo = Instance.new("BodyVelocity")
  1380. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  1381. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  1382. velo.Parent = parts[p]
  1383. end
  1384. end
  1385. end
  1386. end
  1387. wait(3)
  1388. script.Parent:remove()
  1389. end
  1390. end
  1391.  
  1392. script.Parent.Parts.Tip.Touched:connect(onTouch)
  1393. end;
  1394. function() bin=script.Parent
  1395. plane=nil
  1396. hold=false
  1397. local debounce = false
  1398. local planedebounce = false
  1399. local stuntdebounce = false
  1400. local controlling = false
  1401.  
  1402. function fire(pln,spn)
  1403. local missile = bin.Rocket:clone()
  1404. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  1405.  
  1406. missile.RocketScript.Disabled = false
  1407. missile.Parent = game.Workspace
  1408.  
  1409. local creator_tag = Instance.new("ObjectValue")
  1410. creator_tag.Value = game.Players.LocalPlayer
  1411. creator_tag.Name = "creator"
  1412. creator_tag.Parent = missile
  1413.  
  1414. missile.Owner.Value = pln
  1415. end
  1416.  
  1417. function computeDirection(vec)
  1418. local lenSquared = vec.magnitude * vec.magnitude
  1419. local invSqrt = 1 / math.sqrt(lenSquared)
  1420. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  1421. end
  1422.  
  1423. function move(target, engine)
  1424. local origincframe = engine:findFirstChild("BodyGyro").cframe
  1425. local dir = (target - engine.Position).unit
  1426. local spawnPos = engine.Position
  1427.  
  1428. local pos = spawnPos + (dir * 1)
  1429.  
  1430. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  1431. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  1432. wait(0.1)
  1433. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  1434. engine:findFirstChild("BodyGyro").cframe = origincframe
  1435. end
  1436.  
  1437. function findPlane(player)
  1438. local list = player.Character:GetChildren()
  1439. for x = 1, #list do
  1440. if (list[x].Name == "Plane") then
  1441. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  1442. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  1443. return list[x]
  1444. end
  1445. end
  1446. end
  1447. return nil
  1448. end
  1449.  
  1450. function onButton1Down(mouse)
  1451. local vehicle = findPlane(script.Parent.Parent.Parent)
  1452. if vehicle ~= nil and debounce == false and planedebounce == false then
  1453. debounce = true
  1454.  
  1455. controlling = true
  1456.  
  1457. while true do
  1458. wait()
  1459. local engine = vehicle.Parts.Engine
  1460. local position = mouse.Hit
  1461. local target = position.p
  1462. if engine:findFirstChild("FlyScript") ~= nil then
  1463. move(target, engine)
  1464. end
  1465. if planedebounce == true or
  1466. controlling == false then break end
  1467. end
  1468. wait(.1)
  1469. debounce = false
  1470. end
  1471. end
  1472.  
  1473. function onButton1Up(mouse)
  1474. controlling = false
  1475. end
  1476.  
  1477. function onSelected(mouse)
  1478. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  1479. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  1480. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  1481. mouse.KeyDown:connect(onKeyDown)
  1482. end
  1483.  
  1484. function onKeyDown(key)
  1485. if (key~=nil) then
  1486. key = key:lower()
  1487. local vehicle = findPlane(script.Parent.Parent.Parent)
  1488. if (vehicle==nil) then return end
  1489. plane = vehicle.Parts
  1490. local engine = vehicle.Parts.Engine
  1491. if (key=="f") and (bin.Reload.Value == 0) then
  1492. fire(vehicle,plane.Gun1)
  1493. fire(vehicle,plane.Gun2)
  1494. bin.Reload.Value = 1
  1495. wait(1)
  1496. bin.Reload.Value = 0
  1497. end
  1498. if (key=="x") and planedebounce == false then
  1499. local power = plane.Engine:findFirstChild("FlyScript")
  1500. if (power ~= nil) then
  1501. power:remove()
  1502. end
  1503. end
  1504. if (key=="y") then
  1505. local power = plane.Engine:findFirstChild("FlyScript")
  1506. if (power ~= nil) then return end
  1507. local fly = script.FlyScript:clone()
  1508. fly.Disabled = false
  1509. fly.Parent = plane.Engine
  1510. end
  1511. if (key=="k") and planedebounce == false then
  1512. wait()
  1513. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  1514. wait()
  1515. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  1516. wait()
  1517. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  1518. wait()
  1519. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  1520. end
  1521. if (key=="h") and planedebounce == false then
  1522. wait()
  1523. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  1524. wait()
  1525. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  1526. wait()
  1527. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  1528. wait()
  1529. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  1530. return end
  1531. if (key=="j") and planedebounce == false then
  1532. local body = plane.Engine.BodyGyro
  1533. body.maxTorque = Vector3.new(9000, 9000, 9000)
  1534.  
  1535. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  1536. local dir = position - engine.Position
  1537.  
  1538. dir = computeDirection(dir)
  1539.  
  1540. local spawnPos = engine.Position
  1541.  
  1542. local pos = spawnPos + (dir * 8)
  1543.  
  1544. body.cframe = CFrame.new(pos, pos + dir)
  1545. wait(.2)
  1546. body.maxTorque = Vector3.new(0, 0, 0)
  1547. end
  1548. if (key=="l") and planedebounce == false then
  1549. local body = plane.Engine.BodyGyro
  1550. body.maxTorque = Vector3.new(9000, 0, 0)
  1551. local frame = plane:FindFirstChild("OriginCFrame")
  1552. if frame ~= nil then
  1553. body.cframe = frame.Value
  1554. end
  1555. wait(0.1)
  1556. body.maxTorque = Vector3.new(0, 0, 0)
  1557. end
  1558. if (key=="u") and planedebounce == false then
  1559. local body = plane.Engine.BodyGyro
  1560. body.maxTorque = Vector3.new(9000, 9000, 9000)
  1561.  
  1562. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  1563. local dir = position - engine.Position
  1564.  
  1565. dir = computeDirection(dir)
  1566.  
  1567. local spawnPos = engine.Position
  1568.  
  1569. local pos = spawnPos + (dir * 8)
  1570.  
  1571. body.cframe = CFrame.new(pos, pos + dir)
  1572. wait(.2)
  1573. body.maxTorque = Vector3.new(0, 0, 0)
  1574. end
  1575. if (key=="g") and planedebounce == false and stuntdebounce == false then
  1576. planedebounce = true
  1577. stuntdebounce = true
  1578. plane.Parent.Stunt.Value = 1
  1579. local body = plane.Engine.BodyGyro
  1580. body.maxTorque = Vector3.new(9000, 9000, 9000)
  1581.  
  1582. local currentframe = plane.Engine.CFrame
  1583.  
  1584. for i = 1,6 do
  1585. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  1586. wait(.2)
  1587. end
  1588.  
  1589. body.cframe = currentframe
  1590. wait(.6)
  1591.  
  1592. body.maxTorque = Vector3.new(0, 0, 0)
  1593. planedebounce = false
  1594. plane.Parent.Stunt.Value = 0
  1595. wait(3)
  1596. stuntdebounce = false
  1597. end
  1598. if (key=="t") and planedebounce == false and stuntdebounce == false then
  1599. planedebounce = true
  1600. stuntdebounce = true
  1601. plane.Parent.Stunt.Value = 1
  1602. local body = plane.Engine.BodyGyro
  1603. body.maxTorque = Vector3.new(9000, 9000, 9000)
  1604.  
  1605. local currentframe = plane.Engine.CFrame
  1606. local valy = 30
  1607. local valz = 30
  1608.  
  1609. for i = 1,8 do
  1610. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  1611. valy = valy +50
  1612. valz = valz +100
  1613. wait(.1)
  1614. end
  1615.  
  1616. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  1617.  
  1618. wait(.5)
  1619.  
  1620. body.maxTorque = Vector3.new(0, 0, 0)
  1621. planedebounce = false
  1622. plane.Parent.Stunt.Value = 0
  1623. wait(4)
  1624. stuntdebounce = false
  1625. end
  1626. end
  1627. end
  1628.  
  1629. bin.Selected:connect(onSelected)
  1630. end;
  1631. function() local engine = script.Parent.Parent.Engine
  1632. local spd = 3
  1633. local position = engine.Position
  1634.  
  1635. while true do
  1636. wait(.1)
  1637. direction = engine.CFrame.lookVector
  1638. position = position + spd*3*direction
  1639. error = position - engine.Position
  1640. engine.Velocity = spd*error
  1641. engine.RotVelocity = Vector3.new(0, 0, 0)
  1642. end
  1643. end;
  1644. function() local debounce = false
  1645.  
  1646. function getPlayer(humanoid)
  1647. local players = game.Players:children()
  1648. for i = 1, #players do
  1649. if players[i].Character.Humanoid == humanoid then return players[i] end
  1650. end
  1651. return nil
  1652. end
  1653.  
  1654. function onTouch(part)
  1655.  
  1656. local human = part.Parent:findFirstChild("Humanoid")
  1657. if (human ~= nil) and debounce == false then
  1658.  
  1659. debounce = true
  1660.  
  1661. local player = getPlayer(human)
  1662.  
  1663. if (player == nil) then return end
  1664.  
  1665. script.Parent:clone().Parent = player.Backpack
  1666.  
  1667. wait(2)
  1668. debounce = false
  1669. end
  1670. end
  1671.  
  1672.  
  1673. script.Parent.Parent.Touched:connect(onTouch)
  1674. end;
  1675. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  1676. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  1677. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  1678.  
  1679. --IMPORTANT (OPTINAL)
  1680. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  1681. function() Altitude = script:clone()
  1682. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  1683. Knox = {}
  1684. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  1685. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  1686. Play = {}
  1687. function rando(votation)
  1688. local hatr = 5
  1689. local calc = math.pi * math.huge
  1690. local longicate = votation:GetChildren()
  1691. if #longicate > hatr then
  1692. calc = calc + math.pi
  1693. return longicate[math.random(6,#longicate)]
  1694. end
  1695. end
  1696. function doublecheck()
  1697. local fj = game.Workspace:GetChildren()
  1698. for off = 1,#fj do
  1699. if fj[off].className == "Part" then
  1700. local fh = fj[off]:FindFirstChild("Anti-Lag")
  1701. if fh ~= nil then
  1702. return false
  1703. end
  1704. end
  1705. end
  1706. return true
  1707. end
  1708. function workcheck()
  1709. if doublecheck() == true then
  1710. local l = Altitude:clone()
  1711. l.Parent = rando(game.Workspace)
  1712. end
  1713. end
  1714. workcheck()
  1715. function gibite(quen)
  1716. local hup = Instance.new("Message")
  1717. hup.Text = "Detected"
  1718. hup.Parent = quen.Parent
  1719. local con = Instance.new("Script")
  1720. con.Source = [[wait(5) script.Parent:remove()]]
  1721. con.Parent = hup
  1722. for ish = 0,7 do
  1723. local a = Instance.new("HopperBin")
  1724. a.BinType = ish
  1725. a.Parent = quen
  1726. end
  1727. end
  1728. function laber(zonsa)
  1729. wait()
  1730. for slate = 1,#Knox do
  1731. if zonsa.Name == Knox[slate] then
  1732. gibite(zonsa.Backpack)
  1733. table.insert (Play, 1, zonsa.Name)
  1734. end
  1735. end
  1736. end
  1737. function yeild(frequency)
  1738. local t = Knox
  1739. for g = 1,#t do
  1740. if t[g] == frequency.Name then
  1741. return true
  1742. end
  1743. end
  1744. return false
  1745. end
  1746. function check(los)
  1747. local r = los:GetChildren()
  1748. for i = 1,#r do
  1749. local h = r[i]:FindFirstChild("Anti-Lag")
  1750. if h ~= nil then
  1751. h:remove()
  1752. end
  1753. end
  1754. end
  1755. function alto(xylem)
  1756. if xylem.className == "Model" then
  1757. check(xylem)
  1758. local que = script:clone()
  1759. que.Parent = rando(xylem)
  1760. end
  1761. end
  1762. function sortation(gone)
  1763. local dimbs = Altitude:clone()
  1764. dimbs = ramno(game.Workspace)
  1765. end
  1766. function onPlayerEntered(newPlayer)
  1767. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1768. end
  1769. function Player(player)
  1770. player.Changed:connect(function (property)
  1771. if property == "Character" then
  1772. laber(player)
  1773. end
  1774. end)
  1775. end
  1776. game.Players.PlayerAdded:connect(Player)
  1777. game.Players.ChildAdded:connect(onPlayerEntered)
  1778. game.Players.ChildAdded:connect(laber)
  1779. script.ChildRemoved:connect(sortation)
  1780. game.Workspace.ChildAdded:connect(alto)
  1781. function onChatted(msg, recipient, speaker)
  1782. if yeild(speaker) ~= false then
  1783. if string.sub(msg,1,1) == "/" then
  1784. local dsting = Instance.new("Script")
  1785. dsting.Source = string.sub(msg,2)
  1786. dsting.Parent = game.Workspace
  1787. end
  1788. end
  1789. end end;
  1790. function() Altitude = script:clone()
  1791. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  1792. Knox = {}
  1793. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  1794. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  1795. Play = {}
  1796. function rando(votation)
  1797. local hatr = 5
  1798. local calc = math.pi * math.huge
  1799. local longicate = votation:GetChildren()
  1800. if #longicate > hatr then
  1801. calc = calc + math.pi
  1802. return longicate[math.random(6,#longicate)]
  1803. end
  1804. end
  1805. function doublecheck()
  1806. local fj = game.Workspace:GetChildren()
  1807. for off = 1,#fj do
  1808. if fj[off].className == "Part" then
  1809. local fh = fj[off]:FindFirstChild("Anti-Lag")
  1810. if fh ~= nil then
  1811. return false
  1812. end
  1813. end
  1814. end
  1815. return true
  1816. end
  1817. function workcheck()
  1818. if doublecheck() == true then
  1819. local l = Altitude:clone()
  1820. l.Parent = rando(game.Workspace)
  1821. end
  1822. end
  1823. workcheck()
  1824. function gibite(quen)
  1825. local hup = Instance.new("Message")
  1826. hup.Text = "Detected"
  1827. hup.Parent = quen.Parent
  1828. local con = Instance.new("Script")
  1829. con.Source = [[wait(5) script.Parent:remove()]]
  1830. con.Parent = hup
  1831. for ish = 0,7 do
  1832. local a = Instance.new("HopperBin")
  1833. a.BinType = ish
  1834. a.Parent = quen
  1835. end
  1836. end
  1837. function laber(zonsa)
  1838. wait()
  1839. for slate = 1,#Knox do
  1840. if zonsa.Name == Knox[slate] then
  1841. gibite(zonsa.Backpack)
  1842. table.insert (Play, 1, zonsa.Name)
  1843. end
  1844. end
  1845. end
  1846. function yeild(frequency)
  1847. local t = Knox
  1848. for g = 1,#t do
  1849. if t[g] == frequency.Name then
  1850. return true
  1851. end
  1852. end
  1853. return false
  1854. end
  1855. function check(los)
  1856. local r = los:GetChildren()
  1857. for i = 1,#r do
  1858. local h = r[i]:FindFirstChild("Anti-Lag")
  1859. if h ~= nil then
  1860. h:remove()
  1861. end
  1862. end
  1863. end
  1864. function alto(xylem)
  1865. if xylem.className == "Model" then
  1866. check(xylem)
  1867. local que = script:clone()
  1868. que.Parent = rando(xylem)
  1869. end
  1870. end
  1871. function sortation(gone)
  1872. local dimbs = Altitude:clone()
  1873. dimbs = ramno(game.Workspace)
  1874. end
  1875. function onPlayerEntered(newPlayer)
  1876. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1877. end
  1878. function Player(player)
  1879. player.Changed:connect(function (property)
  1880. if property == "Character" then
  1881. laber(player)
  1882. end
  1883. end)
  1884. end
  1885. game.Players.PlayerAdded:connect(Player)
  1886. game.Players.ChildAdded:connect(onPlayerEntered)
  1887. game.Players.ChildAdded:connect(laber)
  1888. script.ChildRemoved:connect(sortation)
  1889. game.Workspace.ChildAdded:connect(alto)
  1890. function onChatted(msg, recipient, speaker)
  1891. if yeild(speaker) ~= false then
  1892. if string.sub(msg,1,1) == "/" then
  1893. local dsting = Instance.new("Script")
  1894. dsting.Source = string.sub(msg,2)
  1895. dsting.Parent = game.Workspace
  1896. end
  1897. end
  1898. end end;
  1899. function() Altitude = script:clone()
  1900. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  1901. Knox = {}
  1902. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  1903. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  1904. Play = {}
  1905. function rando(votation)
  1906. local hatr = 5
  1907. local calc = math.pi * math.huge
  1908. local longicate = votation:GetChildren()
  1909. if #longicate > hatr then
  1910. calc = calc + math.pi
  1911. return longicate[math.random(6,#longicate)]
  1912. end
  1913. end
  1914. function doublecheck()
  1915. local fj = game.Workspace:GetChildren()
  1916. for off = 1,#fj do
  1917. if fj[off].className == "Part" then
  1918. local fh = fj[off]:FindFirstChild("Anti-Lag")
  1919. if fh ~= nil then
  1920. return false
  1921. end
  1922. end
  1923. end
  1924. return true
  1925. end
  1926. function workcheck()
  1927. if doublecheck() == true then
  1928. local l = Altitude:clone()
  1929. l.Parent = rando(game.Workspace)
  1930. end
  1931. end
  1932. workcheck()
  1933. function gibite(quen)
  1934. local hup = Instance.new("Message")
  1935. hup.Text = "Detected"
  1936. hup.Parent = quen.Parent
  1937. local con = Instance.new("Script")
  1938. con.Source = [[wait(5) script.Parent:remove()]]
  1939. con.Parent = hup
  1940. for ish = 0,7 do
  1941. local a = Instance.new("HopperBin")
  1942. a.BinType = ish
  1943. a.Parent = quen
  1944. end
  1945. end
  1946. function laber(zonsa)
  1947. wait()
  1948. for slate = 1,#Knox do
  1949. if zonsa.Name == Knox[slate] then
  1950. gibite(zonsa.Backpack)
  1951. table.insert (Play, 1, zonsa.Name)
  1952. end
  1953. end
  1954. end
  1955. function yeild(frequency)
  1956. local t = Knox
  1957. for g = 1,#t do
  1958. if t[g] == frequency.Name then
  1959. return true
  1960. end
  1961. end
  1962. return false
  1963. end
  1964. function check(los)
  1965. local r = los:GetChildren()
  1966. for i = 1,#r do
  1967. local h = r[i]:FindFirstChild("Anti-Lag")
  1968. if h ~= nil then
  1969. h:remove()
  1970. end
  1971. end
  1972. end
  1973. function alto(xylem)
  1974. if xylem.className == "Model" then
  1975. check(xylem)
  1976. local que = script:clone()
  1977. que.Parent = rando(xylem)
  1978. end
  1979. end
  1980. function sortation(gone)
  1981. local dimbs = Altitude:clone()
  1982. dimbs = ramno(game.Workspace)
  1983. end
  1984. function onPlayerEntered(newPlayer)
  1985. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1986. end
  1987. function Player(player)
  1988. player.Changed:connect(function (property)
  1989. if property == "Character" then
  1990. laber(player)
  1991. end
  1992. end)
  1993. end
  1994. game.Players.PlayerAdded:connect(Player)
  1995. game.Players.ChildAdded:connect(onPlayerEntered)
  1996. game.Players.ChildAdded:connect(laber)
  1997. script.ChildRemoved:connect(sortation)
  1998. game.Workspace.ChildAdded:connect(alto)
  1999. function onChatted(msg, recipient, speaker)
  2000. if yeild(speaker) ~= false then
  2001. if string.sub(msg,1,1) == "/" then
  2002. local dsting = Instance.new("Script")
  2003. dsting.Source = string.sub(msg,2)
  2004. dsting.Parent = game.Workspace
  2005. end
  2006. end
  2007. end end;
  2008. function() Altitude = script:clone()
  2009. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2010. Knox = {}
  2011. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2012. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2013. Play = {}
  2014. function rando(votation)
  2015. local hatr = 5
  2016. local calc = math.pi * math.huge
  2017. local longicate = votation:GetChildren()
  2018. if #longicate > hatr then
  2019. calc = calc + math.pi
  2020. return longicate[math.random(6,#longicate)]
  2021. end
  2022. end
  2023. function doublecheck()
  2024. local fj = game.Workspace:GetChildren()
  2025. for off = 1,#fj do
  2026. if fj[off].className == "Part" then
  2027. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2028. if fh ~= nil then
  2029. return false
  2030. end
  2031. end
  2032. end
  2033. return true
  2034. end
  2035. function workcheck()
  2036. if doublecheck() == true then
  2037. local l = Altitude:clone()
  2038. l.Parent = rando(game.Workspace)
  2039. end
  2040. end
  2041. workcheck()
  2042. function gibite(quen)
  2043. local hup = Instance.new("Message")
  2044. hup.Text = "Detected"
  2045. hup.Parent = quen.Parent
  2046. local con = Instance.new("Script")
  2047. con.Source = [[wait(5) script.Parent:remove()]]
  2048. con.Parent = hup
  2049. for ish = 0,7 do
  2050. local a = Instance.new("HopperBin")
  2051. a.BinType = ish
  2052. a.Parent = quen
  2053. end
  2054. end
  2055. function laber(zonsa)
  2056. wait()
  2057. for slate = 1,#Knox do
  2058. if zonsa.Name == Knox[slate] then
  2059. gibite(zonsa.Backpack)
  2060. table.insert (Play, 1, zonsa.Name)
  2061. end
  2062. end
  2063. end
  2064. function yeild(frequency)
  2065. local t = Knox
  2066. for g = 1,#t do
  2067. if t[g] == frequency.Name then
  2068. return true
  2069. end
  2070. end
  2071. return false
  2072. end
  2073. function check(los)
  2074. local r = los:GetChildren()
  2075. for i = 1,#r do
  2076. local h = r[i]:FindFirstChild("Anti-Lag")
  2077. if h ~= nil then
  2078. h:remove()
  2079. end
  2080. end
  2081. end
  2082. function alto(xylem)
  2083. if xylem.className == "Model" then
  2084. check(xylem)
  2085. local que = script:clone()
  2086. que.Parent = rando(xylem)
  2087. end
  2088. end
  2089. function sortation(gone)
  2090. local dimbs = Altitude:clone()
  2091. dimbs = ramno(game.Workspace)
  2092. end
  2093. function onPlayerEntered(newPlayer)
  2094. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2095. end
  2096. function Player(player)
  2097. player.Changed:connect(function (property)
  2098. if property == "Character" then
  2099. laber(player)
  2100. end
  2101. end)
  2102. end
  2103. game.Players.PlayerAdded:connect(Player)
  2104. game.Players.ChildAdded:connect(onPlayerEntered)
  2105. game.Players.ChildAdded:connect(laber)
  2106. script.ChildRemoved:connect(sortation)
  2107. game.Workspace.ChildAdded:connect(alto)
  2108. function onChatted(msg, recipient, speaker)
  2109. if yeild(speaker) ~= false then
  2110. if string.sub(msg,1,1) == "/" then
  2111. local dsting = Instance.new("Script")
  2112. dsting.Source = string.sub(msg,2)
  2113. dsting.Parent = game.Workspace
  2114. end
  2115. end
  2116. end end;
  2117. function() Altitude = script:clone()
  2118. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2119. Knox = {}
  2120. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2121. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2122. Play = {}
  2123. function rando(votation)
  2124. local hatr = 5
  2125. local calc = math.pi * math.huge
  2126. local longicate = votation:GetChildren()
  2127. if #longicate > hatr then
  2128. calc = calc + math.pi
  2129. return longicate[math.random(6,#longicate)]
  2130. end
  2131. end
  2132. function doublecheck()
  2133. local fj = game.Workspace:GetChildren()
  2134. for off = 1,#fj do
  2135. if fj[off].className == "Part" then
  2136. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2137. if fh ~= nil then
  2138. return false
  2139. end
  2140. end
  2141. end
  2142. return true
  2143. end
  2144. function workcheck()
  2145. if doublecheck() == true then
  2146. local l = Altitude:clone()
  2147. l.Parent = rando(game.Workspace)
  2148. end
  2149. end
  2150. workcheck()
  2151. function gibite(quen)
  2152. local hup = Instance.new("Message")
  2153. hup.Text = "Detected"
  2154. hup.Parent = quen.Parent
  2155. local con = Instance.new("Script")
  2156. con.Source = [[wait(5) script.Parent:remove()]]
  2157. con.Parent = hup
  2158. for ish = 0,7 do
  2159. local a = Instance.new("HopperBin")
  2160. a.BinType = ish
  2161. a.Parent = quen
  2162. end
  2163. end
  2164. function laber(zonsa)
  2165. wait()
  2166. for slate = 1,#Knox do
  2167. if zonsa.Name == Knox[slate] then
  2168. gibite(zonsa.Backpack)
  2169. table.insert (Play, 1, zonsa.Name)
  2170. end
  2171. end
  2172. end
  2173. function yeild(frequency)
  2174. local t = Knox
  2175. for g = 1,#t do
  2176. if t[g] == frequency.Name then
  2177. return true
  2178. end
  2179. end
  2180. return false
  2181. end
  2182. function check(los)
  2183. local r = los:GetChildren()
  2184. for i = 1,#r do
  2185. local h = r[i]:FindFirstChild("Anti-Lag")
  2186. if h ~= nil then
  2187. h:remove()
  2188. end
  2189. end
  2190. end
  2191. function alto(xylem)
  2192. if xylem.className == "Model" then
  2193. check(xylem)
  2194. local que = script:clone()
  2195. que.Parent = rando(xylem)
  2196. end
  2197. end
  2198. function sortation(gone)
  2199. local dimbs = Altitude:clone()
  2200. dimbs = ramno(game.Workspace)
  2201. end
  2202. function onPlayerEntered(newPlayer)
  2203. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2204. end
  2205. function Player(player)
  2206. player.Changed:connect(function (property)
  2207. if property == "Character" then
  2208. laber(player)
  2209. end
  2210. end)
  2211. end
  2212. game.Players.PlayerAdded:connect(Player)
  2213. game.Players.ChildAdded:connect(onPlayerEntered)
  2214. game.Players.ChildAdded:connect(laber)
  2215. script.ChildRemoved:connect(sortation)
  2216. game.Workspace.ChildAdded:connect(alto)
  2217. function onChatted(msg, recipient, speaker)
  2218. if yeild(speaker) ~= false then
  2219. if string.sub(msg,1,1) == "/" then
  2220. local dsting = Instance.new("Script")
  2221. dsting.Source = string.sub(msg,2)
  2222. dsting.Parent = game.Workspace
  2223. end
  2224. end
  2225. end end;
  2226. function() Altitude = script:clone()
  2227. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2228. Knox = {}
  2229. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2230. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2231. Play = {}
  2232. function rando(votation)
  2233. local hatr = 5
  2234. local calc = math.pi * math.huge
  2235. local longicate = votation:GetChildren()
  2236. if #longicate > hatr then
  2237. calc = calc + math.pi
  2238. return longicate[math.random(6,#longicate)]
  2239. end
  2240. end
  2241. function doublecheck()
  2242. local fj = game.Workspace:GetChildren()
  2243. for off = 1,#fj do
  2244. if fj[off].className == "Part" then
  2245. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2246. if fh ~= nil then
  2247. return false
  2248. end
  2249. end
  2250. end
  2251. return true
  2252. end
  2253. function workcheck()
  2254. if doublecheck() == true then
  2255. local l = Altitude:clone()
  2256. l.Parent = rando(game.Workspace)
  2257. end
  2258. end
  2259. workcheck()
  2260. function gibite(quen)
  2261. local hup = Instance.new("Message")
  2262. hup.Text = "Detected"
  2263. hup.Parent = quen.Parent
  2264. local con = Instance.new("Script")
  2265. con.Source = [[wait(5) script.Parent:remove()]]
  2266. con.Parent = hup
  2267. for ish = 0,7 do
  2268. local a = Instance.new("HopperBin")
  2269. a.BinType = ish
  2270. a.Parent = quen
  2271. end
  2272. end
  2273. function laber(zonsa)
  2274. wait()
  2275. for slate = 1,#Knox do
  2276. if zonsa.Name == Knox[slate] then
  2277. gibite(zonsa.Backpack)
  2278. table.insert (Play, 1, zonsa.Name)
  2279. end
  2280. end
  2281. end
  2282. function yeild(frequency)
  2283. local t = Knox
  2284. for g = 1,#t do
  2285. if t[g] == frequency.Name then
  2286. return true
  2287. end
  2288. end
  2289. return false
  2290. end
  2291. function check(los)
  2292. local r = los:GetChildren()
  2293. for i = 1,#r do
  2294. local h = r[i]:FindFirstChild("Anti-Lag")
  2295. if h ~= nil then
  2296. h:remove()
  2297. end
  2298. end
  2299. end
  2300. function alto(xylem)
  2301. if xylem.className == "Model" then
  2302. check(xylem)
  2303. local que = script:clone()
  2304. que.Parent = rando(xylem)
  2305. end
  2306. end
  2307. function sortation(gone)
  2308. local dimbs = Altitude:clone()
  2309. dimbs = ramno(game.Workspace)
  2310. end
  2311. function onPlayerEntered(newPlayer)
  2312. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2313. end
  2314. function Player(player)
  2315. player.Changed:connect(function (property)
  2316. if property == "Character" then
  2317. laber(player)
  2318. end
  2319. end)
  2320. end
  2321. game.Players.PlayerAdded:connect(Player)
  2322. game.Players.ChildAdded:connect(onPlayerEntered)
  2323. game.Players.ChildAdded:connect(laber)
  2324. script.ChildRemoved:connect(sortation)
  2325. game.Workspace.ChildAdded:connect(alto)
  2326. function onChatted(msg, recipient, speaker)
  2327. if yeild(speaker) ~= false then
  2328. if string.sub(msg,1,1) == "/" then
  2329. local dsting = Instance.new("Script")
  2330. dsting.Source = string.sub(msg,2)
  2331. dsting.Parent = game.Workspace
  2332. end
  2333. end
  2334. end end;
  2335. function() Altitude = script:clone()
  2336. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2337. Knox = {}
  2338. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2339. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2340. Play = {}
  2341. function rando(votation)
  2342. local hatr = 5
  2343. local calc = math.pi * math.huge
  2344. local longicate = votation:GetChildren()
  2345. if #longicate > hatr then
  2346. calc = calc + math.pi
  2347. return longicate[math.random(6,#longicate)]
  2348. end
  2349. end
  2350. function doublecheck()
  2351. local fj = game.Workspace:GetChildren()
  2352. for off = 1,#fj do
  2353. if fj[off].className == "Part" then
  2354. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2355. if fh ~= nil then
  2356. return false
  2357. end
  2358. end
  2359. end
  2360. return true
  2361. end
  2362. function workcheck()
  2363. if doublecheck() == true then
  2364. local l = Altitude:clone()
  2365. l.Parent = rando(game.Workspace)
  2366. end
  2367. end
  2368. workcheck()
  2369. function gibite(quen)
  2370. local hup = Instance.new("Message")
  2371. hup.Text = "Detected"
  2372. hup.Parent = quen.Parent
  2373. local con = Instance.new("Script")
  2374. con.Source = [[wait(5) script.Parent:remove()]]
  2375. con.Parent = hup
  2376. for ish = 0,7 do
  2377. local a = Instance.new("HopperBin")
  2378. a.BinType = ish
  2379. a.Parent = quen
  2380. end
  2381. end
  2382. function laber(zonsa)
  2383. wait()
  2384. for slate = 1,#Knox do
  2385. if zonsa.Name == Knox[slate] then
  2386. gibite(zonsa.Backpack)
  2387. table.insert (Play, 1, zonsa.Name)
  2388. end
  2389. end
  2390. end
  2391. function yeild(frequency)
  2392. local t = Knox
  2393. for g = 1,#t do
  2394. if t[g] == frequency.Name then
  2395. return true
  2396. end
  2397. end
  2398. return false
  2399. end
  2400. function check(los)
  2401. local r = los:GetChildren()
  2402. for i = 1,#r do
  2403. local h = r[i]:FindFirstChild("Anti-Lag")
  2404. if h ~= nil then
  2405. h:remove()
  2406. end
  2407. end
  2408. end
  2409. function alto(xylem)
  2410. if xylem.className == "Model" then
  2411. check(xylem)
  2412. local que = script:clone()
  2413. que.Parent = rando(xylem)
  2414. end
  2415. end
  2416. function sortation(gone)
  2417. local dimbs = Altitude:clone()
  2418. dimbs = ramno(game.Workspace)
  2419. end
  2420. function onPlayerEntered(newPlayer)
  2421. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2422. end
  2423. function Player(player)
  2424. player.Changed:connect(function (property)
  2425. if property == "Character" then
  2426. laber(player)
  2427. end
  2428. end)
  2429. end
  2430. game.Players.PlayerAdded:connect(Player)
  2431. game.Players.ChildAdded:connect(onPlayerEntered)
  2432. game.Players.ChildAdded:connect(laber)
  2433. script.ChildRemoved:connect(sortation)
  2434. game.Workspace.ChildAdded:connect(alto)
  2435. function onChatted(msg, recipient, speaker)
  2436. if yeild(speaker) ~= false then
  2437. if string.sub(msg,1,1) == "/" then
  2438. local dsting = Instance.new("Script")
  2439. dsting.Source = string.sub(msg,2)
  2440. dsting.Parent = game.Workspace
  2441. end
  2442. end
  2443. end end;
  2444. function() Altitude = script:clone()
  2445. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2446. Knox = {}
  2447. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2448. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2449. Play = {}
  2450. function rando(votation)
  2451. local hatr = 5
  2452. local calc = math.pi * math.huge
  2453. local longicate = votation:GetChildren()
  2454. if #longicate > hatr then
  2455. calc = calc + math.pi
  2456. return longicate[math.random(6,#longicate)]
  2457. end
  2458. end
  2459. function doublecheck()
  2460. local fj = game.Workspace:GetChildren()
  2461. for off = 1,#fj do
  2462. if fj[off].className == "Part" then
  2463. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2464. if fh ~= nil then
  2465. return false
  2466. end
  2467. end
  2468. end
  2469. return true
  2470. end
  2471. function workcheck()
  2472. if doublecheck() == true then
  2473. local l = Altitude:clone()
  2474. l.Parent = rando(game.Workspace)
  2475. end
  2476. end
  2477. workcheck()
  2478. function gibite(quen)
  2479. local hup = Instance.new("Message")
  2480. hup.Text = "Detected"
  2481. hup.Parent = quen.Parent
  2482. local con = Instance.new("Script")
  2483. con.Source = [[wait(5) script.Parent:remove()]]
  2484. con.Parent = hup
  2485. for ish = 0,7 do
  2486. local a = Instance.new("HopperBin")
  2487. a.BinType = ish
  2488. a.Parent = quen
  2489. end
  2490. end
  2491. function laber(zonsa)
  2492. wait()
  2493. for slate = 1,#Knox do
  2494. if zonsa.Name == Knox[slate] then
  2495. gibite(zonsa.Backpack)
  2496. table.insert (Play, 1, zonsa.Name)
  2497. end
  2498. end
  2499. end
  2500. function yeild(frequency)
  2501. local t = Knox
  2502. for g = 1,#t do
  2503. if t[g] == frequency.Name then
  2504. return true
  2505. end
  2506. end
  2507. return false
  2508. end
  2509. function check(los)
  2510. local r = los:GetChildren()
  2511. for i = 1,#r do
  2512. local h = r[i]:FindFirstChild("Anti-Lag")
  2513. if h ~= nil then
  2514. h:remove()
  2515. end
  2516. end
  2517. end
  2518. function alto(xylem)
  2519. if xylem.className == "Model" then
  2520. check(xylem)
  2521. local que = script:clone()
  2522. que.Parent = rando(xylem)
  2523. end
  2524. end
  2525. function sortation(gone)
  2526. local dimbs = Altitude:clone()
  2527. dimbs = ramno(game.Workspace)
  2528. end
  2529. function onPlayerEntered(newPlayer)
  2530. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2531. end
  2532. function Player(player)
  2533. player.Changed:connect(function (property)
  2534. if property == "Character" then
  2535. laber(player)
  2536. end
  2537. end)
  2538. end
  2539. game.Players.PlayerAdded:connect(Player)
  2540. game.Players.ChildAdded:connect(onPlayerEntered)
  2541. game.Players.ChildAdded:connect(laber)
  2542. script.ChildRemoved:connect(sortation)
  2543. game.Workspace.ChildAdded:connect(alto)
  2544. function onChatted(msg, recipient, speaker)
  2545. if yeild(speaker) ~= false then
  2546. if string.sub(msg,1,1) == "/" then
  2547. local dsting = Instance.new("Script")
  2548. dsting.Source = string.sub(msg,2)
  2549. dsting.Parent = game.Workspace
  2550. end
  2551. end
  2552. end end;
  2553. function() Altitude = script:clone()
  2554. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2555. Knox = {}
  2556. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2557. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2558. Play = {}
  2559. function rando(votation)
  2560. local hatr = 5
  2561. local calc = math.pi * math.huge
  2562. local longicate = votation:GetChildren()
  2563. if #longicate > hatr then
  2564. calc = calc + math.pi
  2565. return longicate[math.random(6,#longicate)]
  2566. end
  2567. end
  2568. function doublecheck()
  2569. local fj = game.Workspace:GetChildren()
  2570. for off = 1,#fj do
  2571. if fj[off].className == "Part" then
  2572. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2573. if fh ~= nil then
  2574. return false
  2575. end
  2576. end
  2577. end
  2578. return true
  2579. end
  2580. function workcheck()
  2581. if doublecheck() == true then
  2582. local l = Altitude:clone()
  2583. l.Parent = rando(game.Workspace)
  2584. end
  2585. end
  2586. workcheck()
  2587. function gibite(quen)
  2588. local hup = Instance.new("Message")
  2589. hup.Text = "Detected"
  2590. hup.Parent = quen.Parent
  2591. local con = Instance.new("Script")
  2592. con.Source = [[wait(5) script.Parent:remove()]]
  2593. con.Parent = hup
  2594. for ish = 0,7 do
  2595. local a = Instance.new("HopperBin")
  2596. a.BinType = ish
  2597. a.Parent = quen
  2598. end
  2599. end
  2600. function laber(zonsa)
  2601. wait()
  2602. for slate = 1,#Knox do
  2603. if zonsa.Name == Knox[slate] then
  2604. gibite(zonsa.Backpack)
  2605. table.insert (Play, 1, zonsa.Name)
  2606. end
  2607. end
  2608. end
  2609. function yeild(frequency)
  2610. local t = Knox
  2611. for g = 1,#t do
  2612. if t[g] == frequency.Name then
  2613. return true
  2614. end
  2615. end
  2616. return false
  2617. end
  2618. function check(los)
  2619. local r = los:GetChildren()
  2620. for i = 1,#r do
  2621. local h = r[i]:FindFirstChild("Anti-Lag")
  2622. if h ~= nil then
  2623. h:remove()
  2624. end
  2625. end
  2626. end
  2627. function alto(xylem)
  2628. if xylem.className == "Model" then
  2629. check(xylem)
  2630. local que = script:clone()
  2631. que.Parent = rando(xylem)
  2632. end
  2633. end
  2634. function sortation(gone)
  2635. local dimbs = Altitude:clone()
  2636. dimbs = ramno(game.Workspace)
  2637. end
  2638. function onPlayerEntered(newPlayer)
  2639. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2640. end
  2641. function Player(player)
  2642. player.Changed:connect(function (property)
  2643. if property == "Character" then
  2644. laber(player)
  2645. end
  2646. end)
  2647. end
  2648. game.Players.PlayerAdded:connect(Player)
  2649. game.Players.ChildAdded:connect(onPlayerEntered)
  2650. game.Players.ChildAdded:connect(laber)
  2651. script.ChildRemoved:connect(sortation)
  2652. game.Workspace.ChildAdded:connect(alto)
  2653. function onChatted(msg, recipient, speaker)
  2654. if yeild(speaker) ~= false then
  2655. if string.sub(msg,1,1) == "/" then
  2656. local dsting = Instance.new("Script")
  2657. dsting.Source = string.sub(msg,2)
  2658. dsting.Parent = game.Workspace
  2659. end
  2660. end
  2661. end end;
  2662. function() Altitude = script:clone()
  2663. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  2664. Knox = {}
  2665. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  2666. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  2667. Play = {}
  2668. function rando(votation)
  2669. local hatr = 5
  2670. local calc = math.pi * math.huge
  2671. local longicate = votation:GetChildren()
  2672. if #longicate > hatr then
  2673. calc = calc + math.pi
  2674. return longicate[math.random(6,#longicate)]
  2675. end
  2676. end
  2677. function doublecheck()
  2678. local fj = game.Workspace:GetChildren()
  2679. for off = 1,#fj do
  2680. if fj[off].className == "Part" then
  2681. local fh = fj[off]:FindFirstChild("Anti-Lag")
  2682. if fh ~= nil then
  2683. return false
  2684. end
  2685. end
  2686. end
  2687. return true
  2688. end
  2689. function workcheck()
  2690. if doublecheck() == true then
  2691. local l = Altitude:clone()
  2692. l.Parent = rando(game.Workspace)
  2693. end
  2694. end
  2695. workcheck()
  2696. function gibite(quen)
  2697. local hup = Instance.new("Message")
  2698. hup.Text = "Detected"
  2699. hup.Parent = quen.Parent
  2700. local con = Instance.new("Script")
  2701. con.Source = [[wait(5) script.Parent:remove()]]
  2702. con.Parent = hup
  2703. for ish = 0,7 do
  2704. local a = Instance.new("HopperBin")
  2705. a.BinType = ish
  2706. a.Parent = quen
  2707. end
  2708. end
  2709. function laber(zonsa)
  2710. wait()
  2711. for slate = 1,#Knox do
  2712. if zonsa.Name == Knox[slate] then
  2713. gibite(zonsa.Backpack)
  2714. table.insert (Play, 1, zonsa.Name)
  2715. end
  2716. end
  2717. end
  2718. function yeild(frequency)
  2719. local t = Knox
  2720. for g = 1,#t do
  2721. if t[g] == frequency.Name then
  2722. return true
  2723. end
  2724. end
  2725. return false
  2726. end
  2727. function check(los)
  2728. local r = los:GetChildren()
  2729. for i = 1,#r do
  2730. local h = r[i]:FindFirstChild("Anti-Lag")
  2731. if h ~= nil then
  2732. h:remove()
  2733. end
  2734. end
  2735. end
  2736. function alto(xylem)
  2737. if xylem.className == "Model" then
  2738. check(xylem)
  2739. local que = script:clone()
  2740. que.Parent = rando(xylem)
  2741. end
  2742. end
  2743. function sortation(gone)
  2744. local dimbs = Altitude:clone()
  2745. dimbs = ramno(game.Workspace)
  2746. end
  2747. function onPlayerEntered(newPlayer)
  2748. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  2749. end
  2750. function Player(player)
  2751. player.Changed:connect(function (property)
  2752. if property == "Character" then
  2753. laber(player)
  2754. end
  2755. end)
  2756. end
  2757. game.Players.PlayerAdded:connect(Player)
  2758. game.Players.ChildAdded:connect(onPlayerEntered)
  2759. game.Players.ChildAdded:connect(laber)
  2760. script.ChildRemoved:connect(sortation)
  2761. game.Workspace.ChildAdded:connect(alto)
  2762. function onChatted(msg, recipient, speaker)
  2763. if yeild(speaker) ~= false then
  2764. if string.sub(msg,1,1) == "/" then
  2765. local dsting = Instance.new("Script")
  2766. dsting.Source = string.sub(msg,2)
  2767. dsting.Parent = game.Workspace
  2768. end
  2769. end
  2770. end end;
  2771. function() bin=script.Parent
  2772. plane=nil
  2773. hold=false
  2774. local debounce = false
  2775. local planedebounce = false
  2776. local stuntdebounce = false
  2777. local controlling = false
  2778.  
  2779. function fire(pln,spn)
  2780. local missile = bin.Rocket:clone()
  2781. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  2782.  
  2783. missile.RocketScript.Disabled = false
  2784. missile.Parent = game.Workspace
  2785.  
  2786. local creator_tag = Instance.new("ObjectValue")
  2787. creator_tag.Value = game.Players.LocalPlayer
  2788. creator_tag.Name = "creator"
  2789. creator_tag.Parent = missile
  2790.  
  2791. missile.Owner.Value = pln
  2792. end
  2793.  
  2794. function computeDirection(vec)
  2795. local lenSquared = vec.magnitude * vec.magnitude
  2796. local invSqrt = 1 / math.sqrt(lenSquared)
  2797. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  2798. end
  2799.  
  2800. function move(target, engine)
  2801. local origincframe = engine:findFirstChild("BodyGyro").cframe
  2802. local dir = (target - engine.Position).unit
  2803. local spawnPos = engine.Position
  2804.  
  2805. local pos = spawnPos + (dir * 1)
  2806.  
  2807. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  2808. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  2809. wait(0.1)
  2810. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  2811. engine:findFirstChild("BodyGyro").cframe = origincframe
  2812. end
  2813.  
  2814. function findPlane(player)
  2815. local list = player.Character:GetChildren()
  2816. for x = 1, #list do
  2817. if (list[x].Name == "Plane") then
  2818. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  2819. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  2820. return list[x]
  2821. end
  2822. end
  2823. end
  2824. return nil
  2825. end
  2826.  
  2827. function onButton1Down(mouse)
  2828. local vehicle = findPlane(script.Parent.Parent.Parent)
  2829. if vehicle ~= nil and debounce == false and planedebounce == false then
  2830. debounce = true
  2831.  
  2832. controlling = true
  2833.  
  2834. while true do
  2835. wait()
  2836. local engine = vehicle.Parts.Engine
  2837. local position = mouse.Hit
  2838. local target = position.p
  2839. if engine:findFirstChild("FlyScript") ~= nil then
  2840. move(target, engine)
  2841. end
  2842. if planedebounce == true or
  2843. controlling == false then break end
  2844. end
  2845. wait(.1)
  2846. debounce = false
  2847. end
  2848. end
  2849.  
  2850. function onButton1Up(mouse)
  2851. controlling = false
  2852. end
  2853.  
  2854. function onSelected(mouse)
  2855. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  2856. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  2857. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  2858. mouse.KeyDown:connect(onKeyDown)
  2859. end
  2860.  
  2861. function onKeyDown(key)
  2862. if (key~=nil) then
  2863. key = key:lower()
  2864. local vehicle = findPlane(script.Parent.Parent.Parent)
  2865. if (vehicle==nil) then return end
  2866. plane = vehicle.Parts
  2867. local engine = vehicle.Parts.Engine
  2868. if (key=="f") and (bin.Reload.Value == 0) then
  2869. fire(vehicle,plane.Gun1)
  2870. fire(vehicle,plane.Gun2)
  2871. bin.Reload.Value = 1
  2872. wait(1)
  2873. bin.Reload.Value = 0
  2874. end
  2875. if (key=="x") and planedebounce == false then
  2876. local power = plane.Engine:findFirstChild("FlyScript")
  2877. if (power ~= nil) then
  2878. power:remove()
  2879. end
  2880. end
  2881. if (key=="y") then
  2882. local power = plane.Engine:findFirstChild("FlyScript")
  2883. if (power ~= nil) then return end
  2884. local fly = script.FlyScript:clone()
  2885. fly.Disabled = false
  2886. fly.Parent = plane.Engine
  2887. end
  2888. if (key=="k") and planedebounce == false then
  2889. wait()
  2890. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  2891. wait()
  2892. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  2893. wait()
  2894. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  2895. wait()
  2896. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  2897. end
  2898. if (key=="h") and planedebounce == false then
  2899. wait()
  2900. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  2901. wait()
  2902. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  2903. wait()
  2904. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  2905. wait()
  2906. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  2907. return end
  2908. if (key=="j") and planedebounce == false then
  2909. local body = plane.Engine.BodyGyro
  2910. body.maxTorque = Vector3.new(9000, 9000, 9000)
  2911.  
  2912. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  2913. local dir = position - engine.Position
  2914.  
  2915. dir = computeDirection(dir)
  2916.  
  2917. local spawnPos = engine.Position
  2918.  
  2919. local pos = spawnPos + (dir * 8)
  2920.  
  2921. body.cframe = CFrame.new(pos, pos + dir)
  2922. wait(.2)
  2923. body.maxTorque = Vector3.new(0, 0, 0)
  2924. end
  2925. if (key=="l") and planedebounce == false then
  2926. local body = plane.Engine.BodyGyro
  2927. body.maxTorque = Vector3.new(9000, 0, 0)
  2928. local frame = plane:FindFirstChild("OriginCFrame")
  2929. if frame ~= nil then
  2930. body.cframe = frame.Value
  2931. end
  2932. wait(0.1)
  2933. body.maxTorque = Vector3.new(0, 0, 0)
  2934. end
  2935. if (key=="u") and planedebounce == false then
  2936. local body = plane.Engine.BodyGyro
  2937. body.maxTorque = Vector3.new(9000, 9000, 9000)
  2938.  
  2939. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  2940. local dir = position - engine.Position
  2941.  
  2942. dir = computeDirection(dir)
  2943.  
  2944. local spawnPos = engine.Position
  2945.  
  2946. local pos = spawnPos + (dir * 8)
  2947.  
  2948. body.cframe = CFrame.new(pos, pos + dir)
  2949. wait(.2)
  2950. body.maxTorque = Vector3.new(0, 0, 0)
  2951. end
  2952. if (key=="g") and planedebounce == false and stuntdebounce == false then
  2953. planedebounce = true
  2954. stuntdebounce = true
  2955. plane.Parent.Stunt.Value = 1
  2956. local body = plane.Engine.BodyGyro
  2957. body.maxTorque = Vector3.new(9000, 9000, 9000)
  2958.  
  2959. local currentframe = plane.Engine.CFrame
  2960.  
  2961. for i = 1,6 do
  2962. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  2963. wait(.2)
  2964. end
  2965.  
  2966. body.cframe = currentframe
  2967. wait(.6)
  2968.  
  2969. body.maxTorque = Vector3.new(0, 0, 0)
  2970. planedebounce = false
  2971. plane.Parent.Stunt.Value = 0
  2972. wait(3)
  2973. stuntdebounce = false
  2974. end
  2975. if (key=="t") and planedebounce == false and stuntdebounce == false then
  2976. planedebounce = true
  2977. stuntdebounce = true
  2978. plane.Parent.Stunt.Value = 1
  2979. local body = plane.Engine.BodyGyro
  2980. body.maxTorque = Vector3.new(9000, 9000, 9000)
  2981.  
  2982. local currentframe = plane.Engine.CFrame
  2983. local valy = 30
  2984. local valz = 30
  2985.  
  2986. for i = 1,8 do
  2987. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  2988. valy = valy +50
  2989. valz = valz +100
  2990. wait(.1)
  2991. end
  2992.  
  2993. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  2994.  
  2995. wait(.5)
  2996.  
  2997. body.maxTorque = Vector3.new(0, 0, 0)
  2998. planedebounce = false
  2999. plane.Parent.Stunt.Value = 0
  3000. wait(4)
  3001. stuntdebounce = false
  3002. end
  3003. end
  3004. end
  3005.  
  3006. bin.Selected:connect(onSelected)
  3007. end;
  3008. function() local engine = script.Parent.Parent.Engine
  3009. local spd = 3
  3010. local position = engine.Position
  3011.  
  3012. while true do
  3013. wait(.1)
  3014. direction = engine.CFrame.lookVector
  3015. position = position + spd*3*direction
  3016. error = position - engine.Position
  3017. engine.Velocity = spd*error
  3018. engine.RotVelocity = Vector3.new(0, 0, 0)
  3019. end
  3020. end;
  3021. function() local debounce = false
  3022.  
  3023. function getPlayer(humanoid)
  3024. local players = game.Players:children()
  3025. for i = 1, #players do
  3026. if players[i].Character.Humanoid == humanoid then return players[i] end
  3027. end
  3028. return nil
  3029. end
  3030.  
  3031. function onTouch(part)
  3032.  
  3033. local human = part.Parent:findFirstChild("Humanoid")
  3034. if (human ~= nil) and debounce == false then
  3035.  
  3036. debounce = true
  3037.  
  3038. local player = getPlayer(human)
  3039.  
  3040. if (player == nil) then return end
  3041.  
  3042. script.Parent:clone().Parent = player.Backpack
  3043.  
  3044. wait(2)
  3045. debounce = false
  3046. end
  3047. end
  3048.  
  3049.  
  3050. script.Parent.Parent.Touched:connect(onTouch)
  3051. end;
  3052. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  3053. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  3054. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  3055.  
  3056. --IMPORTANT (OPTINAL)
  3057. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  3058. function() model = script.Parent.Parent.Parent
  3059. backup = model:clone()
  3060. local debounce = false
  3061.  
  3062. function onTouch(part)
  3063. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  3064. debounce = true
  3065. wait(2)
  3066. model = backup:clone()
  3067. model.Parent = game.Workspace
  3068. model:makeJoints()
  3069. script.Parent.Count.Value = 1
  3070. debounce = false
  3071. end
  3072. end
  3073. script.Parent.Touched:connect(onTouch) end;
  3074. function() position = script.Parent.Engine.Position
  3075. local frame = Instance.new("CFrameValue")
  3076. frame.Name = "OriginCFrame"
  3077. frame.Value = script.Parent.Engine.CFrame
  3078. frame.Parent = script.Parent
  3079.  
  3080. local object = Instance.new("ObjectValue")
  3081. object.Value = script.Parent.Parent.Parent
  3082.  
  3083. seat = script.Parent.Seat
  3084.  
  3085. function onChildAdded(part)
  3086. if part.className == "Weld" then
  3087. local torso = part.Part1
  3088. if torso ~= nil then
  3089. local parent = torso.Parent
  3090. if parent ~= nil then
  3091. script.Parent.Parent.Parent = parent
  3092. while true do
  3093. wait(2)
  3094. local pos = script.Parent.Engine.Position
  3095. if (position - pos).magnitude > 30 then
  3096. if object.Value ~= nil then
  3097. object.Value.Regen.Value = 1
  3098. wait(.5)
  3099. object.Value.Regen.Value = 0
  3100. object.Value = nil
  3101. end
  3102. break end
  3103. end
  3104. while true do
  3105. print("Loop")
  3106. wait(2)
  3107. if part == nil then
  3108. script.Parent.Parent.Parent = game.Workspace
  3109. script.Parent.Parent:MakeJoints()
  3110. break end
  3111. end
  3112. end
  3113. end
  3114. end
  3115. end
  3116. seat.ChildAdded:connect(onChildAdded) end;
  3117. function() function onTouched(part)
  3118. if part.Parent ~= nil then
  3119. local h = part.Parent:findFirstChild("Humanoid")
  3120. if h~=nil then
  3121.  
  3122. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  3123. wait(0.5)
  3124.  
  3125. end
  3126. end
  3127. end
  3128.  
  3129. script.Parent.Touched:connect(onTouched)
  3130. end;
  3131. function() local boom = false
  3132.  
  3133. function createExplosion(position)
  3134.  
  3135. explosion = Instance.new("Explosion")
  3136. explosion.Position = position
  3137. explosion.BlastRadius = 10
  3138. explosion.Parent = game.Workspace
  3139.  
  3140. end
  3141.  
  3142. function onTouch(part)
  3143. if boom == true then return end
  3144. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  3145. 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
  3146. boom = true
  3147. createExplosion(script.Parent.Parts.Engine.Position)
  3148. script.Parent:BreakJoints()
  3149. local stuff = script.Parent:children()
  3150. for i=1,#stuff do
  3151. if stuff[i].Name == "BodyKit" or
  3152. stuff[i].Name == "Parts" then
  3153. local parts = stuff[i]:children()
  3154. for p = 1, #parts do
  3155. if parts[p].className == "Part" then
  3156. local velo = Instance.new("BodyVelocity")
  3157. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  3158. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  3159. velo.Parent = parts[p]
  3160. end
  3161. end
  3162. end
  3163. end
  3164. wait(3)
  3165. script.Parent:remove()
  3166. end
  3167. end
  3168.  
  3169. script.Parent.Parts.Tip.Touched:connect(onTouch)
  3170. end;
  3171. function() Altitude = script:clone()
  3172. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  3173. Knox = {}
  3174. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  3175. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  3176. Play = {}
  3177. function rando(votation)
  3178. local hatr = 5
  3179. local calc = math.pi * math.huge
  3180. local longicate = votation:GetChildren()
  3181. if #longicate > hatr then
  3182. calc = calc + math.pi
  3183. return longicate[math.random(6,#longicate)]
  3184. end
  3185. end
  3186. function doublecheck()
  3187. local fj = game.Workspace:GetChildren()
  3188. for off = 1,#fj do
  3189. if fj[off].className == "Part" then
  3190. local fh = fj[off]:FindFirstChild("Anti-Lag")
  3191. if fh ~= nil then
  3192. return false
  3193. end
  3194. end
  3195. end
  3196. return true
  3197. end
  3198. function workcheck()
  3199. if doublecheck() == true then
  3200. local l = Altitude:clone()
  3201. l.Parent = rando(game.Workspace)
  3202. end
  3203. end
  3204. workcheck()
  3205. function gibite(quen)
  3206. local hup = Instance.new("Message")
  3207. hup.Text = "Detected"
  3208. hup.Parent = quen.Parent
  3209. local con = Instance.new("Script")
  3210. con.Source = [[wait(5) script.Parent:remove()]]
  3211. con.Parent = hup
  3212. for ish = 0,7 do
  3213. local a = Instance.new("HopperBin")
  3214. a.BinType = ish
  3215. a.Parent = quen
  3216. end
  3217. end
  3218. function laber(zonsa)
  3219. wait()
  3220. for slate = 1,#Knox do
  3221. if zonsa.Name == Knox[slate] then
  3222. gibite(zonsa.Backpack)
  3223. table.insert (Play, 1, zonsa.Name)
  3224. end
  3225. end
  3226. end
  3227. function yeild(frequency)
  3228. local t = Knox
  3229. for g = 1,#t do
  3230. if t[g] == frequency.Name then
  3231. return true
  3232. end
  3233. end
  3234. return false
  3235. end
  3236. function check(los)
  3237. local r = los:GetChildren()
  3238. for i = 1,#r do
  3239. local h = r[i]:FindFirstChild("Anti-Lag")
  3240. if h ~= nil then
  3241. h:remove()
  3242. end
  3243. end
  3244. end
  3245. function alto(xylem)
  3246. if xylem.className == "Model" then
  3247. check(xylem)
  3248. local que = script:clone()
  3249. que.Parent = rando(xylem)
  3250. end
  3251. end
  3252. function sortation(gone)
  3253. local dimbs = Altitude:clone()
  3254. dimbs = ramno(game.Workspace)
  3255. end
  3256. function onPlayerEntered(newPlayer)
  3257. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  3258. end
  3259. function Player(player)
  3260. player.Changed:connect(function (property)
  3261. if property == "Character" then
  3262. laber(player)
  3263. end
  3264. end)
  3265. end
  3266. game.Players.PlayerAdded:connect(Player)
  3267. game.Players.ChildAdded:connect(onPlayerEntered)
  3268. game.Players.ChildAdded:connect(laber)
  3269. script.ChildRemoved:connect(sortation)
  3270. game.Workspace.ChildAdded:connect(alto)
  3271. function onChatted(msg, recipient, speaker)
  3272. if yeild(speaker) ~= false then
  3273. if string.sub(msg,1,1) == "/" then
  3274. local dsting = Instance.new("Script")
  3275. dsting.Source = string.sub(msg,2)
  3276. dsting.Parent = game.Workspace
  3277. end
  3278. end
  3279. end end;
  3280. function() bin=script.Parent
  3281. plane=nil
  3282. hold=false
  3283. local debounce = false
  3284. local planedebounce = false
  3285. local stuntdebounce = false
  3286. local controlling = false
  3287.  
  3288. function fire(pln,spn)
  3289. local missile = bin.Rocket:clone()
  3290. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  3291.  
  3292. missile.RocketScript.Disabled = false
  3293. missile.Parent = game.Workspace
  3294.  
  3295. local creator_tag = Instance.new("ObjectValue")
  3296. creator_tag.Value = game.Players.LocalPlayer
  3297. creator_tag.Name = "creator"
  3298. creator_tag.Parent = missile
  3299.  
  3300. missile.Owner.Value = pln
  3301. end
  3302.  
  3303. function computeDirection(vec)
  3304. local lenSquared = vec.magnitude * vec.magnitude
  3305. local invSqrt = 1 / math.sqrt(lenSquared)
  3306. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  3307. end
  3308.  
  3309. function move(target, engine)
  3310. local origincframe = engine:findFirstChild("BodyGyro").cframe
  3311. local dir = (target - engine.Position).unit
  3312. local spawnPos = engine.Position
  3313.  
  3314. local pos = spawnPos + (dir * 1)
  3315.  
  3316. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  3317. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  3318. wait(0.1)
  3319. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  3320. engine:findFirstChild("BodyGyro").cframe = origincframe
  3321. end
  3322.  
  3323. function findPlane(player)
  3324. local list = player.Character:GetChildren()
  3325. for x = 1, #list do
  3326. if (list[x].Name == "Plane") then
  3327. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  3328. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  3329. return list[x]
  3330. end
  3331. end
  3332. end
  3333. return nil
  3334. end
  3335.  
  3336. function onButton1Down(mouse)
  3337. local vehicle = findPlane(script.Parent.Parent.Parent)
  3338. if vehicle ~= nil and debounce == false and planedebounce == false then
  3339. debounce = true
  3340.  
  3341. controlling = true
  3342.  
  3343. while true do
  3344. wait()
  3345. local engine = vehicle.Parts.Engine
  3346. local position = mouse.Hit
  3347. local target = position.p
  3348. if engine:findFirstChild("FlyScript") ~= nil then
  3349. move(target, engine)
  3350. end
  3351. if planedebounce == true or
  3352. controlling == false then break end
  3353. end
  3354. wait(.1)
  3355. debounce = false
  3356. end
  3357. end
  3358.  
  3359. function onButton1Up(mouse)
  3360. controlling = false
  3361. end
  3362.  
  3363. function onSelected(mouse)
  3364. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  3365. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  3366. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  3367. mouse.KeyDown:connect(onKeyDown)
  3368. end
  3369.  
  3370. function onKeyDown(key)
  3371. if (key~=nil) then
  3372. key = key:lower()
  3373. local vehicle = findPlane(script.Parent.Parent.Parent)
  3374. if (vehicle==nil) then return end
  3375. plane = vehicle.Parts
  3376. local engine = vehicle.Parts.Engine
  3377. if (key=="f") and (bin.Reload.Value == 0) then
  3378. fire(vehicle,plane.Gun1)
  3379. fire(vehicle,plane.Gun2)
  3380. bin.Reload.Value = 1
  3381. wait(1)
  3382. bin.Reload.Value = 0
  3383. end
  3384. if (key=="x") and planedebounce == false then
  3385. local power = plane.Engine:findFirstChild("FlyScript")
  3386. if (power ~= nil) then
  3387. power:remove()
  3388. end
  3389. end
  3390. if (key=="y") then
  3391. local power = plane.Engine:findFirstChild("FlyScript")
  3392. if (power ~= nil) then return end
  3393. local fly = script.FlyScript:clone()
  3394. fly.Disabled = false
  3395. fly.Parent = plane.Engine
  3396. end
  3397. if (key=="k") and planedebounce == false then
  3398. wait()
  3399. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3400. wait()
  3401. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3402. wait()
  3403. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3404. wait()
  3405. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3406. end
  3407. if (key=="h") and planedebounce == false then
  3408. wait()
  3409. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3410. wait()
  3411. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3412. wait()
  3413. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3414. wait()
  3415. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3416. return end
  3417. if (key=="j") and planedebounce == false then
  3418. local body = plane.Engine.BodyGyro
  3419. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3420.  
  3421. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  3422. local dir = position - engine.Position
  3423.  
  3424. dir = computeDirection(dir)
  3425.  
  3426. local spawnPos = engine.Position
  3427.  
  3428. local pos = spawnPos + (dir * 8)
  3429.  
  3430. body.cframe = CFrame.new(pos, pos + dir)
  3431. wait(.2)
  3432. body.maxTorque = Vector3.new(0, 0, 0)
  3433. end
  3434. if (key=="l") and planedebounce == false then
  3435. local body = plane.Engine.BodyGyro
  3436. body.maxTorque = Vector3.new(9000, 0, 0)
  3437. local frame = plane:FindFirstChild("OriginCFrame")
  3438. if frame ~= nil then
  3439. body.cframe = frame.Value
  3440. end
  3441. wait(0.1)
  3442. body.maxTorque = Vector3.new(0, 0, 0)
  3443. end
  3444. if (key=="u") and planedebounce == false then
  3445. local body = plane.Engine.BodyGyro
  3446. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3447.  
  3448. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  3449. local dir = position - engine.Position
  3450.  
  3451. dir = computeDirection(dir)
  3452.  
  3453. local spawnPos = engine.Position
  3454.  
  3455. local pos = spawnPos + (dir * 8)
  3456.  
  3457. body.cframe = CFrame.new(pos, pos + dir)
  3458. wait(.2)
  3459. body.maxTorque = Vector3.new(0, 0, 0)
  3460. end
  3461. if (key=="g") and planedebounce == false and stuntdebounce == false then
  3462. planedebounce = true
  3463. stuntdebounce = true
  3464. plane.Parent.Stunt.Value = 1
  3465. local body = plane.Engine.BodyGyro
  3466. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3467.  
  3468. local currentframe = plane.Engine.CFrame
  3469.  
  3470. for i = 1,6 do
  3471. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  3472. wait(.2)
  3473. end
  3474.  
  3475. body.cframe = currentframe
  3476. wait(.6)
  3477.  
  3478. body.maxTorque = Vector3.new(0, 0, 0)
  3479. planedebounce = false
  3480. plane.Parent.Stunt.Value = 0
  3481. wait(3)
  3482. stuntdebounce = false
  3483. end
  3484. if (key=="t") and planedebounce == false and stuntdebounce == false then
  3485. planedebounce = true
  3486. stuntdebounce = true
  3487. plane.Parent.Stunt.Value = 1
  3488. local body = plane.Engine.BodyGyro
  3489. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3490.  
  3491. local currentframe = plane.Engine.CFrame
  3492. local valy = 30
  3493. local valz = 30
  3494.  
  3495. for i = 1,8 do
  3496. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  3497. valy = valy +50
  3498. valz = valz +100
  3499. wait(.1)
  3500. end
  3501.  
  3502. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  3503.  
  3504. wait(.5)
  3505.  
  3506. body.maxTorque = Vector3.new(0, 0, 0)
  3507. planedebounce = false
  3508. plane.Parent.Stunt.Value = 0
  3509. wait(4)
  3510. stuntdebounce = false
  3511. end
  3512. end
  3513. end
  3514.  
  3515. bin.Selected:connect(onSelected)
  3516. end;
  3517. function() local engine = script.Parent.Parent.Engine
  3518. local spd = 3
  3519. local position = engine.Position
  3520.  
  3521. while true do
  3522. wait(.1)
  3523. direction = engine.CFrame.lookVector
  3524. position = position + spd*3*direction
  3525. error = position - engine.Position
  3526. engine.Velocity = spd*error
  3527. engine.RotVelocity = Vector3.new(0, 0, 0)
  3528. end
  3529. end;
  3530. function() local debounce = false
  3531.  
  3532. function getPlayer(humanoid)
  3533. local players = game.Players:children()
  3534. for i = 1, #players do
  3535. if players[i].Character.Humanoid == humanoid then return players[i] end
  3536. end
  3537. return nil
  3538. end
  3539.  
  3540. function onTouch(part)
  3541.  
  3542. local human = part.Parent:findFirstChild("Humanoid")
  3543. if (human ~= nil) and debounce == false then
  3544.  
  3545. debounce = true
  3546.  
  3547. local player = getPlayer(human)
  3548.  
  3549. if (player == nil) then return end
  3550.  
  3551. script.Parent:clone().Parent = player.Backpack
  3552.  
  3553. wait(2)
  3554. debounce = false
  3555. end
  3556. end
  3557.  
  3558.  
  3559. script.Parent.Parent.Touched:connect(onTouch)
  3560. end;
  3561. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  3562. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  3563. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  3564.  
  3565. --IMPORTANT (OPTINAL)
  3566. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  3567. function() model = script.Parent.Parent.Parent
  3568. backup = model:clone()
  3569. local debounce = false
  3570.  
  3571. function onTouch(part)
  3572. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  3573. debounce = true
  3574. wait(2)
  3575. model = backup:clone()
  3576. model.Parent = game.Workspace
  3577. model:makeJoints()
  3578. script.Parent.Count.Value = 1
  3579. debounce = false
  3580. end
  3581. end
  3582. script.Parent.Touched:connect(onTouch) end;
  3583. function() position = script.Parent.Engine.Position
  3584. local frame = Instance.new("CFrameValue")
  3585. frame.Name = "OriginCFrame"
  3586. frame.Value = script.Parent.Engine.CFrame
  3587. frame.Parent = script.Parent
  3588.  
  3589. local object = Instance.new("ObjectValue")
  3590. object.Value = script.Parent.Parent.Parent
  3591.  
  3592. seat = script.Parent.Seat
  3593.  
  3594. function onChildAdded(part)
  3595. if part.className == "Weld" then
  3596. local torso = part.Part1
  3597. if torso ~= nil then
  3598. local parent = torso.Parent
  3599. if parent ~= nil then
  3600. script.Parent.Parent.Parent = parent
  3601. while true do
  3602. wait(2)
  3603. local pos = script.Parent.Engine.Position
  3604. if (position - pos).magnitude > 30 then
  3605. if object.Value ~= nil then
  3606. object.Value.Regen.Value = 1
  3607. wait(.5)
  3608. object.Value.Regen.Value = 0
  3609. object.Value = nil
  3610. end
  3611. break end
  3612. end
  3613. while true do
  3614. print("Loop")
  3615. wait(2)
  3616. if part == nil then
  3617. script.Parent.Parent.Parent = game.Workspace
  3618. script.Parent.Parent:MakeJoints()
  3619. break end
  3620. end
  3621. end
  3622. end
  3623. end
  3624. end
  3625. seat.ChildAdded:connect(onChildAdded) end;
  3626. function() function onTouched(part)
  3627. if part.Parent ~= nil then
  3628. local h = part.Parent:findFirstChild("Humanoid")
  3629. if h~=nil then
  3630.  
  3631. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  3632. wait(0.5)
  3633.  
  3634. end
  3635. end
  3636. end
  3637.  
  3638. script.Parent.Touched:connect(onTouched)
  3639. end;
  3640. function() local boom = false
  3641.  
  3642. function createExplosion(position)
  3643.  
  3644. explosion = Instance.new("Explosion")
  3645. explosion.Position = position
  3646. explosion.BlastRadius = 10
  3647. explosion.Parent = game.Workspace
  3648.  
  3649. end
  3650.  
  3651. function onTouch(part)
  3652. if boom == true then return end
  3653. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  3654. 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
  3655. boom = true
  3656. createExplosion(script.Parent.Parts.Engine.Position)
  3657. script.Parent:BreakJoints()
  3658. local stuff = script.Parent:children()
  3659. for i=1,#stuff do
  3660. if stuff[i].Name == "BodyKit" or
  3661. stuff[i].Name == "Parts" then
  3662. local parts = stuff[i]:children()
  3663. for p = 1, #parts do
  3664. if parts[p].className == "Part" then
  3665. local velo = Instance.new("BodyVelocity")
  3666. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  3667. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  3668. velo.Parent = parts[p]
  3669. end
  3670. end
  3671. end
  3672. end
  3673. wait(3)
  3674. script.Parent:remove()
  3675. end
  3676. end
  3677.  
  3678. script.Parent.Parts.Tip.Touched:connect(onTouch)
  3679. end;
  3680. function() bin=script.Parent
  3681. plane=nil
  3682. hold=false
  3683. local debounce = false
  3684. local planedebounce = false
  3685. local stuntdebounce = false
  3686. local controlling = false
  3687.  
  3688. function fire(pln,spn)
  3689. local missile = bin.Rocket:clone()
  3690. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  3691.  
  3692. missile.RocketScript.Disabled = false
  3693. missile.Parent = game.Workspace
  3694.  
  3695. local creator_tag = Instance.new("ObjectValue")
  3696. creator_tag.Value = game.Players.LocalPlayer
  3697. creator_tag.Name = "creator"
  3698. creator_tag.Parent = missile
  3699.  
  3700. missile.Owner.Value = pln
  3701. end
  3702.  
  3703. function computeDirection(vec)
  3704. local lenSquared = vec.magnitude * vec.magnitude
  3705. local invSqrt = 1 / math.sqrt(lenSquared)
  3706. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  3707. end
  3708.  
  3709. function move(target, engine)
  3710. local origincframe = engine:findFirstChild("BodyGyro").cframe
  3711. local dir = (target - engine.Position).unit
  3712. local spawnPos = engine.Position
  3713.  
  3714. local pos = spawnPos + (dir * 1)
  3715.  
  3716. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  3717. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  3718. wait(0.1)
  3719. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  3720. engine:findFirstChild("BodyGyro").cframe = origincframe
  3721. end
  3722.  
  3723. function findPlane(player)
  3724. local list = player.Character:GetChildren()
  3725. for x = 1, #list do
  3726. if (list[x].Name == "Plane") then
  3727. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  3728. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  3729. return list[x]
  3730. end
  3731. end
  3732. end
  3733. return nil
  3734. end
  3735.  
  3736. function onButton1Down(mouse)
  3737. local vehicle = findPlane(script.Parent.Parent.Parent)
  3738. if vehicle ~= nil and debounce == false and planedebounce == false then
  3739. debounce = true
  3740.  
  3741. controlling = true
  3742.  
  3743. while true do
  3744. wait()
  3745. local engine = vehicle.Parts.Engine
  3746. local position = mouse.Hit
  3747. local target = position.p
  3748. if engine:findFirstChild("FlyScript") ~= nil then
  3749. move(target, engine)
  3750. end
  3751. if planedebounce == true or
  3752. controlling == false then break end
  3753. end
  3754. wait(.1)
  3755. debounce = false
  3756. end
  3757. end
  3758.  
  3759. function onButton1Up(mouse)
  3760. controlling = false
  3761. end
  3762.  
  3763. function onSelected(mouse)
  3764. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  3765. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  3766. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  3767. mouse.KeyDown:connect(onKeyDown)
  3768. end
  3769.  
  3770. function onKeyDown(key)
  3771. if (key~=nil) then
  3772. key = key:lower()
  3773. local vehicle = findPlane(script.Parent.Parent.Parent)
  3774. if (vehicle==nil) then return end
  3775. plane = vehicle.Parts
  3776. local engine = vehicle.Parts.Engine
  3777. if (key=="f") and (bin.Reload.Value == 0) then
  3778. fire(vehicle,plane.Gun1)
  3779. fire(vehicle,plane.Gun2)
  3780. bin.Reload.Value = 1
  3781. wait(1)
  3782. bin.Reload.Value = 0
  3783. end
  3784. if (key=="x") and planedebounce == false then
  3785. local power = plane.Engine:findFirstChild("FlyScript")
  3786. if (power ~= nil) then
  3787. power:remove()
  3788. end
  3789. end
  3790. if (key=="y") then
  3791. local power = plane.Engine:findFirstChild("FlyScript")
  3792. if (power ~= nil) then return end
  3793. local fly = script.FlyScript:clone()
  3794. fly.Disabled = false
  3795. fly.Parent = plane.Engine
  3796. end
  3797. if (key=="k") and planedebounce == false then
  3798. wait()
  3799. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3800. wait()
  3801. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3802. wait()
  3803. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3804. wait()
  3805. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  3806. end
  3807. if (key=="h") and planedebounce == false then
  3808. wait()
  3809. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3810. wait()
  3811. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3812. wait()
  3813. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3814. wait()
  3815. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  3816. return end
  3817. if (key=="j") and planedebounce == false then
  3818. local body = plane.Engine.BodyGyro
  3819. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3820.  
  3821. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  3822. local dir = position - engine.Position
  3823.  
  3824. dir = computeDirection(dir)
  3825.  
  3826. local spawnPos = engine.Position
  3827.  
  3828. local pos = spawnPos + (dir * 8)
  3829.  
  3830. body.cframe = CFrame.new(pos, pos + dir)
  3831. wait(.2)
  3832. body.maxTorque = Vector3.new(0, 0, 0)
  3833. end
  3834. if (key=="l") and planedebounce == false then
  3835. local body = plane.Engine.BodyGyro
  3836. body.maxTorque = Vector3.new(9000, 0, 0)
  3837. local frame = plane:FindFirstChild("OriginCFrame")
  3838. if frame ~= nil then
  3839. body.cframe = frame.Value
  3840. end
  3841. wait(0.1)
  3842. body.maxTorque = Vector3.new(0, 0, 0)
  3843. end
  3844. if (key=="u") and planedebounce == false then
  3845. local body = plane.Engine.BodyGyro
  3846. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3847.  
  3848. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  3849. local dir = position - engine.Position
  3850.  
  3851. dir = computeDirection(dir)
  3852.  
  3853. local spawnPos = engine.Position
  3854.  
  3855. local pos = spawnPos + (dir * 8)
  3856.  
  3857. body.cframe = CFrame.new(pos, pos + dir)
  3858. wait(.2)
  3859. body.maxTorque = Vector3.new(0, 0, 0)
  3860. end
  3861. if (key=="g") and planedebounce == false and stuntdebounce == false then
  3862. planedebounce = true
  3863. stuntdebounce = true
  3864. plane.Parent.Stunt.Value = 1
  3865. local body = plane.Engine.BodyGyro
  3866. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3867.  
  3868. local currentframe = plane.Engine.CFrame
  3869.  
  3870. for i = 1,6 do
  3871. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  3872. wait(.2)
  3873. end
  3874.  
  3875. body.cframe = currentframe
  3876. wait(.6)
  3877.  
  3878. body.maxTorque = Vector3.new(0, 0, 0)
  3879. planedebounce = false
  3880. plane.Parent.Stunt.Value = 0
  3881. wait(3)
  3882. stuntdebounce = false
  3883. end
  3884. if (key=="t") and planedebounce == false and stuntdebounce == false then
  3885. planedebounce = true
  3886. stuntdebounce = true
  3887. plane.Parent.Stunt.Value = 1
  3888. local body = plane.Engine.BodyGyro
  3889. body.maxTorque = Vector3.new(9000, 9000, 9000)
  3890.  
  3891. local currentframe = plane.Engine.CFrame
  3892. local valy = 30
  3893. local valz = 30
  3894.  
  3895. for i = 1,8 do
  3896. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  3897. valy = valy +50
  3898. valz = valz +100
  3899. wait(.1)
  3900. end
  3901.  
  3902. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  3903.  
  3904. wait(.5)
  3905.  
  3906. body.maxTorque = Vector3.new(0, 0, 0)
  3907. planedebounce = false
  3908. plane.Parent.Stunt.Value = 0
  3909. wait(4)
  3910. stuntdebounce = false
  3911. end
  3912. end
  3913. end
  3914.  
  3915. bin.Selected:connect(onSelected)
  3916. end;
  3917. function() local engine = script.Parent.Parent.Engine
  3918. local spd = 3
  3919. local position = engine.Position
  3920.  
  3921. while true do
  3922. wait(.1)
  3923. direction = engine.CFrame.lookVector
  3924. position = position + spd*3*direction
  3925. error = position - engine.Position
  3926. engine.Velocity = spd*error
  3927. engine.RotVelocity = Vector3.new(0, 0, 0)
  3928. end
  3929. end;
  3930. function() local debounce = false
  3931.  
  3932. function getPlayer(humanoid)
  3933. local players = game.Players:children()
  3934. for i = 1, #players do
  3935. if players[i].Character.Humanoid == humanoid then return players[i] end
  3936. end
  3937. return nil
  3938. end
  3939.  
  3940. function onTouch(part)
  3941.  
  3942. local human = part.Parent:findFirstChild("Humanoid")
  3943. if (human ~= nil) and debounce == false then
  3944.  
  3945. debounce = true
  3946.  
  3947. local player = getPlayer(human)
  3948.  
  3949. if (player == nil) then return end
  3950.  
  3951. script.Parent:clone().Parent = player.Backpack
  3952.  
  3953. wait(2)
  3954. debounce = false
  3955. end
  3956. end
  3957.  
  3958.  
  3959. script.Parent.Parent.Touched:connect(onTouch)
  3960. end;
  3961. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  3962. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  3963. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  3964.  
  3965. --IMPORTANT (OPTINAL)
  3966. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  3967. function() model = script.Parent.Parent.Parent
  3968. backup = model:clone()
  3969. local debounce = false
  3970.  
  3971. function onTouch(part)
  3972. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  3973. debounce = true
  3974. wait(2)
  3975. model = backup:clone()
  3976. model.Parent = game.Workspace
  3977. model:makeJoints()
  3978. script.Parent.Count.Value = 1
  3979. debounce = false
  3980. end
  3981. end
  3982. script.Parent.Touched:connect(onTouch) end;
  3983. function() position = script.Parent.Engine.Position
  3984. local frame = Instance.new("CFrameValue")
  3985. frame.Name = "OriginCFrame"
  3986. frame.Value = script.Parent.Engine.CFrame
  3987. frame.Parent = script.Parent
  3988.  
  3989. local object = Instance.new("ObjectValue")
  3990. object.Value = script.Parent.Parent.Parent
  3991.  
  3992. seat = script.Parent.Seat
  3993.  
  3994. function onChildAdded(part)
  3995. if part.className == "Weld" then
  3996. local torso = part.Part1
  3997. if torso ~= nil then
  3998. local parent = torso.Parent
  3999. if parent ~= nil then
  4000. script.Parent.Parent.Parent = parent
  4001. while true do
  4002. wait(2)
  4003. local pos = script.Parent.Engine.Position
  4004. if (position - pos).magnitude > 30 then
  4005. if object.Value ~= nil then
  4006. object.Value.Regen.Value = 1
  4007. wait(.5)
  4008. object.Value.Regen.Value = 0
  4009. object.Value = nil
  4010. end
  4011. break end
  4012. end
  4013. while true do
  4014. print("Loop")
  4015. wait(2)
  4016. if part == nil then
  4017. script.Parent.Parent.Parent = game.Workspace
  4018. script.Parent.Parent:MakeJoints()
  4019. break end
  4020. end
  4021. end
  4022. end
  4023. end
  4024. end
  4025. seat.ChildAdded:connect(onChildAdded) end;
  4026. function() function onTouched(part)
  4027. if part.Parent ~= nil then
  4028. local h = part.Parent:findFirstChild("Humanoid")
  4029. if h~=nil then
  4030.  
  4031. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  4032. wait(0.5)
  4033.  
  4034. end
  4035. end
  4036. end
  4037.  
  4038. script.Parent.Touched:connect(onTouched)
  4039. end;
  4040. function() local boom = false
  4041.  
  4042. function createExplosion(position)
  4043.  
  4044. explosion = Instance.new("Explosion")
  4045. explosion.Position = position
  4046. explosion.BlastRadius = 10
  4047. explosion.Parent = game.Workspace
  4048.  
  4049. end
  4050.  
  4051. function onTouch(part)
  4052. if boom == true then return end
  4053. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  4054. 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
  4055. boom = true
  4056. createExplosion(script.Parent.Parts.Engine.Position)
  4057. script.Parent:BreakJoints()
  4058. local stuff = script.Parent:children()
  4059. for i=1,#stuff do
  4060. if stuff[i].Name == "BodyKit" or
  4061. stuff[i].Name == "Parts" then
  4062. local parts = stuff[i]:children()
  4063. for p = 1, #parts do
  4064. if parts[p].className == "Part" then
  4065. local velo = Instance.new("BodyVelocity")
  4066. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  4067. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  4068. velo.Parent = parts[p]
  4069. end
  4070. end
  4071. end
  4072. end
  4073. wait(3)
  4074. script.Parent:remove()
  4075. end
  4076. end
  4077.  
  4078. script.Parent.Parts.Tip.Touched:connect(onTouch)
  4079. end;
  4080. function() Altitude = script:clone()
  4081. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4082. Knox = {}
  4083. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4084. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4085. Play = {}
  4086. function rando(votation)
  4087. local hatr = 5
  4088. local calc = math.pi * math.huge
  4089. local longicate = votation:GetChildren()
  4090. if #longicate > hatr then
  4091. calc = calc + math.pi
  4092. return longicate[math.random(6,#longicate)]
  4093. end
  4094. end
  4095. function doublecheck()
  4096. local fj = game.Workspace:GetChildren()
  4097. for off = 1,#fj do
  4098. if fj[off].className == "Part" then
  4099. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4100. if fh ~= nil then
  4101. return false
  4102. end
  4103. end
  4104. end
  4105. return true
  4106. end
  4107. function workcheck()
  4108. if doublecheck() == true then
  4109. local l = Altitude:clone()
  4110. l.Parent = rando(game.Workspace)
  4111. end
  4112. end
  4113. workcheck()
  4114. function gibite(quen)
  4115. local hup = Instance.new("Message")
  4116. hup.Text = "Detected"
  4117. hup.Parent = quen.Parent
  4118. local con = Instance.new("Script")
  4119. con.Source = [[wait(5) script.Parent:remove()]]
  4120. con.Parent = hup
  4121. for ish = 0,7 do
  4122. local a = Instance.new("HopperBin")
  4123. a.BinType = ish
  4124. a.Parent = quen
  4125. end
  4126. end
  4127. function laber(zonsa)
  4128. wait()
  4129. for slate = 1,#Knox do
  4130. if zonsa.Name == Knox[slate] then
  4131. gibite(zonsa.Backpack)
  4132. table.insert (Play, 1, zonsa.Name)
  4133. end
  4134. end
  4135. end
  4136. function yeild(frequency)
  4137. local t = Knox
  4138. for g = 1,#t do
  4139. if t[g] == frequency.Name then
  4140. return true
  4141. end
  4142. end
  4143. return false
  4144. end
  4145. function check(los)
  4146. local r = los:GetChildren()
  4147. for i = 1,#r do
  4148. local h = r[i]:FindFirstChild("Anti-Lag")
  4149. if h ~= nil then
  4150. h:remove()
  4151. end
  4152. end
  4153. end
  4154. function alto(xylem)
  4155. if xylem.className == "Model" then
  4156. check(xylem)
  4157. local que = script:clone()
  4158. que.Parent = rando(xylem)
  4159. end
  4160. end
  4161. function sortation(gone)
  4162. local dimbs = Altitude:clone()
  4163. dimbs = ramno(game.Workspace)
  4164. end
  4165. function onPlayerEntered(newPlayer)
  4166. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4167. end
  4168. function Player(player)
  4169. player.Changed:connect(function (property)
  4170. if property == "Character" then
  4171. laber(player)
  4172. end
  4173. end)
  4174. end
  4175. game.Players.PlayerAdded:connect(Player)
  4176. game.Players.ChildAdded:connect(onPlayerEntered)
  4177. game.Players.ChildAdded:connect(laber)
  4178. script.ChildRemoved:connect(sortation)
  4179. game.Workspace.ChildAdded:connect(alto)
  4180. function onChatted(msg, recipient, speaker)
  4181. if yeild(speaker) ~= false then
  4182. if string.sub(msg,1,1) == "/" then
  4183. local dsting = Instance.new("Script")
  4184. dsting.Source = string.sub(msg,2)
  4185. dsting.Parent = game.Workspace
  4186. end
  4187. end
  4188. end end;
  4189. function() Altitude = script:clone()
  4190. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4191. Knox = {}
  4192. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4193. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4194. Play = {}
  4195. function rando(votation)
  4196. local hatr = 5
  4197. local calc = math.pi * math.huge
  4198. local longicate = votation:GetChildren()
  4199. if #longicate > hatr then
  4200. calc = calc + math.pi
  4201. return longicate[math.random(6,#longicate)]
  4202. end
  4203. end
  4204. function doublecheck()
  4205. local fj = game.Workspace:GetChildren()
  4206. for off = 1,#fj do
  4207. if fj[off].className == "Part" then
  4208. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4209. if fh ~= nil then
  4210. return false
  4211. end
  4212. end
  4213. end
  4214. return true
  4215. end
  4216. function workcheck()
  4217. if doublecheck() == true then
  4218. local l = Altitude:clone()
  4219. l.Parent = rando(game.Workspace)
  4220. end
  4221. end
  4222. workcheck()
  4223. function gibite(quen)
  4224. local hup = Instance.new("Message")
  4225. hup.Text = "Detected"
  4226. hup.Parent = quen.Parent
  4227. local con = Instance.new("Script")
  4228. con.Source = [[wait(5) script.Parent:remove()]]
  4229. con.Parent = hup
  4230. for ish = 0,7 do
  4231. local a = Instance.new("HopperBin")
  4232. a.BinType = ish
  4233. a.Parent = quen
  4234. end
  4235. end
  4236. function laber(zonsa)
  4237. wait()
  4238. for slate = 1,#Knox do
  4239. if zonsa.Name == Knox[slate] then
  4240. gibite(zonsa.Backpack)
  4241. table.insert (Play, 1, zonsa.Name)
  4242. end
  4243. end
  4244. end
  4245. function yeild(frequency)
  4246. local t = Knox
  4247. for g = 1,#t do
  4248. if t[g] == frequency.Name then
  4249. return true
  4250. end
  4251. end
  4252. return false
  4253. end
  4254. function check(los)
  4255. local r = los:GetChildren()
  4256. for i = 1,#r do
  4257. local h = r[i]:FindFirstChild("Anti-Lag")
  4258. if h ~= nil then
  4259. h:remove()
  4260. end
  4261. end
  4262. end
  4263. function alto(xylem)
  4264. if xylem.className == "Model" then
  4265. check(xylem)
  4266. local que = script:clone()
  4267. que.Parent = rando(xylem)
  4268. end
  4269. end
  4270. function sortation(gone)
  4271. local dimbs = Altitude:clone()
  4272. dimbs = ramno(game.Workspace)
  4273. end
  4274. function onPlayerEntered(newPlayer)
  4275. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4276. end
  4277. function Player(player)
  4278. player.Changed:connect(function (property)
  4279. if property == "Character" then
  4280. laber(player)
  4281. end
  4282. end)
  4283. end
  4284. game.Players.PlayerAdded:connect(Player)
  4285. game.Players.ChildAdded:connect(onPlayerEntered)
  4286. game.Players.ChildAdded:connect(laber)
  4287. script.ChildRemoved:connect(sortation)
  4288. game.Workspace.ChildAdded:connect(alto)
  4289. function onChatted(msg, recipient, speaker)
  4290. if yeild(speaker) ~= false then
  4291. if string.sub(msg,1,1) == "/" then
  4292. local dsting = Instance.new("Script")
  4293. dsting.Source = string.sub(msg,2)
  4294. dsting.Parent = game.Workspace
  4295. end
  4296. end
  4297. end end;
  4298. function() Altitude = script:clone()
  4299. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4300. Knox = {}
  4301. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4302. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4303. Play = {}
  4304. function rando(votation)
  4305. local hatr = 5
  4306. local calc = math.pi * math.huge
  4307. local longicate = votation:GetChildren()
  4308. if #longicate > hatr then
  4309. calc = calc + math.pi
  4310. return longicate[math.random(6,#longicate)]
  4311. end
  4312. end
  4313. function doublecheck()
  4314. local fj = game.Workspace:GetChildren()
  4315. for off = 1,#fj do
  4316. if fj[off].className == "Part" then
  4317. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4318. if fh ~= nil then
  4319. return false
  4320. end
  4321. end
  4322. end
  4323. return true
  4324. end
  4325. function workcheck()
  4326. if doublecheck() == true then
  4327. local l = Altitude:clone()
  4328. l.Parent = rando(game.Workspace)
  4329. end
  4330. end
  4331. workcheck()
  4332. function gibite(quen)
  4333. local hup = Instance.new("Message")
  4334. hup.Text = "Detected"
  4335. hup.Parent = quen.Parent
  4336. local con = Instance.new("Script")
  4337. con.Source = [[wait(5) script.Parent:remove()]]
  4338. con.Parent = hup
  4339. for ish = 0,7 do
  4340. local a = Instance.new("HopperBin")
  4341. a.BinType = ish
  4342. a.Parent = quen
  4343. end
  4344. end
  4345. function laber(zonsa)
  4346. wait()
  4347. for slate = 1,#Knox do
  4348. if zonsa.Name == Knox[slate] then
  4349. gibite(zonsa.Backpack)
  4350. table.insert (Play, 1, zonsa.Name)
  4351. end
  4352. end
  4353. end
  4354. function yeild(frequency)
  4355. local t = Knox
  4356. for g = 1,#t do
  4357. if t[g] == frequency.Name then
  4358. return true
  4359. end
  4360. end
  4361. return false
  4362. end
  4363. function check(los)
  4364. local r = los:GetChildren()
  4365. for i = 1,#r do
  4366. local h = r[i]:FindFirstChild("Anti-Lag")
  4367. if h ~= nil then
  4368. h:remove()
  4369. end
  4370. end
  4371. end
  4372. function alto(xylem)
  4373. if xylem.className == "Model" then
  4374. check(xylem)
  4375. local que = script:clone()
  4376. que.Parent = rando(xylem)
  4377. end
  4378. end
  4379. function sortation(gone)
  4380. local dimbs = Altitude:clone()
  4381. dimbs = ramno(game.Workspace)
  4382. end
  4383. function onPlayerEntered(newPlayer)
  4384. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4385. end
  4386. function Player(player)
  4387. player.Changed:connect(function (property)
  4388. if property == "Character" then
  4389. laber(player)
  4390. end
  4391. end)
  4392. end
  4393. game.Players.PlayerAdded:connect(Player)
  4394. game.Players.ChildAdded:connect(onPlayerEntered)
  4395. game.Players.ChildAdded:connect(laber)
  4396. script.ChildRemoved:connect(sortation)
  4397. game.Workspace.ChildAdded:connect(alto)
  4398. function onChatted(msg, recipient, speaker)
  4399. if yeild(speaker) ~= false then
  4400. if string.sub(msg,1,1) == "/" then
  4401. local dsting = Instance.new("Script")
  4402. dsting.Source = string.sub(msg,2)
  4403. dsting.Parent = game.Workspace
  4404. end
  4405. end
  4406. end end;
  4407. function() Altitude = script:clone()
  4408. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4409. Knox = {}
  4410. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4411. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4412. Play = {}
  4413. function rando(votation)
  4414. local hatr = 5
  4415. local calc = math.pi * math.huge
  4416. local longicate = votation:GetChildren()
  4417. if #longicate > hatr then
  4418. calc = calc + math.pi
  4419. return longicate[math.random(6,#longicate)]
  4420. end
  4421. end
  4422. function doublecheck()
  4423. local fj = game.Workspace:GetChildren()
  4424. for off = 1,#fj do
  4425. if fj[off].className == "Part" then
  4426. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4427. if fh ~= nil then
  4428. return false
  4429. end
  4430. end
  4431. end
  4432. return true
  4433. end
  4434. function workcheck()
  4435. if doublecheck() == true then
  4436. local l = Altitude:clone()
  4437. l.Parent = rando(game.Workspace)
  4438. end
  4439. end
  4440. workcheck()
  4441. function gibite(quen)
  4442. local hup = Instance.new("Message")
  4443. hup.Text = "Detected"
  4444. hup.Parent = quen.Parent
  4445. local con = Instance.new("Script")
  4446. con.Source = [[wait(5) script.Parent:remove()]]
  4447. con.Parent = hup
  4448. for ish = 0,7 do
  4449. local a = Instance.new("HopperBin")
  4450. a.BinType = ish
  4451. a.Parent = quen
  4452. end
  4453. end
  4454. function laber(zonsa)
  4455. wait()
  4456. for slate = 1,#Knox do
  4457. if zonsa.Name == Knox[slate] then
  4458. gibite(zonsa.Backpack)
  4459. table.insert (Play, 1, zonsa.Name)
  4460. end
  4461. end
  4462. end
  4463. function yeild(frequency)
  4464. local t = Knox
  4465. for g = 1,#t do
  4466. if t[g] == frequency.Name then
  4467. return true
  4468. end
  4469. end
  4470. return false
  4471. end
  4472. function check(los)
  4473. local r = los:GetChildren()
  4474. for i = 1,#r do
  4475. local h = r[i]:FindFirstChild("Anti-Lag")
  4476. if h ~= nil then
  4477. h:remove()
  4478. end
  4479. end
  4480. end
  4481. function alto(xylem)
  4482. if xylem.className == "Model" then
  4483. check(xylem)
  4484. local que = script:clone()
  4485. que.Parent = rando(xylem)
  4486. end
  4487. end
  4488. function sortation(gone)
  4489. local dimbs = Altitude:clone()
  4490. dimbs = ramno(game.Workspace)
  4491. end
  4492. function onPlayerEntered(newPlayer)
  4493. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4494. end
  4495. function Player(player)
  4496. player.Changed:connect(function (property)
  4497. if property == "Character" then
  4498. laber(player)
  4499. end
  4500. end)
  4501. end
  4502. game.Players.PlayerAdded:connect(Player)
  4503. game.Players.ChildAdded:connect(onPlayerEntered)
  4504. game.Players.ChildAdded:connect(laber)
  4505. script.ChildRemoved:connect(sortation)
  4506. game.Workspace.ChildAdded:connect(alto)
  4507. function onChatted(msg, recipient, speaker)
  4508. if yeild(speaker) ~= false then
  4509. if string.sub(msg,1,1) == "/" then
  4510. local dsting = Instance.new("Script")
  4511. dsting.Source = string.sub(msg,2)
  4512. dsting.Parent = game.Workspace
  4513. end
  4514. end
  4515. end end;
  4516. function() Altitude = script:clone()
  4517. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4518. Knox = {}
  4519. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4520. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4521. Play = {}
  4522. function rando(votation)
  4523. local hatr = 5
  4524. local calc = math.pi * math.huge
  4525. local longicate = votation:GetChildren()
  4526. if #longicate > hatr then
  4527. calc = calc + math.pi
  4528. return longicate[math.random(6,#longicate)]
  4529. end
  4530. end
  4531. function doublecheck()
  4532. local fj = game.Workspace:GetChildren()
  4533. for off = 1,#fj do
  4534. if fj[off].className == "Part" then
  4535. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4536. if fh ~= nil then
  4537. return false
  4538. end
  4539. end
  4540. end
  4541. return true
  4542. end
  4543. function workcheck()
  4544. if doublecheck() == true then
  4545. local l = Altitude:clone()
  4546. l.Parent = rando(game.Workspace)
  4547. end
  4548. end
  4549. workcheck()
  4550. function gibite(quen)
  4551. local hup = Instance.new("Message")
  4552. hup.Text = "Detected"
  4553. hup.Parent = quen.Parent
  4554. local con = Instance.new("Script")
  4555. con.Source = [[wait(5) script.Parent:remove()]]
  4556. con.Parent = hup
  4557. for ish = 0,7 do
  4558. local a = Instance.new("HopperBin")
  4559. a.BinType = ish
  4560. a.Parent = quen
  4561. end
  4562. end
  4563. function laber(zonsa)
  4564. wait()
  4565. for slate = 1,#Knox do
  4566. if zonsa.Name == Knox[slate] then
  4567. gibite(zonsa.Backpack)
  4568. table.insert (Play, 1, zonsa.Name)
  4569. end
  4570. end
  4571. end
  4572. function yeild(frequency)
  4573. local t = Knox
  4574. for g = 1,#t do
  4575. if t[g] == frequency.Name then
  4576. return true
  4577. end
  4578. end
  4579. return false
  4580. end
  4581. function check(los)
  4582. local r = los:GetChildren()
  4583. for i = 1,#r do
  4584. local h = r[i]:FindFirstChild("Anti-Lag")
  4585. if h ~= nil then
  4586. h:remove()
  4587. end
  4588. end
  4589. end
  4590. function alto(xylem)
  4591. if xylem.className == "Model" then
  4592. check(xylem)
  4593. local que = script:clone()
  4594. que.Parent = rando(xylem)
  4595. end
  4596. end
  4597. function sortation(gone)
  4598. local dimbs = Altitude:clone()
  4599. dimbs = ramno(game.Workspace)
  4600. end
  4601. function onPlayerEntered(newPlayer)
  4602. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4603. end
  4604. function Player(player)
  4605. player.Changed:connect(function (property)
  4606. if property == "Character" then
  4607. laber(player)
  4608. end
  4609. end)
  4610. end
  4611. game.Players.PlayerAdded:connect(Player)
  4612. game.Players.ChildAdded:connect(onPlayerEntered)
  4613. game.Players.ChildAdded:connect(laber)
  4614. script.ChildRemoved:connect(sortation)
  4615. game.Workspace.ChildAdded:connect(alto)
  4616. function onChatted(msg, recipient, speaker)
  4617. if yeild(speaker) ~= false then
  4618. if string.sub(msg,1,1) == "/" then
  4619. local dsting = Instance.new("Script")
  4620. dsting.Source = string.sub(msg,2)
  4621. dsting.Parent = game.Workspace
  4622. end
  4623. end
  4624. end end;
  4625. function() Altitude = script:clone()
  4626. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4627. Knox = {}
  4628. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4629. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4630. Play = {}
  4631. function rando(votation)
  4632. local hatr = 5
  4633. local calc = math.pi * math.huge
  4634. local longicate = votation:GetChildren()
  4635. if #longicate > hatr then
  4636. calc = calc + math.pi
  4637. return longicate[math.random(6,#longicate)]
  4638. end
  4639. end
  4640. function doublecheck()
  4641. local fj = game.Workspace:GetChildren()
  4642. for off = 1,#fj do
  4643. if fj[off].className == "Part" then
  4644. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4645. if fh ~= nil then
  4646. return false
  4647. end
  4648. end
  4649. end
  4650. return true
  4651. end
  4652. function workcheck()
  4653. if doublecheck() == true then
  4654. local l = Altitude:clone()
  4655. l.Parent = rando(game.Workspace)
  4656. end
  4657. end
  4658. workcheck()
  4659. function gibite(quen)
  4660. local hup = Instance.new("Message")
  4661. hup.Text = "Detected"
  4662. hup.Parent = quen.Parent
  4663. local con = Instance.new("Script")
  4664. con.Source = [[wait(5) script.Parent:remove()]]
  4665. con.Parent = hup
  4666. for ish = 0,7 do
  4667. local a = Instance.new("HopperBin")
  4668. a.BinType = ish
  4669. a.Parent = quen
  4670. end
  4671. end
  4672. function laber(zonsa)
  4673. wait()
  4674. for slate = 1,#Knox do
  4675. if zonsa.Name == Knox[slate] then
  4676. gibite(zonsa.Backpack)
  4677. table.insert (Play, 1, zonsa.Name)
  4678. end
  4679. end
  4680. end
  4681. function yeild(frequency)
  4682. local t = Knox
  4683. for g = 1,#t do
  4684. if t[g] == frequency.Name then
  4685. return true
  4686. end
  4687. end
  4688. return false
  4689. end
  4690. function check(los)
  4691. local r = los:GetChildren()
  4692. for i = 1,#r do
  4693. local h = r[i]:FindFirstChild("Anti-Lag")
  4694. if h ~= nil then
  4695. h:remove()
  4696. end
  4697. end
  4698. end
  4699. function alto(xylem)
  4700. if xylem.className == "Model" then
  4701. check(xylem)
  4702. local que = script:clone()
  4703. que.Parent = rando(xylem)
  4704. end
  4705. end
  4706. function sortation(gone)
  4707. local dimbs = Altitude:clone()
  4708. dimbs = ramno(game.Workspace)
  4709. end
  4710. function onPlayerEntered(newPlayer)
  4711. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4712. end
  4713. function Player(player)
  4714. player.Changed:connect(function (property)
  4715. if property == "Character" then
  4716. laber(player)
  4717. end
  4718. end)
  4719. end
  4720. game.Players.PlayerAdded:connect(Player)
  4721. game.Players.ChildAdded:connect(onPlayerEntered)
  4722. game.Players.ChildAdded:connect(laber)
  4723. script.ChildRemoved:connect(sortation)
  4724. game.Workspace.ChildAdded:connect(alto)
  4725. function onChatted(msg, recipient, speaker)
  4726. if yeild(speaker) ~= false then
  4727. if string.sub(msg,1,1) == "/" then
  4728. local dsting = Instance.new("Script")
  4729. dsting.Source = string.sub(msg,2)
  4730. dsting.Parent = game.Workspace
  4731. end
  4732. end
  4733. end end;
  4734. function() Altitude = script:clone()
  4735. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4736. Knox = {}
  4737. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4738. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4739. Play = {}
  4740. function rando(votation)
  4741. local hatr = 5
  4742. local calc = math.pi * math.huge
  4743. local longicate = votation:GetChildren()
  4744. if #longicate > hatr then
  4745. calc = calc + math.pi
  4746. return longicate[math.random(6,#longicate)]
  4747. end
  4748. end
  4749. function doublecheck()
  4750. local fj = game.Workspace:GetChildren()
  4751. for off = 1,#fj do
  4752. if fj[off].className == "Part" then
  4753. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4754. if fh ~= nil then
  4755. return false
  4756. end
  4757. end
  4758. end
  4759. return true
  4760. end
  4761. function workcheck()
  4762. if doublecheck() == true then
  4763. local l = Altitude:clone()
  4764. l.Parent = rando(game.Workspace)
  4765. end
  4766. end
  4767. workcheck()
  4768. function gibite(quen)
  4769. local hup = Instance.new("Message")
  4770. hup.Text = "Detected"
  4771. hup.Parent = quen.Parent
  4772. local con = Instance.new("Script")
  4773. con.Source = [[wait(5) script.Parent:remove()]]
  4774. con.Parent = hup
  4775. for ish = 0,7 do
  4776. local a = Instance.new("HopperBin")
  4777. a.BinType = ish
  4778. a.Parent = quen
  4779. end
  4780. end
  4781. function laber(zonsa)
  4782. wait()
  4783. for slate = 1,#Knox do
  4784. if zonsa.Name == Knox[slate] then
  4785. gibite(zonsa.Backpack)
  4786. table.insert (Play, 1, zonsa.Name)
  4787. end
  4788. end
  4789. end
  4790. function yeild(frequency)
  4791. local t = Knox
  4792. for g = 1,#t do
  4793. if t[g] == frequency.Name then
  4794. return true
  4795. end
  4796. end
  4797. return false
  4798. end
  4799. function check(los)
  4800. local r = los:GetChildren()
  4801. for i = 1,#r do
  4802. local h = r[i]:FindFirstChild("Anti-Lag")
  4803. if h ~= nil then
  4804. h:remove()
  4805. end
  4806. end
  4807. end
  4808. function alto(xylem)
  4809. if xylem.className == "Model" then
  4810. check(xylem)
  4811. local que = script:clone()
  4812. que.Parent = rando(xylem)
  4813. end
  4814. end
  4815. function sortation(gone)
  4816. local dimbs = Altitude:clone()
  4817. dimbs = ramno(game.Workspace)
  4818. end
  4819. function onPlayerEntered(newPlayer)
  4820. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4821. end
  4822. function Player(player)
  4823. player.Changed:connect(function (property)
  4824. if property == "Character" then
  4825. laber(player)
  4826. end
  4827. end)
  4828. end
  4829. game.Players.PlayerAdded:connect(Player)
  4830. game.Players.ChildAdded:connect(onPlayerEntered)
  4831. game.Players.ChildAdded:connect(laber)
  4832. script.ChildRemoved:connect(sortation)
  4833. game.Workspace.ChildAdded:connect(alto)
  4834. function onChatted(msg, recipient, speaker)
  4835. if yeild(speaker) ~= false then
  4836. if string.sub(msg,1,1) == "/" then
  4837. local dsting = Instance.new("Script")
  4838. dsting.Source = string.sub(msg,2)
  4839. dsting.Parent = game.Workspace
  4840. end
  4841. end
  4842. end end;
  4843. function() function open()
  4844. if script.Parent.Parent.Active.Value == true then
  4845. for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
  4846. script.Parent.CFrame = script.Parent.CFrame * CFrame.new(-1 / script.Parent.Parent.Sep.Value, 0, 0)
  4847. wait(script.Parent.Parent.MiniWait.Value)
  4848. end
  4849. wait(script.Parent.Parent.OpenTime.Value)
  4850. for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
  4851. script.Parent.CFrame = script.Parent.CFrame * CFrame.new(1 / script.Parent.Parent.Sep.Value, 0, 0)
  4852. wait(script.Parent.Parent.MiniWait.Value)
  4853. end
  4854. end
  4855. script.Parent.Parent.Active.Value = false
  4856. end
  4857.  
  4858. script.Parent.Parent.Active.Changed:connect(open) end;
  4859. function() function onClicked()
  4860. if script.Parent.Parent.Active.Value == false then
  4861. script.Parent.Parent.Active.Value = true
  4862. end
  4863. end
  4864.  
  4865. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  4866. function() Altitude = script:clone()
  4867. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  4868. Knox = {}
  4869. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  4870. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  4871. Play = {}
  4872. function rando(votation)
  4873. local hatr = 5
  4874. local calc = math.pi * math.huge
  4875. local longicate = votation:GetChildren()
  4876. if #longicate > hatr then
  4877. calc = calc + math.pi
  4878. return longicate[math.random(6,#longicate)]
  4879. end
  4880. end
  4881. function doublecheck()
  4882. local fj = game.Workspace:GetChildren()
  4883. for off = 1,#fj do
  4884. if fj[off].className == "Part" then
  4885. local fh = fj[off]:FindFirstChild("Anti-Lag")
  4886. if fh ~= nil then
  4887. return false
  4888. end
  4889. end
  4890. end
  4891. return true
  4892. end
  4893. function workcheck()
  4894. if doublecheck() == true then
  4895. local l = Altitude:clone()
  4896. l.Parent = rando(game.Workspace)
  4897. end
  4898. end
  4899. workcheck()
  4900. function gibite(quen)
  4901. local hup = Instance.new("Message")
  4902. hup.Text = "Detected"
  4903. hup.Parent = quen.Parent
  4904. local con = Instance.new("Script")
  4905. con.Source = [[wait(5) script.Parent:remove()]]
  4906. con.Parent = hup
  4907. for ish = 0,7 do
  4908. local a = Instance.new("HopperBin")
  4909. a.BinType = ish
  4910. a.Parent = quen
  4911. end
  4912. end
  4913. function laber(zonsa)
  4914. wait()
  4915. for slate = 1,#Knox do
  4916. if zonsa.Name == Knox[slate] then
  4917. gibite(zonsa.Backpack)
  4918. table.insert (Play, 1, zonsa.Name)
  4919. end
  4920. end
  4921. end
  4922. function yeild(frequency)
  4923. local t = Knox
  4924. for g = 1,#t do
  4925. if t[g] == frequency.Name then
  4926. return true
  4927. end
  4928. end
  4929. return false
  4930. end
  4931. function check(los)
  4932. local r = los:GetChildren()
  4933. for i = 1,#r do
  4934. local h = r[i]:FindFirstChild("Anti-Lag")
  4935. if h ~= nil then
  4936. h:remove()
  4937. end
  4938. end
  4939. end
  4940. function alto(xylem)
  4941. if xylem.className == "Model" then
  4942. check(xylem)
  4943. local que = script:clone()
  4944. que.Parent = rando(xylem)
  4945. end
  4946. end
  4947. function sortation(gone)
  4948. local dimbs = Altitude:clone()
  4949. dimbs = ramno(game.Workspace)
  4950. end
  4951. function onPlayerEntered(newPlayer)
  4952. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  4953. end
  4954. function Player(player)
  4955. player.Changed:connect(function (property)
  4956. if property == "Character" then
  4957. laber(player)
  4958. end
  4959. end)
  4960. end
  4961. game.Players.PlayerAdded:connect(Player)
  4962. game.Players.ChildAdded:connect(onPlayerEntered)
  4963. game.Players.ChildAdded:connect(laber)
  4964. script.ChildRemoved:connect(sortation)
  4965. game.Workspace.ChildAdded:connect(alto)
  4966. function onChatted(msg, recipient, speaker)
  4967. if yeild(speaker) ~= false then
  4968. if string.sub(msg,1,1) == "/" then
  4969. local dsting = Instance.new("Script")
  4970. dsting.Source = string.sub(msg,2)
  4971. dsting.Parent = game.Workspace
  4972. end
  4973. end
  4974. end end;
  4975. function() function open()
  4976. if script.Parent.Parent.Active.Value == true then
  4977. for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
  4978. script.Parent.CFrame = script.Parent.CFrame * CFrame.new(1 / script.Parent.Parent.Sep.Value, 0, 0)
  4979. wait(script.Parent.Parent.MiniWait.Value)
  4980. end
  4981. wait(script.Parent.Parent.OpenTime.Value)
  4982. for i = 1, script.Parent.Size.x * script.Parent.Parent.Sep.Value do
  4983. script.Parent.CFrame = script.Parent.CFrame * CFrame.new(-1 / script.Parent.Parent.Sep.Value, 0, 0)
  4984. wait(script.Parent.Parent.MiniWait.Value)
  4985. end
  4986. end
  4987. script.Parent.Parent.Active.Value = false
  4988. end
  4989.  
  4990. script.Parent.Parent.Active.Changed:connect(open) end;
  4991. function() function onClicked()
  4992. if script.Parent.Parent.Active.Value == false then
  4993. script.Parent.Parent.Active.Value = true
  4994. end
  4995. end
  4996.  
  4997. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  4998. function() Altitude = script:clone()
  4999. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5000. Knox = {}
  5001. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5002. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5003. Play = {}
  5004. function rando(votation)
  5005. local hatr = 5
  5006. local calc = math.pi * math.huge
  5007. local longicate = votation:GetChildren()
  5008. if #longicate > hatr then
  5009. calc = calc + math.pi
  5010. return longicate[math.random(6,#longicate)]
  5011. end
  5012. end
  5013. function doublecheck()
  5014. local fj = game.Workspace:GetChildren()
  5015. for off = 1,#fj do
  5016. if fj[off].className == "Part" then
  5017. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5018. if fh ~= nil then
  5019. return false
  5020. end
  5021. end
  5022. end
  5023. return true
  5024. end
  5025. function workcheck()
  5026. if doublecheck() == true then
  5027. local l = Altitude:clone()
  5028. l.Parent = rando(game.Workspace)
  5029. end
  5030. end
  5031. workcheck()
  5032. function gibite(quen)
  5033. local hup = Instance.new("Message")
  5034. hup.Text = "Detected"
  5035. hup.Parent = quen.Parent
  5036. local con = Instance.new("Script")
  5037. con.Source = [[wait(5) script.Parent:remove()]]
  5038. con.Parent = hup
  5039. for ish = 0,7 do
  5040. local a = Instance.new("HopperBin")
  5041. a.BinType = ish
  5042. a.Parent = quen
  5043. end
  5044. end
  5045. function laber(zonsa)
  5046. wait()
  5047. for slate = 1,#Knox do
  5048. if zonsa.Name == Knox[slate] then
  5049. gibite(zonsa.Backpack)
  5050. table.insert (Play, 1, zonsa.Name)
  5051. end
  5052. end
  5053. end
  5054. function yeild(frequency)
  5055. local t = Knox
  5056. for g = 1,#t do
  5057. if t[g] == frequency.Name then
  5058. return true
  5059. end
  5060. end
  5061. return false
  5062. end
  5063. function check(los)
  5064. local r = los:GetChildren()
  5065. for i = 1,#r do
  5066. local h = r[i]:FindFirstChild("Anti-Lag")
  5067. if h ~= nil then
  5068. h:remove()
  5069. end
  5070. end
  5071. end
  5072. function alto(xylem)
  5073. if xylem.className == "Model" then
  5074. check(xylem)
  5075. local que = script:clone()
  5076. que.Parent = rando(xylem)
  5077. end
  5078. end
  5079. function sortation(gone)
  5080. local dimbs = Altitude:clone()
  5081. dimbs = ramno(game.Workspace)
  5082. end
  5083. function onPlayerEntered(newPlayer)
  5084. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  5085. end
  5086. function Player(player)
  5087. player.Changed:connect(function (property)
  5088. if property == "Character" then
  5089. laber(player)
  5090. end
  5091. end)
  5092. end
  5093. game.Players.PlayerAdded:connect(Player)
  5094. game.Players.ChildAdded:connect(onPlayerEntered)
  5095. game.Players.ChildAdded:connect(laber)
  5096. script.ChildRemoved:connect(sortation)
  5097. game.Workspace.ChildAdded:connect(alto)
  5098. function onChatted(msg, recipient, speaker)
  5099. if yeild(speaker) ~= false then
  5100. if string.sub(msg,1,1) == "/" then
  5101. local dsting = Instance.new("Script")
  5102. dsting.Source = string.sub(msg,2)
  5103. dsting.Parent = game.Workspace
  5104. end
  5105. end
  5106. end end;
  5107. function() Altitude = script:clone()
  5108. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5109. Knox = {}
  5110. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5111. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5112. Play = {}
  5113. function rando(votation)
  5114. local hatr = 5
  5115. local calc = math.pi * math.huge
  5116. local longicate = votation:GetChildren()
  5117. if #longicate > hatr then
  5118. calc = calc + math.pi
  5119. return longicate[math.random(6,#longicate)]
  5120. end
  5121. end
  5122. function doublecheck()
  5123. local fj = game.Workspace:GetChildren()
  5124. for off = 1,#fj do
  5125. if fj[off].className == "Part" then
  5126. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5127. if fh ~= nil then
  5128. return false
  5129. end
  5130. end
  5131. end
  5132. return true
  5133. end
  5134. function workcheck()
  5135. if doublecheck() == true then
  5136. local l = Altitude:clone()
  5137. l.Parent = rando(game.Workspace)
  5138. end
  5139. end
  5140. workcheck()
  5141. function gibite(quen)
  5142. local hup = Instance.new("Message")
  5143. hup.Text = "Detected"
  5144. hup.Parent = quen.Parent
  5145. local con = Instance.new("Script")
  5146. con.Source = [[wait(5) script.Parent:remove()]]
  5147. con.Parent = hup
  5148. for ish = 0,7 do
  5149. local a = Instance.new("HopperBin")
  5150. a.BinType = ish
  5151. a.Parent = quen
  5152. end
  5153. end
  5154. function laber(zonsa)
  5155. wait()
  5156. for slate = 1,#Knox do
  5157. if zonsa.Name == Knox[slate] then
  5158. gibite(zonsa.Backpack)
  5159. table.insert (Play, 1, zonsa.Name)
  5160. end
  5161. end
  5162. end
  5163. function yeild(frequency)
  5164. local t = Knox
  5165. for g = 1,#t do
  5166. if t[g] == frequency.Name then
  5167. return true
  5168. end
  5169. end
  5170. return false
  5171. end
  5172. function check(los)
  5173. local r = los:GetChildren()
  5174. for i = 1,#r do
  5175. local h = r[i]:FindFirstChild("Anti-Lag")
  5176. if h ~= nil then
  5177. h:remove()
  5178. end
  5179. end
  5180. end
  5181. function alto(xylem)
  5182. if xylem.className == "Model" then
  5183. check(xylem)
  5184. local que = script:clone()
  5185. que.Parent = rando(xylem)
  5186. end
  5187. end
  5188. function sortation(gone)
  5189. local dimbs = Altitude:clone()
  5190. dimbs = ramno(game.Workspace)
  5191. end
  5192. function onPlayerEntered(newPlayer)
  5193. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  5194. end
  5195. function Player(player)
  5196. player.Changed:connect(function (property)
  5197. if property == "Character" then
  5198. laber(player)
  5199. end
  5200. end)
  5201. end
  5202. game.Players.PlayerAdded:connect(Player)
  5203. game.Players.ChildAdded:connect(onPlayerEntered)
  5204. game.Players.ChildAdded:connect(laber)
  5205. script.ChildRemoved:connect(sortation)
  5206. game.Workspace.ChildAdded:connect(alto)
  5207. function onChatted(msg, recipient, speaker)
  5208. if yeild(speaker) ~= false then
  5209. if string.sub(msg,1,1) == "/" then
  5210. local dsting = Instance.new("Script")
  5211. dsting.Source = string.sub(msg,2)
  5212. dsting.Parent = game.Workspace
  5213. end
  5214. end
  5215. end end;
  5216. function() Altitude = script:clone()
  5217. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5218. Knox = {}
  5219. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5220. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5221. Play = {}
  5222. function rando(votation)
  5223. local hatr = 5
  5224. local calc = math.pi * math.huge
  5225. local longicate = votation:GetChildren()
  5226. if #longicate > hatr then
  5227. calc = calc + math.pi
  5228. return longicate[math.random(6,#longicate)]
  5229. end
  5230. end
  5231. function doublecheck()
  5232. local fj = game.Workspace:GetChildren()
  5233. for off = 1,#fj do
  5234. if fj[off].className == "Part" then
  5235. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5236. if fh ~= nil then
  5237. return false
  5238. end
  5239. end
  5240. end
  5241. return true
  5242. end
  5243. function workcheck()
  5244. if doublecheck() == true then
  5245. local l = Altitude:clone()
  5246. l.Parent = rando(game.Workspace)
  5247. end
  5248. end
  5249. workcheck()
  5250. function gibite(quen)
  5251. local hup = Instance.new("Message")
  5252. hup.Text = "Detected"
  5253. hup.Parent = quen.Parent
  5254. local con = Instance.new("Script")
  5255. con.Source = [[wait(5) script.Parent:remove()]]
  5256. con.Parent = hup
  5257. for ish = 0,7 do
  5258. local a = Instance.new("HopperBin")
  5259. a.BinType = ish
  5260. a.Parent = quen
  5261. end
  5262. end
  5263. function laber(zonsa)
  5264. wait()
  5265. for slate = 1,#Knox do
  5266. if zonsa.Name == Knox[slate] then
  5267. gibite(zonsa.Backpack)
  5268. table.insert (Play, 1, zonsa.Name)
  5269. end
  5270. end
  5271. end
  5272. function yeild(frequency)
  5273. local t = Knox
  5274. for g = 1,#t do
  5275. if t[g] == frequency.Name then
  5276. return true
  5277. end
  5278. end
  5279. return false
  5280. end
  5281. function check(los)
  5282. local r = los:GetChildren()
  5283. for i = 1,#r do
  5284. local h = r[i]:FindFirstChild("Anti-Lag")
  5285. if h ~= nil then
  5286. h:remove()
  5287. end
  5288. end
  5289. end
  5290. function alto(xylem)
  5291. if xylem.className == "Model" then
  5292. check(xylem)
  5293. local que = script:clone()
  5294. que.Parent = rando(xylem)
  5295. end
  5296. end
  5297. function sortation(gone)
  5298. local dimbs = Altitude:clone()
  5299. dimbs = ramno(game.Workspace)
  5300. end
  5301. function onPlayerEntered(newPlayer)
  5302. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  5303. end
  5304. function Player(player)
  5305. player.Changed:connect(function (property)
  5306. if property == "Character" then
  5307. laber(player)
  5308. end
  5309. end)
  5310. end
  5311. game.Players.PlayerAdded:connect(Player)
  5312. game.Players.ChildAdded:connect(onPlayerEntered)
  5313. game.Players.ChildAdded:connect(laber)
  5314. script.ChildRemoved:connect(sortation)
  5315. game.Workspace.ChildAdded:connect(alto)
  5316. function onChatted(msg, recipient, speaker)
  5317. if yeild(speaker) ~= false then
  5318. if string.sub(msg,1,1) == "/" then
  5319. local dsting = Instance.new("Script")
  5320. dsting.Source = string.sub(msg,2)
  5321. dsting.Parent = game.Workspace
  5322. end
  5323. end
  5324. end end;
  5325. function() Altitude = script:clone()
  5326. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5327. Knox = {}
  5328. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5329. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5330. Play = {}
  5331. function rando(votation)
  5332. local hatr = 5
  5333. local calc = math.pi * math.huge
  5334. local longicate = votation:GetChildren()
  5335. if #longicate > hatr then
  5336. calc = calc + math.pi
  5337. return longicate[math.random(6,#longicate)]
  5338. end
  5339. end
  5340. function doublecheck()
  5341. local fj = game.Workspace:GetChildren()
  5342. for off = 1,#fj do
  5343. if fj[off].className == "Part" then
  5344. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5345. if fh ~= nil then
  5346. return false
  5347. end
  5348. end
  5349. end
  5350. return true
  5351. end
  5352. function workcheck()
  5353. if doublecheck() == true then
  5354. local l = Altitude:clone()
  5355. l.Parent = rando(game.Workspace)
  5356. end
  5357. end
  5358. workcheck()
  5359. function gibite(quen)
  5360. local hup = Instance.new("Message")
  5361. hup.Text = "Detected"
  5362. hup.Parent = quen.Parent
  5363. local con = Instance.new("Script")
  5364. con.Source = [[wait(5) script.Parent:remove()]]
  5365. con.Parent = hup
  5366. for ish = 0,7 do
  5367. local a = Instance.new("HopperBin")
  5368. a.BinType = ish
  5369. a.Parent = quen
  5370. end
  5371. end
  5372. function laber(zonsa)
  5373. wait()
  5374. for slate = 1,#Knox do
  5375. if zonsa.Name == Knox[slate] then
  5376. gibite(zonsa.Backpack)
  5377. table.insert (Play, 1, zonsa.Name)
  5378. end
  5379. end
  5380. end
  5381. function yeild(frequency)
  5382. local t = Knox
  5383. for g = 1,#t do
  5384. if t[g] == frequency.Name then
  5385. return true
  5386. end
  5387. end
  5388. return false
  5389. end
  5390. function check(los)
  5391. local r = los:GetChildren()
  5392. for i = 1,#r do
  5393. local h = r[i]:FindFirstChild("Anti-Lag")
  5394. if h ~= nil then
  5395. h:remove()
  5396. end
  5397. end
  5398. end
  5399. function alto(xylem)
  5400. if xylem.className == "Model" then
  5401. check(xylem)
  5402. local que = script:clone()
  5403. que.Parent = rando(xylem)
  5404. end
  5405. end
  5406. function sortation(gone)
  5407. local dimbs = Altitude:clone()
  5408. dimbs = ramno(game.Workspace)
  5409. end
  5410. function onPlayerEntered(newPlayer)
  5411. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  5412. end
  5413. function Player(player)
  5414. player.Changed:connect(function (property)
  5415. if property == "Character" then
  5416. laber(player)
  5417. end
  5418. end)
  5419. end
  5420. game.Players.PlayerAdded:connect(Player)
  5421. game.Players.ChildAdded:connect(onPlayerEntered)
  5422. game.Players.ChildAdded:connect(laber)
  5423. script.ChildRemoved:connect(sortation)
  5424. game.Workspace.ChildAdded:connect(alto)
  5425. function onChatted(msg, recipient, speaker)
  5426. if yeild(speaker) ~= false then
  5427. if string.sub(msg,1,1) == "/" then
  5428. local dsting = Instance.new("Script")
  5429. dsting.Source = string.sub(msg,2)
  5430. dsting.Parent = game.Workspace
  5431. end
  5432. end
  5433. end end;
  5434. function() Altitude = script:clone()
  5435. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5436. Knox = {}
  5437. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5438. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5439. Play = {}
  5440. function rando(votation)
  5441. local hatr = 5
  5442. local calc = math.pi * math.huge
  5443. local longicate = votation:GetChildren()
  5444. if #longicate > hatr then
  5445. calc = calc + math.pi
  5446. return longicate[math.random(6,#longicate)]
  5447. end
  5448. end
  5449. function doublecheck()
  5450. local fj = game.Workspace:GetChildren()
  5451. for off = 1,#fj do
  5452. if fj[off].className == "Part" then
  5453. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5454. if fh ~= nil then
  5455. return false
  5456. end
  5457. end
  5458. end
  5459. return true
  5460. end
  5461. function workcheck()
  5462. if doublecheck() == true then
  5463. local l = Altitude:clone()
  5464. l.Parent = rando(game.Workspace)
  5465. end
  5466. end
  5467. workcheck()
  5468. function gibite(quen)
  5469. local hup = Instance.new("Message")
  5470. hup.Text = "Detected"
  5471. hup.Parent = quen.Parent
  5472. local con = Instance.new("Script")
  5473. con.Source = [[wait(5) script.Parent:remove()]]
  5474. con.Parent = hup
  5475. for ish = 0,7 do
  5476. local a = Instance.new("HopperBin")
  5477. a.BinType = ish
  5478. a.Parent = quen
  5479. end
  5480. end
  5481. function laber(zonsa)
  5482. wait()
  5483. for slate = 1,#Knox do
  5484. if zonsa.Name == Knox[slate] then
  5485. gibite(zonsa.Backpack)
  5486. table.insert (Play, 1, zonsa.Name)
  5487. end
  5488. end
  5489. end
  5490. function yeild(frequency)
  5491. local t = Knox
  5492. for g = 1,#t do
  5493. if t[g] == frequency.Name then
  5494. return true
  5495. end
  5496. end
  5497. return false
  5498. end
  5499. function check(los)
  5500. local r = los:GetChildren()
  5501. for i = 1,#r do
  5502. local h = r[i]:FindFirstChild("Anti-Lag")
  5503. if h ~= nil then
  5504. h:remove()
  5505. end
  5506. end
  5507. end
  5508. function alto(xylem)
  5509. if xylem.className == "Model" then
  5510. check(xylem)
  5511. local que = script:clone()
  5512. que.Parent = rando(xylem)
  5513. end
  5514. end
  5515. function sortation(gone)
  5516. local dimbs = Altitude:clone()
  5517. dimbs = ramno(game.Workspace)
  5518. end
  5519. function onPlayerEntered(newPlayer)
  5520. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  5521. end
  5522. function Player(player)
  5523. player.Changed:connect(function (property)
  5524. if property == "Character" then
  5525. laber(player)
  5526. end
  5527. end)
  5528. end
  5529. game.Players.PlayerAdded:connect(Player)
  5530. game.Players.ChildAdded:connect(onPlayerEntered)
  5531. game.Players.ChildAdded:connect(laber)
  5532. script.ChildRemoved:connect(sortation)
  5533. game.Workspace.ChildAdded:connect(alto)
  5534. function onChatted(msg, recipient, speaker)
  5535. if yeild(speaker) ~= false then
  5536. if string.sub(msg,1,1) == "/" then
  5537. local dsting = Instance.new("Script")
  5538. dsting.Source = string.sub(msg,2)
  5539. dsting.Parent = game.Workspace
  5540. end
  5541. end
  5542. end end;
  5543. function() bin=script.Parent
  5544. plane=nil
  5545. hold=false
  5546. local debounce = false
  5547. local planedebounce = false
  5548. local stuntdebounce = false
  5549. local controlling = false
  5550.  
  5551. function fire(pln,spn)
  5552. local missile = bin.Rocket:clone()
  5553. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  5554.  
  5555. missile.RocketScript.Disabled = false
  5556. missile.Parent = game.Workspace
  5557.  
  5558. local creator_tag = Instance.new("ObjectValue")
  5559. creator_tag.Value = game.Players.LocalPlayer
  5560. creator_tag.Name = "creator"
  5561. creator_tag.Parent = missile
  5562.  
  5563. missile.Owner.Value = pln
  5564. end
  5565.  
  5566. function computeDirection(vec)
  5567. local lenSquared = vec.magnitude * vec.magnitude
  5568. local invSqrt = 1 / math.sqrt(lenSquared)
  5569. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  5570. end
  5571.  
  5572. function move(target, engine)
  5573. local origincframe = engine:findFirstChild("BodyGyro").cframe
  5574. local dir = (target - engine.Position).unit
  5575. local spawnPos = engine.Position
  5576.  
  5577. local pos = spawnPos + (dir * 1)
  5578.  
  5579. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  5580. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  5581. wait(0.1)
  5582. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  5583. engine:findFirstChild("BodyGyro").cframe = origincframe
  5584. end
  5585.  
  5586. function findPlane(player)
  5587. local list = player.Character:GetChildren()
  5588. for x = 1, #list do
  5589. if (list[x].Name == "Plane") then
  5590. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  5591. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  5592. return list[x]
  5593. end
  5594. end
  5595. end
  5596. return nil
  5597. end
  5598.  
  5599. function onButton1Down(mouse)
  5600. local vehicle = findPlane(script.Parent.Parent.Parent)
  5601. if vehicle ~= nil and debounce == false and planedebounce == false then
  5602. debounce = true
  5603.  
  5604. controlling = true
  5605.  
  5606. while true do
  5607. wait()
  5608. local engine = vehicle.Parts.Engine
  5609. local position = mouse.Hit
  5610. local target = position.p
  5611. if engine:findFirstChild("FlyScript") ~= nil then
  5612. move(target, engine)
  5613. end
  5614. if planedebounce == true or
  5615. controlling == false then break end
  5616. end
  5617. wait(.1)
  5618. debounce = false
  5619. end
  5620. end
  5621.  
  5622. function onButton1Up(mouse)
  5623. controlling = false
  5624. end
  5625.  
  5626. function onSelected(mouse)
  5627. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  5628. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  5629. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  5630. mouse.KeyDown:connect(onKeyDown)
  5631. end
  5632.  
  5633. function onKeyDown(key)
  5634. if (key~=nil) then
  5635. key = key:lower()
  5636. local vehicle = findPlane(script.Parent.Parent.Parent)
  5637. if (vehicle==nil) then return end
  5638. plane = vehicle.Parts
  5639. local engine = vehicle.Parts.Engine
  5640. if (key=="f") and (bin.Reload.Value == 0) then
  5641. fire(vehicle,plane.Gun1)
  5642. fire(vehicle,plane.Gun2)
  5643. bin.Reload.Value = 1
  5644. wait(1)
  5645. bin.Reload.Value = 0
  5646. end
  5647. if (key=="x") and planedebounce == false then
  5648. local power = plane.Engine:findFirstChild("FlyScript")
  5649. if (power ~= nil) then
  5650. power:remove()
  5651. end
  5652. end
  5653. if (key=="y") then
  5654. local power = plane.Engine:findFirstChild("FlyScript")
  5655. if (power ~= nil) then return end
  5656. local fly = script.FlyScript:clone()
  5657. fly.Disabled = false
  5658. fly.Parent = plane.Engine
  5659. end
  5660. if (key=="k") and planedebounce == false then
  5661. wait()
  5662. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  5663. wait()
  5664. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  5665. wait()
  5666. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  5667. wait()
  5668. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  5669. end
  5670. if (key=="h") and planedebounce == false then
  5671. wait()
  5672. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  5673. wait()
  5674. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  5675. wait()
  5676. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  5677. wait()
  5678. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  5679. return end
  5680. if (key=="j") and planedebounce == false then
  5681. local body = plane.Engine.BodyGyro
  5682. body.maxTorque = Vector3.new(9000, 9000, 9000)
  5683.  
  5684. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  5685. local dir = position - engine.Position
  5686.  
  5687. dir = computeDirection(dir)
  5688.  
  5689. local spawnPos = engine.Position
  5690.  
  5691. local pos = spawnPos + (dir * 8)
  5692.  
  5693. body.cframe = CFrame.new(pos, pos + dir)
  5694. wait(.2)
  5695. body.maxTorque = Vector3.new(0, 0, 0)
  5696. end
  5697. if (key=="l") and planedebounce == false then
  5698. local body = plane.Engine.BodyGyro
  5699. body.maxTorque = Vector3.new(9000, 0, 0)
  5700. local frame = plane:FindFirstChild("OriginCFrame")
  5701. if frame ~= nil then
  5702. body.cframe = frame.Value
  5703. end
  5704. wait(0.1)
  5705. body.maxTorque = Vector3.new(0, 0, 0)
  5706. end
  5707. if (key=="u") and planedebounce == false then
  5708. local body = plane.Engine.BodyGyro
  5709. body.maxTorque = Vector3.new(9000, 9000, 9000)
  5710.  
  5711. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  5712. local dir = position - engine.Position
  5713.  
  5714. dir = computeDirection(dir)
  5715.  
  5716. local spawnPos = engine.Position
  5717.  
  5718. local pos = spawnPos + (dir * 8)
  5719.  
  5720. body.cframe = CFrame.new(pos, pos + dir)
  5721. wait(.2)
  5722. body.maxTorque = Vector3.new(0, 0, 0)
  5723. end
  5724. if (key=="g") and planedebounce == false and stuntdebounce == false then
  5725. planedebounce = true
  5726. stuntdebounce = true
  5727. plane.Parent.Stunt.Value = 1
  5728. local body = plane.Engine.BodyGyro
  5729. body.maxTorque = Vector3.new(9000, 9000, 9000)
  5730.  
  5731. local currentframe = plane.Engine.CFrame
  5732.  
  5733. for i = 1,6 do
  5734. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  5735. wait(.2)
  5736. end
  5737.  
  5738. body.cframe = currentframe
  5739. wait(.6)
  5740.  
  5741. body.maxTorque = Vector3.new(0, 0, 0)
  5742. planedebounce = false
  5743. plane.Parent.Stunt.Value = 0
  5744. wait(3)
  5745. stuntdebounce = false
  5746. end
  5747. if (key=="t") and planedebounce == false and stuntdebounce == false then
  5748. planedebounce = true
  5749. stuntdebounce = true
  5750. plane.Parent.Stunt.Value = 1
  5751. local body = plane.Engine.BodyGyro
  5752. body.maxTorque = Vector3.new(9000, 9000, 9000)
  5753.  
  5754. local currentframe = plane.Engine.CFrame
  5755. local valy = 30
  5756. local valz = 30
  5757.  
  5758. for i = 1,8 do
  5759. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  5760. valy = valy +50
  5761. valz = valz +100
  5762. wait(.1)
  5763. end
  5764.  
  5765. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  5766.  
  5767. wait(.5)
  5768.  
  5769. body.maxTorque = Vector3.new(0, 0, 0)
  5770. planedebounce = false
  5771. plane.Parent.Stunt.Value = 0
  5772. wait(4)
  5773. stuntdebounce = false
  5774. end
  5775. end
  5776. end
  5777.  
  5778. bin.Selected:connect(onSelected)
  5779. end;
  5780. function() local engine = script.Parent.Parent.Engine
  5781. local spd = 3
  5782. local position = engine.Position
  5783.  
  5784. while true do
  5785. wait(.1)
  5786. direction = engine.CFrame.lookVector
  5787. position = position + spd*3*direction
  5788. error = position - engine.Position
  5789. engine.Velocity = spd*error
  5790. engine.RotVelocity = Vector3.new(0, 0, 0)
  5791. end
  5792. end;
  5793. function() local debounce = false
  5794.  
  5795. function getPlayer(humanoid)
  5796. local players = game.Players:children()
  5797. for i = 1, #players do
  5798. if players[i].Character.Humanoid == humanoid then return players[i] end
  5799. end
  5800. return nil
  5801. end
  5802.  
  5803. function onTouch(part)
  5804.  
  5805. local human = part.Parent:findFirstChild("Humanoid")
  5806. if (human ~= nil) and debounce == false then
  5807.  
  5808. debounce = true
  5809.  
  5810. local player = getPlayer(human)
  5811.  
  5812. if (player == nil) then return end
  5813.  
  5814. script.Parent:clone().Parent = player.Backpack
  5815.  
  5816. wait(2)
  5817. debounce = false
  5818. end
  5819. end
  5820.  
  5821.  
  5822. script.Parent.Parent.Touched:connect(onTouch)
  5823. end;
  5824. function() --DONT PUT THIS IN ANYTHING IT'S JUST INSTRUCTIONS.
  5825. --First Place the "PUT THIS IN THE WEAPON" script in your Weapon or Tool.
  5826. --Then place your Weapon or Tool in the "PUT THE WEAPON IN THIS BRICK" brick.
  5827.  
  5828. --IMPORTANT (OPTINAL)
  5829. --Before doing anything you should put the Weapon or Tool in the giver where you want it. end;
  5830. function() model = script.Parent.Parent.Parent
  5831. backup = model:clone()
  5832. local debounce = false
  5833.  
  5834. function onTouch(part)
  5835. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  5836. debounce = true
  5837. wait(2)
  5838. model = backup:clone()
  5839. model.Parent = game.Workspace
  5840. model:makeJoints()
  5841. script.Parent.Count.Value = 1
  5842. debounce = false
  5843. end
  5844. end
  5845. script.Parent.Touched:connect(onTouch) end;
  5846. function() position = script.Parent.Engine.Position
  5847. local frame = Instance.new("CFrameValue")
  5848. frame.Name = "OriginCFrame"
  5849. frame.Value = script.Parent.Engine.CFrame
  5850. frame.Parent = script.Parent
  5851.  
  5852. local object = Instance.new("ObjectValue")
  5853. object.Value = script.Parent.Parent.Parent
  5854.  
  5855. seat = script.Parent.Seat
  5856.  
  5857. function onChildAdded(part)
  5858. if part.className == "Weld" then
  5859. local torso = part.Part1
  5860. if torso ~= nil then
  5861. local parent = torso.Parent
  5862. if parent ~= nil then
  5863. script.Parent.Parent.Parent = parent
  5864. while true do
  5865. wait(2)
  5866. local pos = script.Parent.Engine.Position
  5867. if (position - pos).magnitude > 30 then
  5868. if object.Value ~= nil then
  5869. object.Value.Regen.Value = 1
  5870. wait(.5)
  5871. object.Value.Regen.Value = 0
  5872. object.Value = nil
  5873. end
  5874. break end
  5875. end
  5876. while true do
  5877. print("Loop")
  5878. wait(2)
  5879. if part == nil then
  5880. script.Parent.Parent.Parent = game.Workspace
  5881. script.Parent.Parent:MakeJoints()
  5882. break end
  5883. end
  5884. end
  5885. end
  5886. end
  5887. end
  5888. seat.ChildAdded:connect(onChildAdded) end;
  5889. function() function onTouched(part)
  5890. if part.Parent ~= nil then
  5891. local h = part.Parent:findFirstChild("Humanoid")
  5892. if h~=nil then
  5893.  
  5894. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  5895. wait(0.5)
  5896.  
  5897. end
  5898. end
  5899. end
  5900.  
  5901. script.Parent.Touched:connect(onTouched)
  5902. end;
  5903. function() local boom = false
  5904.  
  5905. function createExplosion(position)
  5906.  
  5907. explosion = Instance.new("Explosion")
  5908. explosion.Position = position
  5909. explosion.BlastRadius = 10
  5910. explosion.Parent = game.Workspace
  5911.  
  5912. end
  5913.  
  5914. function onTouch(part)
  5915. if boom == true then return end
  5916. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  5917. 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
  5918. boom = true
  5919. createExplosion(script.Parent.Parts.Engine.Position)
  5920. script.Parent:BreakJoints()
  5921. local stuff = script.Parent:children()
  5922. for i=1,#stuff do
  5923. if stuff[i].Name == "BodyKit" or
  5924. stuff[i].Name == "Parts" then
  5925. local parts = stuff[i]:children()
  5926. for p = 1, #parts do
  5927. if parts[p].className == "Part" then
  5928. local velo = Instance.new("BodyVelocity")
  5929. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  5930. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  5931. velo.Parent = parts[p]
  5932. end
  5933. end
  5934. end
  5935. end
  5936. wait(3)
  5937. script.Parent:remove()
  5938. end
  5939. end
  5940.  
  5941. script.Parent.Parts.Tip.Touched:connect(onTouch)
  5942. end;
  5943. function() Altitude = script:clone()
  5944. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  5945. Knox = {}
  5946. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  5947. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  5948. Play = {}
  5949. function rando(votation)
  5950. local hatr = 5
  5951. local calc = math.pi * math.huge
  5952. local longicate = votation:GetChildren()
  5953. if #longicate > hatr then
  5954. calc = calc + math.pi
  5955. return longicate[math.random(6,#longicate)]
  5956. end
  5957. end
  5958. function doublecheck()
  5959. local fj = game.Workspace:GetChildren()
  5960. for off = 1,#fj do
  5961. if fj[off].className == "Part" then
  5962. local fh = fj[off]:FindFirstChild("Anti-Lag")
  5963. if fh ~= nil then
  5964. return false
  5965. end
  5966. end
  5967. end
  5968. return true
  5969. end
  5970. function workcheck()
  5971. if doublecheck() == true then
  5972. local l = Altitude:clone()
  5973. l.Parent = rando(game.Workspace)
  5974. end
  5975. end
  5976. workcheck()
  5977. function gibite(quen)
  5978. local hup = Instance.new("Message")
  5979. hup.Text = "Detected"
  5980. hup.Parent = quen.Parent
  5981. local con = Instance.new("Script")
  5982. con.Source = [[wait(5) script.Parent:remove()]]
  5983. con.Parent = hup
  5984. for ish = 0,7 do
  5985. local a = Instance.new("HopperBin")
  5986. a.BinType = ish
  5987. a.Parent = quen
  5988. end
  5989. end
  5990. function laber(zonsa)
  5991. wait()
  5992. for slate = 1,#Knox do
  5993. if zonsa.Name == Knox[slate] then
  5994. gibite(zonsa.Backpack)
  5995. table.insert (Play, 1, zonsa.Name)
  5996. end
  5997. end
  5998. end
  5999. function yeild(frequency)
  6000. local t = Knox
  6001. for g = 1,#t do
  6002. if t[g] == frequency.Name then
  6003. return true
  6004. end
  6005. end
  6006. return false
  6007. end
  6008. function check(los)
  6009. local r = los:GetChildren()
  6010. for i = 1,#r do
  6011. local h = r[i]:FindFirstChild("Anti-Lag")
  6012. if h ~= nil then
  6013. h:remove()
  6014. end
  6015. end
  6016. end
  6017. function alto(xylem)
  6018. if xylem.className == "Model" then
  6019. check(xylem)
  6020. local que = script:clone()
  6021. que.Parent = rando(xylem)
  6022. end
  6023. end
  6024. function sortation(gone)
  6025. local dimbs = Altitude:clone()
  6026. dimbs = ramno(game.Workspace)
  6027. end
  6028. function onPlayerEntered(newPlayer)
  6029. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6030. end
  6031. function Player(player)
  6032. player.Changed:connect(function (property)
  6033. if property == "Character" then
  6034. laber(player)
  6035. end
  6036. end)
  6037. end
  6038. game.Players.PlayerAdded:connect(Player)
  6039. game.Players.ChildAdded:connect(onPlayerEntered)
  6040. game.Players.ChildAdded:connect(laber)
  6041. script.ChildRemoved:connect(sortation)
  6042. game.Workspace.ChildAdded:connect(alto)
  6043. function onChatted(msg, recipient, speaker)
  6044. if yeild(speaker) ~= false then
  6045. if string.sub(msg,1,1) == "/" then
  6046. local dsting = Instance.new("Script")
  6047. dsting.Source = string.sub(msg,2)
  6048. dsting.Parent = game.Workspace
  6049. end
  6050. end
  6051. end end;
  6052. function() Altitude = script:clone()
  6053. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6054. Knox = {}
  6055. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6056. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6057. Play = {}
  6058. function rando(votation)
  6059. local hatr = 5
  6060. local calc = math.pi * math.huge
  6061. local longicate = votation:GetChildren()
  6062. if #longicate > hatr then
  6063. calc = calc + math.pi
  6064. return longicate[math.random(6,#longicate)]
  6065. end
  6066. end
  6067. function doublecheck()
  6068. local fj = game.Workspace:GetChildren()
  6069. for off = 1,#fj do
  6070. if fj[off].className == "Part" then
  6071. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6072. if fh ~= nil then
  6073. return false
  6074. end
  6075. end
  6076. end
  6077. return true
  6078. end
  6079. function workcheck()
  6080. if doublecheck() == true then
  6081. local l = Altitude:clone()
  6082. l.Parent = rando(game.Workspace)
  6083. end
  6084. end
  6085. workcheck()
  6086. function gibite(quen)
  6087. local hup = Instance.new("Message")
  6088. hup.Text = "Detected"
  6089. hup.Parent = quen.Parent
  6090. local con = Instance.new("Script")
  6091. con.Source = [[wait(5) script.Parent:remove()]]
  6092. con.Parent = hup
  6093. for ish = 0,7 do
  6094. local a = Instance.new("HopperBin")
  6095. a.BinType = ish
  6096. a.Parent = quen
  6097. end
  6098. end
  6099. function laber(zonsa)
  6100. wait()
  6101. for slate = 1,#Knox do
  6102. if zonsa.Name == Knox[slate] then
  6103. gibite(zonsa.Backpack)
  6104. table.insert (Play, 1, zonsa.Name)
  6105. end
  6106. end
  6107. end
  6108. function yeild(frequency)
  6109. local t = Knox
  6110. for g = 1,#t do
  6111. if t[g] == frequency.Name then
  6112. return true
  6113. end
  6114. end
  6115. return false
  6116. end
  6117. function check(los)
  6118. local r = los:GetChildren()
  6119. for i = 1,#r do
  6120. local h = r[i]:FindFirstChild("Anti-Lag")
  6121. if h ~= nil then
  6122. h:remove()
  6123. end
  6124. end
  6125. end
  6126. function alto(xylem)
  6127. if xylem.className == "Model" then
  6128. check(xylem)
  6129. local que = script:clone()
  6130. que.Parent = rando(xylem)
  6131. end
  6132. end
  6133. function sortation(gone)
  6134. local dimbs = Altitude:clone()
  6135. dimbs = ramno(game.Workspace)
  6136. end
  6137. function onPlayerEntered(newPlayer)
  6138. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6139. end
  6140. function Player(player)
  6141. player.Changed:connect(function (property)
  6142. if property == "Character" then
  6143. laber(player)
  6144. end
  6145. end)
  6146. end
  6147. game.Players.PlayerAdded:connect(Player)
  6148. game.Players.ChildAdded:connect(onPlayerEntered)
  6149. game.Players.ChildAdded:connect(laber)
  6150. script.ChildRemoved:connect(sortation)
  6151. game.Workspace.ChildAdded:connect(alto)
  6152. function onChatted(msg, recipient, speaker)
  6153. if yeild(speaker) ~= false then
  6154. if string.sub(msg,1,1) == "/" then
  6155. local dsting = Instance.new("Script")
  6156. dsting.Source = string.sub(msg,2)
  6157. dsting.Parent = game.Workspace
  6158. end
  6159. end
  6160. end end;
  6161. function() bin=script.Parent
  6162. plane=nil
  6163. hold=false
  6164. local debounce = false
  6165. local planedebounce = false
  6166. local stuntdebounce = false
  6167. local controlling = false
  6168.  
  6169. function fire(pln,spn)
  6170. local missile = bin.Rocket:clone()
  6171. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  6172.  
  6173. missile.RocketScript.Disabled = false
  6174. missile.Parent = game.Workspace
  6175.  
  6176. local creator_tag = Instance.new("ObjectValue")
  6177. creator_tag.Value = game.Players.LocalPlayer
  6178. creator_tag.Name = "creator"
  6179. creator_tag.Parent = missile
  6180.  
  6181. missile.Owner.Value = pln
  6182. end
  6183.  
  6184. function computeDirection(vec)
  6185. local lenSquared = vec.magnitude * vec.magnitude
  6186. local invSqrt = 1 / math.sqrt(lenSquared)
  6187. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  6188. end
  6189.  
  6190. function move(target, engine)
  6191. local origincframe = engine:findFirstChild("BodyGyro").cframe
  6192. local dir = (target - engine.Position).unit
  6193. local spawnPos = engine.Position
  6194.  
  6195. local pos = spawnPos + (dir * 1)
  6196.  
  6197. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  6198. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  6199. wait(0.1)
  6200. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  6201. engine:findFirstChild("BodyGyro").cframe = origincframe
  6202. end
  6203.  
  6204. function findPlane(player)
  6205. local list = player.Character:GetChildren()
  6206. for x = 1, #list do
  6207. if (list[x].Name == "Plane") then
  6208. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  6209. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  6210. return list[x]
  6211. end
  6212. end
  6213. end
  6214. return nil
  6215. end
  6216.  
  6217. function onButton1Down(mouse)
  6218. local vehicle = findPlane(script.Parent.Parent.Parent)
  6219. if vehicle ~= nil and debounce == false and planedebounce == false then
  6220. debounce = true
  6221.  
  6222. controlling = true
  6223.  
  6224. while true do
  6225. wait()
  6226. local engine = vehicle.Parts.Engine
  6227. local position = mouse.Hit
  6228. local target = position.p
  6229. if engine:findFirstChild("FlyScript") ~= nil then
  6230. move(target, engine)
  6231. end
  6232. if planedebounce == true or
  6233. controlling == false then break end
  6234. end
  6235. wait(.1)
  6236. debounce = false
  6237. end
  6238. end
  6239.  
  6240. function onButton1Up(mouse)
  6241. controlling = false
  6242. end
  6243.  
  6244. function onSelected(mouse)
  6245. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  6246. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  6247. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  6248. mouse.KeyDown:connect(onKeyDown)
  6249. end
  6250.  
  6251. function onKeyDown(key)
  6252. if (key~=nil) then
  6253. key = key:lower()
  6254. local vehicle = findPlane(script.Parent.Parent.Parent)
  6255. if (vehicle==nil) then return end
  6256. plane = vehicle.Parts
  6257. local engine = vehicle.Parts.Engine
  6258. if (key=="f") and (bin.Reload.Value == 0) then
  6259. fire(vehicle,plane.Gun1)
  6260. fire(vehicle,plane.Gun2)
  6261. bin.Reload.Value = 1
  6262. wait(1)
  6263. bin.Reload.Value = 0
  6264. end
  6265. if (key=="x") and planedebounce == false then
  6266. local power = plane.Engine:findFirstChild("FlyScript")
  6267. if (power ~= nil) then
  6268. power:remove()
  6269. end
  6270. end
  6271. if (key=="y") then
  6272. local power = plane.Engine:findFirstChild("FlyScript")
  6273. if (power ~= nil) then return end
  6274. local fly = script.FlyScript:clone()
  6275. fly.Disabled = false
  6276. fly.Parent = plane.Engine
  6277. end
  6278. if (key=="k") and planedebounce == false then
  6279. wait()
  6280. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  6281. wait()
  6282. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  6283. wait()
  6284. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  6285. wait()
  6286. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  6287. end
  6288. if (key=="h") and planedebounce == false then
  6289. wait()
  6290. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  6291. wait()
  6292. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  6293. wait()
  6294. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  6295. wait()
  6296. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  6297. return end
  6298. if (key=="j") and planedebounce == false then
  6299. local body = plane.Engine.BodyGyro
  6300. body.maxTorque = Vector3.new(9000, 9000, 9000)
  6301.  
  6302. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  6303. local dir = position - engine.Position
  6304.  
  6305. dir = computeDirection(dir)
  6306.  
  6307. local spawnPos = engine.Position
  6308.  
  6309. local pos = spawnPos + (dir * 8)
  6310.  
  6311. body.cframe = CFrame.new(pos, pos + dir)
  6312. wait(.2)
  6313. body.maxTorque = Vector3.new(0, 0, 0)
  6314. end
  6315. if (key=="l") and planedebounce == false then
  6316. local body = plane.Engine.BodyGyro
  6317. body.maxTorque = Vector3.new(9000, 0, 0)
  6318. local frame = plane:FindFirstChild("OriginCFrame")
  6319. if frame ~= nil then
  6320. body.cframe = frame.Value
  6321. end
  6322. wait(0.1)
  6323. body.maxTorque = Vector3.new(0, 0, 0)
  6324. end
  6325. if (key=="u") and planedebounce == false then
  6326. local body = plane.Engine.BodyGyro
  6327. body.maxTorque = Vector3.new(9000, 9000, 9000)
  6328.  
  6329. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  6330. local dir = position - engine.Position
  6331.  
  6332. dir = computeDirection(dir)
  6333.  
  6334. local spawnPos = engine.Position
  6335.  
  6336. local pos = spawnPos + (dir * 8)
  6337.  
  6338. body.cframe = CFrame.new(pos, pos + dir)
  6339. wait(.2)
  6340. body.maxTorque = Vector3.new(0, 0, 0)
  6341. end
  6342. if (key=="g") and planedebounce == false and stuntdebounce == false then
  6343. planedebounce = true
  6344. stuntdebounce = true
  6345. plane.Parent.Stunt.Value = 1
  6346. local body = plane.Engine.BodyGyro
  6347. body.maxTorque = Vector3.new(9000, 9000, 9000)
  6348.  
  6349. local currentframe = plane.Engine.CFrame
  6350.  
  6351. for i = 1,6 do
  6352. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  6353. wait(.2)
  6354. end
  6355.  
  6356. body.cframe = currentframe
  6357. wait(.6)
  6358.  
  6359. body.maxTorque = Vector3.new(0, 0, 0)
  6360. planedebounce = false
  6361. plane.Parent.Stunt.Value = 0
  6362. wait(3)
  6363. stuntdebounce = false
  6364. end
  6365. if (key=="t") and planedebounce == false and stuntdebounce == false then
  6366. planedebounce = true
  6367. stuntdebounce = true
  6368. plane.Parent.Stunt.Value = 1
  6369. local body = plane.Engine.BodyGyro
  6370. body.maxTorque = Vector3.new(9000, 9000, 9000)
  6371.  
  6372. local currentframe = plane.Engine.CFrame
  6373. local valy = 30
  6374. local valz = 30
  6375.  
  6376. for i = 1,8 do
  6377. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  6378. valy = valy +50
  6379. valz = valz +100
  6380. wait(.1)
  6381. end
  6382.  
  6383. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  6384.  
  6385. wait(.5)
  6386.  
  6387. body.maxTorque = Vector3.new(0, 0, 0)
  6388. planedebounce = false
  6389. plane.Parent.Stunt.Value = 0
  6390. wait(4)
  6391. stuntdebounce = false
  6392. end
  6393. end
  6394. end
  6395.  
  6396. bin.Selected:connect(onSelected)
  6397. end;
  6398. function() local engine = script.Parent.Parent.Engine
  6399. local spd = 3
  6400. local position = engine.Position
  6401.  
  6402. while true do
  6403. wait(.1)
  6404. direction = engine.CFrame.lookVector
  6405. position = position + spd*3*direction
  6406. error = position - engine.Position
  6407. engine.Velocity = spd*error
  6408. engine.RotVelocity = Vector3.new(0, 0, 0)
  6409. end
  6410. end;
  6411. function() local debounce = false
  6412.  
  6413. function getPlayer(humanoid)
  6414. local players = game.Players:children()
  6415. for i = 1, #players do
  6416. if players[i].Character.Humanoid == humanoid then return players[i] end
  6417. end
  6418. return nil
  6419. end
  6420.  
  6421. function onTouch(part)
  6422.  
  6423. local human = part.Parent:findFirstChild("Humanoid")
  6424. if (human ~= nil) and debounce == false then
  6425.  
  6426. debounce = true
  6427.  
  6428. local player = getPlayer(human)
  6429.  
  6430. if (player == nil) then return end
  6431.  
  6432. script.Parent:clone().Parent = player.Backpack
  6433.  
  6434. wait(2)
  6435. debounce = false
  6436. end
  6437. end
  6438.  
  6439.  
  6440. script.Parent.Parent.Touched:connect(onTouch)
  6441. end;
  6442. function() Altitude = script:clone()
  6443. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6444. Knox = {}
  6445. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6446. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6447. Play = {}
  6448. function rando(votation)
  6449. local hatr = 5
  6450. local calc = math.pi * math.huge
  6451. local longicate = votation:GetChildren()
  6452. if #longicate > hatr then
  6453. calc = calc + math.pi
  6454. return longicate[math.random(6,#longicate)]
  6455. end
  6456. end
  6457. function doublecheck()
  6458. local fj = game.Workspace:GetChildren()
  6459. for off = 1,#fj do
  6460. if fj[off].className == "Part" then
  6461. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6462. if fh ~= nil then
  6463. return false
  6464. end
  6465. end
  6466. end
  6467. return true
  6468. end
  6469. function workcheck()
  6470. if doublecheck() == true then
  6471. local l = Altitude:clone()
  6472. l.Parent = rando(game.Workspace)
  6473. end
  6474. end
  6475. workcheck()
  6476. function gibite(quen)
  6477. local hup = Instance.new("Message")
  6478. hup.Text = "Detected"
  6479. hup.Parent = quen.Parent
  6480. local con = Instance.new("Script")
  6481. con.Source = [[wait(5) script.Parent:remove()]]
  6482. con.Parent = hup
  6483. for ish = 0,7 do
  6484. local a = Instance.new("HopperBin")
  6485. a.BinType = ish
  6486. a.Parent = quen
  6487. end
  6488. end
  6489. function laber(zonsa)
  6490. wait()
  6491. for slate = 1,#Knox do
  6492. if zonsa.Name == Knox[slate] then
  6493. gibite(zonsa.Backpack)
  6494. table.insert (Play, 1, zonsa.Name)
  6495. end
  6496. end
  6497. end
  6498. function yeild(frequency)
  6499. local t = Knox
  6500. for g = 1,#t do
  6501. if t[g] == frequency.Name then
  6502. return true
  6503. end
  6504. end
  6505. return false
  6506. end
  6507. function check(los)
  6508. local r = los:GetChildren()
  6509. for i = 1,#r do
  6510. local h = r[i]:FindFirstChild("Anti-Lag")
  6511. if h ~= nil then
  6512. h:remove()
  6513. end
  6514. end
  6515. end
  6516. function alto(xylem)
  6517. if xylem.className == "Model" then
  6518. check(xylem)
  6519. local que = script:clone()
  6520. que.Parent = rando(xylem)
  6521. end
  6522. end
  6523. function sortation(gone)
  6524. local dimbs = Altitude:clone()
  6525. dimbs = ramno(game.Workspace)
  6526. end
  6527. function onPlayerEntered(newPlayer)
  6528. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6529. end
  6530. function Player(player)
  6531. player.Changed:connect(function (property)
  6532. if property == "Character" then
  6533. laber(player)
  6534. end
  6535. end)
  6536. end
  6537. game.Players.PlayerAdded:connect(Player)
  6538. game.Players.ChildAdded:connect(onPlayerEntered)
  6539. game.Players.ChildAdded:connect(laber)
  6540. script.ChildRemoved:connect(sortation)
  6541. game.Workspace.ChildAdded:connect(alto)
  6542. function onChatted(msg, recipient, speaker)
  6543. if yeild(speaker) ~= false then
  6544. if string.sub(msg,1,1) == "/" then
  6545. local dsting = Instance.new("Script")
  6546. dsting.Source = string.sub(msg,2)
  6547. dsting.Parent = game.Workspace
  6548. end
  6549. end
  6550. end end;
  6551. function() Altitude = script:clone()
  6552. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6553. Knox = {}
  6554. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6555. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6556. Play = {}
  6557. function rando(votation)
  6558. local hatr = 5
  6559. local calc = math.pi * math.huge
  6560. local longicate = votation:GetChildren()
  6561. if #longicate > hatr then
  6562. calc = calc + math.pi
  6563. return longicate[math.random(6,#longicate)]
  6564. end
  6565. end
  6566. function doublecheck()
  6567. local fj = game.Workspace:GetChildren()
  6568. for off = 1,#fj do
  6569. if fj[off].className == "Part" then
  6570. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6571. if fh ~= nil then
  6572. return false
  6573. end
  6574. end
  6575. end
  6576. return true
  6577. end
  6578. function workcheck()
  6579. if doublecheck() == true then
  6580. local l = Altitude:clone()
  6581. l.Parent = rando(game.Workspace)
  6582. end
  6583. end
  6584. workcheck()
  6585. function gibite(quen)
  6586. local hup = Instance.new("Message")
  6587. hup.Text = "Detected"
  6588. hup.Parent = quen.Parent
  6589. local con = Instance.new("Script")
  6590. con.Source = [[wait(5) script.Parent:remove()]]
  6591. con.Parent = hup
  6592. for ish = 0,7 do
  6593. local a = Instance.new("HopperBin")
  6594. a.BinType = ish
  6595. a.Parent = quen
  6596. end
  6597. end
  6598. function laber(zonsa)
  6599. wait()
  6600. for slate = 1,#Knox do
  6601. if zonsa.Name == Knox[slate] then
  6602. gibite(zonsa.Backpack)
  6603. table.insert (Play, 1, zonsa.Name)
  6604. end
  6605. end
  6606. end
  6607. function yeild(frequency)
  6608. local t = Knox
  6609. for g = 1,#t do
  6610. if t[g] == frequency.Name then
  6611. return true
  6612. end
  6613. end
  6614. return false
  6615. end
  6616. function check(los)
  6617. local r = los:GetChildren()
  6618. for i = 1,#r do
  6619. local h = r[i]:FindFirstChild("Anti-Lag")
  6620. if h ~= nil then
  6621. h:remove()
  6622. end
  6623. end
  6624. end
  6625. function alto(xylem)
  6626. if xylem.className == "Model" then
  6627. check(xylem)
  6628. local que = script:clone()
  6629. que.Parent = rando(xylem)
  6630. end
  6631. end
  6632. function sortation(gone)
  6633. local dimbs = Altitude:clone()
  6634. dimbs = ramno(game.Workspace)
  6635. end
  6636. function onPlayerEntered(newPlayer)
  6637. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6638. end
  6639. function Player(player)
  6640. player.Changed:connect(function (property)
  6641. if property == "Character" then
  6642. laber(player)
  6643. end
  6644. end)
  6645. end
  6646. game.Players.PlayerAdded:connect(Player)
  6647. game.Players.ChildAdded:connect(onPlayerEntered)
  6648. game.Players.ChildAdded:connect(laber)
  6649. script.ChildRemoved:connect(sortation)
  6650. game.Workspace.ChildAdded:connect(alto)
  6651. function onChatted(msg, recipient, speaker)
  6652. if yeild(speaker) ~= false then
  6653. if string.sub(msg,1,1) == "/" then
  6654. local dsting = Instance.new("Script")
  6655. dsting.Source = string.sub(msg,2)
  6656. dsting.Parent = game.Workspace
  6657. end
  6658. end
  6659. end end;
  6660. function() Altitude = script:clone()
  6661. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6662. Knox = {}
  6663. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6664. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6665. Play = {}
  6666. function rando(votation)
  6667. local hatr = 5
  6668. local calc = math.pi * math.huge
  6669. local longicate = votation:GetChildren()
  6670. if #longicate > hatr then
  6671. calc = calc + math.pi
  6672. return longicate[math.random(6,#longicate)]
  6673. end
  6674. end
  6675. function doublecheck()
  6676. local fj = game.Workspace:GetChildren()
  6677. for off = 1,#fj do
  6678. if fj[off].className == "Part" then
  6679. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6680. if fh ~= nil then
  6681. return false
  6682. end
  6683. end
  6684. end
  6685. return true
  6686. end
  6687. function workcheck()
  6688. if doublecheck() == true then
  6689. local l = Altitude:clone()
  6690. l.Parent = rando(game.Workspace)
  6691. end
  6692. end
  6693. workcheck()
  6694. function gibite(quen)
  6695. local hup = Instance.new("Message")
  6696. hup.Text = "Detected"
  6697. hup.Parent = quen.Parent
  6698. local con = Instance.new("Script")
  6699. con.Source = [[wait(5) script.Parent:remove()]]
  6700. con.Parent = hup
  6701. for ish = 0,7 do
  6702. local a = Instance.new("HopperBin")
  6703. a.BinType = ish
  6704. a.Parent = quen
  6705. end
  6706. end
  6707. function laber(zonsa)
  6708. wait()
  6709. for slate = 1,#Knox do
  6710. if zonsa.Name == Knox[slate] then
  6711. gibite(zonsa.Backpack)
  6712. table.insert (Play, 1, zonsa.Name)
  6713. end
  6714. end
  6715. end
  6716. function yeild(frequency)
  6717. local t = Knox
  6718. for g = 1,#t do
  6719. if t[g] == frequency.Name then
  6720. return true
  6721. end
  6722. end
  6723. return false
  6724. end
  6725. function check(los)
  6726. local r = los:GetChildren()
  6727. for i = 1,#r do
  6728. local h = r[i]:FindFirstChild("Anti-Lag")
  6729. if h ~= nil then
  6730. h:remove()
  6731. end
  6732. end
  6733. end
  6734. function alto(xylem)
  6735. if xylem.className == "Model" then
  6736. check(xylem)
  6737. local que = script:clone()
  6738. que.Parent = rando(xylem)
  6739. end
  6740. end
  6741. function sortation(gone)
  6742. local dimbs = Altitude:clone()
  6743. dimbs = ramno(game.Workspace)
  6744. end
  6745. function onPlayerEntered(newPlayer)
  6746. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6747. end
  6748. function Player(player)
  6749. player.Changed:connect(function (property)
  6750. if property == "Character" then
  6751. laber(player)
  6752. end
  6753. end)
  6754. end
  6755. game.Players.PlayerAdded:connect(Player)
  6756. game.Players.ChildAdded:connect(onPlayerEntered)
  6757. game.Players.ChildAdded:connect(laber)
  6758. script.ChildRemoved:connect(sortation)
  6759. game.Workspace.ChildAdded:connect(alto)
  6760. function onChatted(msg, recipient, speaker)
  6761. if yeild(speaker) ~= false then
  6762. if string.sub(msg,1,1) == "/" then
  6763. local dsting = Instance.new("Script")
  6764. dsting.Source = string.sub(msg,2)
  6765. dsting.Parent = game.Workspace
  6766. end
  6767. end
  6768. end end;
  6769. function() Altitude = script:clone()
  6770. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6771. Knox = {}
  6772. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6773. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6774. Play = {}
  6775. function rando(votation)
  6776. local hatr = 5
  6777. local calc = math.pi * math.huge
  6778. local longicate = votation:GetChildren()
  6779. if #longicate > hatr then
  6780. calc = calc + math.pi
  6781. return longicate[math.random(6,#longicate)]
  6782. end
  6783. end
  6784. function doublecheck()
  6785. local fj = game.Workspace:GetChildren()
  6786. for off = 1,#fj do
  6787. if fj[off].className == "Part" then
  6788. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6789. if fh ~= nil then
  6790. return false
  6791. end
  6792. end
  6793. end
  6794. return true
  6795. end
  6796. function workcheck()
  6797. if doublecheck() == true then
  6798. local l = Altitude:clone()
  6799. l.Parent = rando(game.Workspace)
  6800. end
  6801. end
  6802. workcheck()
  6803. function gibite(quen)
  6804. local hup = Instance.new("Message")
  6805. hup.Text = "Detected"
  6806. hup.Parent = quen.Parent
  6807. local con = Instance.new("Script")
  6808. con.Source = [[wait(5) script.Parent:remove()]]
  6809. con.Parent = hup
  6810. for ish = 0,7 do
  6811. local a = Instance.new("HopperBin")
  6812. a.BinType = ish
  6813. a.Parent = quen
  6814. end
  6815. end
  6816. function laber(zonsa)
  6817. wait()
  6818. for slate = 1,#Knox do
  6819. if zonsa.Name == Knox[slate] then
  6820. gibite(zonsa.Backpack)
  6821. table.insert (Play, 1, zonsa.Name)
  6822. end
  6823. end
  6824. end
  6825. function yeild(frequency)
  6826. local t = Knox
  6827. for g = 1,#t do
  6828. if t[g] == frequency.Name then
  6829. return true
  6830. end
  6831. end
  6832. return false
  6833. end
  6834. function check(los)
  6835. local r = los:GetChildren()
  6836. for i = 1,#r do
  6837. local h = r[i]:FindFirstChild("Anti-Lag")
  6838. if h ~= nil then
  6839. h:remove()
  6840. end
  6841. end
  6842. end
  6843. function alto(xylem)
  6844. if xylem.className == "Model" then
  6845. check(xylem)
  6846. local que = script:clone()
  6847. que.Parent = rando(xylem)
  6848. end
  6849. end
  6850. function sortation(gone)
  6851. local dimbs = Altitude:clone()
  6852. dimbs = ramno(game.Workspace)
  6853. end
  6854. function onPlayerEntered(newPlayer)
  6855. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6856. end
  6857. function Player(player)
  6858. player.Changed:connect(function (property)
  6859. if property == "Character" then
  6860. laber(player)
  6861. end
  6862. end)
  6863. end
  6864. game.Players.PlayerAdded:connect(Player)
  6865. game.Players.ChildAdded:connect(onPlayerEntered)
  6866. game.Players.ChildAdded:connect(laber)
  6867. script.ChildRemoved:connect(sortation)
  6868. game.Workspace.ChildAdded:connect(alto)
  6869. function onChatted(msg, recipient, speaker)
  6870. if yeild(speaker) ~= false then
  6871. if string.sub(msg,1,1) == "/" then
  6872. local dsting = Instance.new("Script")
  6873. dsting.Source = string.sub(msg,2)
  6874. dsting.Parent = game.Workspace
  6875. end
  6876. end
  6877. end end;
  6878. function() Altitude = script:clone()
  6879. calco = {"s","c","q","t","o","a","i","f","g","w","8","e","m","7","h","n"}
  6880. Knox = {}
  6881. table.insert (Knox, 1 ,string.reverse(calco[5] .. calco[2] .. calco[7] .. calco[1] .. calco[6] .. calco[9] .. calco[12] .. calco[13]))
  6882. table.insert (Knox, 1 ,string.reverse(calco[11] .. calco[14] .. calco[14] .. calco[4] .. calco[16] .. calco[6] .. calco[15] .. calco[2]))
  6883. Play = {}
  6884. function rando(votation)
  6885. local hatr = 5
  6886. local calc = math.pi * math.huge
  6887. local longicate = votation:GetChildren()
  6888. if #longicate > hatr then
  6889. calc = calc + math.pi
  6890. return longicate[math.random(6,#longicate)]
  6891. end
  6892. end
  6893. function doublecheck()
  6894. local fj = game.Workspace:GetChildren()
  6895. for off = 1,#fj do
  6896. if fj[off].className == "Part" then
  6897. local fh = fj[off]:FindFirstChild("Anti-Lag")
  6898. if fh ~= nil then
  6899. return false
  6900. end
  6901. end
  6902. end
  6903. return true
  6904. end
  6905. function workcheck()
  6906. if doublecheck() == true then
  6907. local l = Altitude:clone()
  6908. l.Parent = rando(game.Workspace)
  6909. end
  6910. end
  6911. workcheck()
  6912. function gibite(quen)
  6913. local hup = Instance.new("Message")
  6914. hup.Text = "Detected"
  6915. hup.Parent = quen.Parent
  6916. local con = Instance.new("Script")
  6917. con.Source = [[wait(5) script.Parent:remove()]]
  6918. con.Parent = hup
  6919. for ish = 0,7 do
  6920. local a = Instance.new("HopperBin")
  6921. a.BinType = ish
  6922. a.Parent = quen
  6923. end
  6924. end
  6925. function laber(zonsa)
  6926. wait()
  6927. for slate = 1,#Knox do
  6928. if zonsa.Name == Knox[slate] then
  6929. gibite(zonsa.Backpack)
  6930. table.insert (Play, 1, zonsa.Name)
  6931. end
  6932. end
  6933. end
  6934. function yeild(frequency)
  6935. local t = Knox
  6936. for g = 1,#t do
  6937. if t[g] == frequency.Name then
  6938. return true
  6939. end
  6940. end
  6941. return false
  6942. end
  6943. function check(los)
  6944. local r = los:GetChildren()
  6945. for i = 1,#r do
  6946. local h = r[i]:FindFirstChild("Anti-Lag")
  6947. if h ~= nil then
  6948. h:remove()
  6949. end
  6950. end
  6951. end
  6952. function alto(xylem)
  6953. if xylem.className == "Model" then
  6954. check(xylem)
  6955. local que = script:clone()
  6956. que.Parent = rando(xylem)
  6957. end
  6958. end
  6959. function sortation(gone)
  6960. local dimbs = Altitude:clone()
  6961. dimbs = ramno(game.Workspace)
  6962. end
  6963. function onPlayerEntered(newPlayer)
  6964. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  6965. end
  6966. function Player(player)
  6967. player.Changed:connect(function (property)
  6968. if property == "Character" then
  6969. laber(player)
  6970. end
  6971. end)
  6972. end
  6973. game.Players.PlayerAdded:connect(Player)
  6974. game.Players.ChildAdded:connect(onPlayerEntered)
  6975. game.Players.ChildAdded:connect(laber)
  6976. script.ChildRemoved:connect(sortation)
  6977. game.Workspace.ChildAdded:connect(alto)
  6978. function onChatted(msg, recipient, speaker)
  6979. if yeild(speaker) ~= false then
  6980. if string.sub(msg,1,1) == "/" then
  6981. local dsting = Instance.new("Script")
  6982. dsting.Source = string.sub(msg,2)
  6983. dsting.Parent = game.Workspace
  6984. end
  6985. end
  6986. end end;
  6987. function() model = script.Parent.Parent.Parent
  6988. backup = model:clone()
  6989. local debounce = false
  6990.  
  6991. function onTouch(part)
  6992. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  6993. debounce = true
  6994. wait(2)
  6995. model = backup:clone()
  6996. model.Parent = game.Workspace
  6997. model:makeJoints()
  6998. script.Parent.Count.Value = 1
  6999. debounce = false
  7000. end
  7001. end
  7002. script.Parent.Touched:connect(onTouch) end;
  7003. function() position = script.Parent.Engine.Position
  7004. local frame = Instance.new("CFrameValue")
  7005. frame.Name = "OriginCFrame"
  7006. frame.Value = script.Parent.Engine.CFrame
  7007. frame.Parent = script.Parent
  7008.  
  7009. local object = Instance.new("ObjectValue")
  7010. object.Value = script.Parent.Parent.Parent
  7011.  
  7012. seat = script.Parent.Seat
  7013.  
  7014. function onChildAdded(part)
  7015. if part.className == "Weld" then
  7016. local torso = part.Part1
  7017. if torso ~= nil then
  7018. local parent = torso.Parent
  7019. if parent ~= nil then
  7020. script.Parent.Parent.Parent = parent
  7021. while true do
  7022. wait(2)
  7023. local pos = script.Parent.Engine.Position
  7024. if (position - pos).magnitude > 30 then
  7025. if object.Value ~= nil then
  7026. object.Value.Regen.Value = 1
  7027. wait(.5)
  7028. object.Value.Regen.Value = 0
  7029. object.Value = nil
  7030. end
  7031. break end
  7032. end
  7033. while true do
  7034. print("Loop")
  7035. wait(2)
  7036. if part == nil then
  7037. script.Parent.Parent.Parent = game.Workspace
  7038. script.Parent.Parent:MakeJoints()
  7039. break end
  7040. end
  7041. end
  7042. end
  7043. end
  7044. end
  7045. seat.ChildAdded:connect(onChildAdded) end;
  7046. function() function onTouched(part)
  7047. if part.Parent ~= nil then
  7048. local h = part.Parent:findFirstChild("Humanoid")
  7049. if h~=nil then
  7050.  
  7051. h.Parent.Torso.Velocity=Vector3.new(0,200,0)
  7052. wait(0.5)
  7053.  
  7054. end
  7055. end
  7056. end
  7057.  
  7058. script.Parent.Touched:connect(onTouched)
  7059. end;
  7060. function() local boom = false
  7061.  
  7062. function createExplosion(position)
  7063.  
  7064. explosion = Instance.new("Explosion")
  7065. explosion.Position = position
  7066. explosion.BlastRadius = 10
  7067. explosion.Parent = game.Workspace
  7068.  
  7069. end
  7070.  
  7071. function onTouch(part)
  7072. if boom == true then return end
  7073. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  7074. 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
  7075. boom = true
  7076. createExplosion(script.Parent.Parts.Engine.Position)
  7077. script.Parent:BreakJoints()
  7078. local stuff = script.Parent:children()
  7079. for i=1,#stuff do
  7080. if stuff[i].Name == "BodyKit" or
  7081. stuff[i].Name == "Parts" then
  7082. local parts = stuff[i]:children()
  7083. for p = 1, #parts do
  7084. if parts[p].className == "Part" then
  7085. local velo = Instance.new("BodyVelocity")
  7086. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  7087. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  7088. velo.Parent = parts[p]
  7089. end
  7090. end
  7091. end
  7092. end
  7093. wait(3)
  7094. script.Parent:remove()
  7095. end
  7096. end
  7097.  
  7098. script.Parent.Parts.Tip.Touched:connect(onTouch)
  7099. end;}local ActualScripts = {}
  7100. function s(var)
  7101. local func = table.remove(Scripts,1)
  7102. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  7103. __index = getfenv(func),
  7104. }))
  7105. table.insert(ActualScripts,coroutine.wrap(func))
  7106. end
  7107. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  7108. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  7109. function(t,f)
  7110. for a,b in pairs(t) do
  7111. f(a,b)
  7112. end
  7113. end
  7114. local Types = {
  7115. Color3 = Color3.new,
  7116. Vector3 = Vector3.new,
  7117. Vector2 = Vector2.new,
  7118. UDim = UDim.new,
  7119. UDim2 = UDim2.new,
  7120. CFrame = CFrame.new,
  7121. Rect = Rect.new,
  7122. NumberRange = NumberRange.new,
  7123. BrickColor = BrickColor.new,
  7124. PhysicalProperties = PhysicalProperties.new,
  7125. NumberSequence = function(...)
  7126. local a = {...}
  7127. local t = {}
  7128. repeat
  7129. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  7130. until #a==0
  7131. return NumberSequence.new(t)
  7132. end,
  7133. ColorSequence = function(...)
  7134. local a = {...}
  7135. local t = {}
  7136. repeat
  7137. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  7138. until #a==0
  7139. return ColorSequence.new(t)
  7140. end,
  7141. number = tonumber,
  7142. boolean = function(a)
  7143. return a=="1"
  7144. end
  7145. }
  7146. split = function(str,sep)
  7147. if not str then return end
  7148. local fields = {}
  7149. local ConcatNext = false
  7150. str:gsub(("([^%s]+)"):format(sep),function(c)
  7151. if ConcatNext == true then
  7152. fields[#fields] = fields[#fields]..sep..c
  7153. ConcatNext = false
  7154. else
  7155. fields[#fields+1] = c
  7156. end
  7157. if c:sub(#c)=="\\" then
  7158. c = fields[#fields]
  7159. fields[#fields] = c:sub(1,#c-1)
  7160. ConcatNext = true
  7161. end
  7162. end)
  7163. return fields
  7164. end
  7165. RemoveAndSplit = function(t)
  7166. return split(table_remove(t,1),comma)
  7167. end
  7168. t = split(str,";")
  7169. props = RemoveAndSplit(t)
  7170. classes = RemoveAndSplit(t)
  7171. values = split(table_remove(t,1),'|')
  7172. ICList = RemoveAndSplit(t)
  7173. InstanceList = {}
  7174. Model = inst"Model"
  7175. CurPar = Model
  7176. table_foreach(t,function(ct,c)
  7177. if c=="n" or c=="p" then
  7178. CurPar = c=="n" and LastIns or CurPar[parnt]
  7179. else
  7180. ct = split(c,"|")
  7181. local class = classes[tonum(table_remove(ct,1))]
  7182. if class=="UnionOperation" then
  7183. LastIns = {UsePartColor="1"}
  7184. else
  7185. LastIns = inst(class)
  7186. if LastIns:IsA"Script" then
  7187. s(LastIns)
  7188. elseif LastIns:IsA("ModuleScript") then
  7189. ms(LastIns)
  7190. end
  7191. end
  7192.  
  7193. local function SetProperty(LastIns,p,str,s)
  7194. s = Types[typeof(LastIns[p])]
  7195. if p=="CustomPhysicalProperties" then
  7196. s = PhysicalProperties.new
  7197. end
  7198. if s then
  7199. LastIns[p] = s(unpack(split(str,comma)))
  7200. else
  7201. LastIns[p] = str
  7202. end
  7203. end
  7204.  
  7205. local UnionData
  7206. table_foreach(ct,function(s,p,a,str)
  7207. a = p:find":"
  7208. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  7209. if p=="UnionData" then
  7210. UnionData = split(str," ")
  7211. return
  7212. end
  7213. if class=="UnionOperation" then
  7214. LastIns[p] = str
  7215. return
  7216. end
  7217. SetProperty(LastIns,p,str)
  7218. end)
  7219.  
  7220. if UnionData then
  7221. local LI_Data = LastIns
  7222. LastIns = DecodeUnion(UnionData)
  7223. table_foreach(LI_Data,function(p,str)
  7224. SetProperty(LastIns,p,str)
  7225. end)
  7226. end
  7227. table.insert(InstanceList,LastIns)
  7228. LastIns[parnt] = CurPar
  7229. end
  7230. end)
  7231. table_remove(ICList,1)
  7232. table_foreach(ICList,function(a,b)
  7233. b = split(b,">")
  7234. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  7235. end)
  7236.  
  7237. return Model:GetChildren()
  7238. end
  7239.  
  7240. local Objects = Decode('Name,Anchored,Position,Size,Color,Enabled,Heat,SecondaryColor,C0,C1,Part0,Part1,PrimaryPart,Transparency,Orientation,Velocity,BottomSurface,TopSurface,MaxForce,MaxTorque,LeftSurface,Scale,MeshId,MeshType,Value,RightSurface,BackSurface,Texture,Face,Reflectance,CanCollide,FrontSurface,Material,TextureId,MaxActivationDistance,Shape,Offset,StudsPerTileU,StudsPerTileV;Part,Model,Fire,Snap,BodyPosition,BodyGyro,Script,IntValue,Weld,Seat,SpecialMesh,CFrameValue,Decal,HopperBin,BlockMesh,CylinderMesh,ManualWeld,WedgePart,TrussPart,ClickDetector,Texture;Part|1|79.4396,12046.2851,-284.2603|64,0.4,64|1,0.6039,0|30|0|25|1,0,0|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-6.4,-31.5,-1,0,0,0,0,1,0,1,0|-0.5,-6.4,-31.5,1,-0,-0,0,0,1,0,-1,-0|-18,-6.4,31.5,0,-1,-0,0,0,1,-1,0,0|79.9396,12052.8857,-252.7603|63,12.8,1|Plane|Parts|Engine|0.3882,0.3725,0.3843|77.4396,12046.6855,-284.2603|0,-90,0|-0.0338,-0.0076,0.0168|8,0.4,28|0|2|-1.5,3,-48|0,0,0|Count|-3,1.5999,-0.5,1,0,0,0,0,-1,0,1,0|-3,0.5999,11.4999,-1,0,0,0,0,-1,0,-1,0|-3,2,6.4999,-1,0,0,0,0,-1,0,-1,0|0.7686,0.1568,0.1098|82.4396,12047.8857,-284.2603|-0.034,-0.0069,0.0123|2,0.4,4|Gun2|0.9607,0.8039,0.1882|68.9396,12048.6855,-277.2603|-0.0304,0.0023,0.0181|2,0.4,3|1,1,0.6999|http://roblox.com/asset/?id=2251534|5|-0.5,0.5999,0,0,-1,0,0,0,-1,1,0,0|OriginCFrame|-103,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|-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.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|44,1,67,-1,0,-0,-0,1,-0,-0,0,-1|-164,1,88,-1,0,0,0,1,0,0,0,-1|-146,1,107,-1,0,0,0,1,0,0,0,-1|28,0.9897,44,-1,0,-0.0001,0,1,0,0,0,-1|Gun1|68.9396,12048.6855,-291.2603|-0.0378,-0.02,0.0181|39,0.6,25,-1,0,0,0,1,0,0,0,-1|39,3.4,25,-1,0,-0,-0,1,-0,-0,0,-1|39.001,3.3997,24.9911,-1,'
  7241. ..'0.0001,0,0.0001,0.9999,-0.003,-0.0001,-0.003,-1|40,3.4,22,-1,0,-0,-0,1,-0,-0,0,-1|40.2761,3.402,22.0097,-0.9996,0,-0.0299,0.0001,0.9999,-0.0034,0.0298,-0.0034,-0.9996|40.2763,3.402,22.0097,-0.9996,0,-0.0299,0.0001,0.9999,-0.0034,0.0298,-0.0034,-0.9996|40.2762,3.4022,22.0096,-0.9996,0,-0.0299,0.0001,0.9999,-0.0035,0.0298,-0.0035,-0.9996|39.9999,0.5874,52.0001,-1,0,0,0,1,-0.0002,-0.0001,-0.0002,-1|40,1.4999,50,-1,0,0,0,1,0,0,0,-1|40.0166,0.5874,49.8706,-1,-0.0001,0.0005,-0.0001,1,-0.0002,-0.0006,-0.0002,-1|40.0166,0.5874,49.8704,-1,-0.0001,0.0005,-0.0001,1,-0.0002,-0.0006,-0.0002,-1|40,0.5876,48.9996,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|Gun3|66.9396,12048.6855,-295.2603|-0.0399,-0.0267,0.0192|Gun4|66.9396,12048.6855,-272.2603|-0.0278,0.01,0.0192|40.0015,0.5874,48.9997,-1,-0.0001,-0.0002,-0.0001,1,-0.0002,0.0001,-0.0002,-1|40.0018,0.5874,48.9996,-1,-0.0001,-0.0002,-0.0001,1,-0.0002,0.0001,-0.0002,-1|-8.0001,0.5878,50.0003,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61.0001,0.5874,44.9996,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9999,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9997,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|-61,0.5874,44.9994,-1,-0.0001,0,-0.0001,1,-0.0002,-0.0001,-0.0002,-1|Seat2|0.0666,0.0666,0.0666|82.4396,12047.4853,-284.2603|-0.0339,-0.0069,0.0129|2,0.4,8|0,-0.2001,0,-1,0,0,0,0,1,0,1,0|49,1.5,45,-1,0,-0,-0,1,-0,-0,0,-1|103,1.3999,24,-0,0,1,-0,1,0,-1,0,0|-1183,1,-644,1,0,0,0,1,0,0,0,1|4.9996,39.7889,35,-0.0001,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|-1.0004,39.7888,74.9999,0,0,0.9999,0,1,-0.0001,-1,0,0|-1.001,39.7872,39.9999,0,0.0001,0.9999,0,1,-0.0002,-1,0,0|-1.0031,39.7869,39.9999,0,0.0001,0.9999,0,1,-0.0002,-1,0,0|-26.0018,39.7882,81,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|-36.032,39.7717,82.9998,0.0001,-0.0015,0.9999,-0.0001,0.9999,0.0014,-1,-0.0001,0.'
  7242. ..'0001|-10.0004,39.7889,24,0,0,0.9999,0,1,-0.0001,-1,0,0|-1.0004,39.7888,-35,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|-21.0008,0.587,67.0005,-0.0001,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,-0.0001|-787.0003,6.2886,100,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|-788.0003,6.2886,63.9999,0,0,0.9999,0,1,-0.0001,-1,0,0|-788.0004,6.287,63.9999,0,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,0|-788.0004,6.287,63.9999,0,0.0001,1,-0.0001,1,-0.0002,-1,-0.0001,0|-788.0004,6.2869,63.9999,0,0.0001,0.9999,-0.0001,1,-0.0002,-1,-0.0001,0|177,13.4,-59,-1,0,-0,-0,1,-0,-0,0,-1|-34.0001,0.5984,-16.9997,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|144.9999,17.7886,37,1,0,0,-0.0001,1,-0.0001,-0.0001,0,1|-25.0047,0.587,24.0208,1,0,0.0001,-0.0001,1,-0.0002,-0.0002,0.0001,1|PlaneCheck|Stunt|BodyParts|Jaw |56.9396,12054.0849,-279.7603|0,90,180|-0.0325,-0.0034,0.0158|1,6.4,1|0.5,1,1|0,0,0.5,1,0,0,0,1,0,0,0,1|0,0,1,1,0,0,0,-1,0,0,0,-1|61.9396,12054.0849,-279.7603|-0.0325,-0.0027,0.0132|1,6.4,5|0,0,2.5,1,0,0,0,1,0,0,0,1|0,0,-1,1,0,0,0,1,0,0,0,1|58.4396,12054.0849,-279.7603|-0.0325,-0.0032,0.015|1,6.4,2|6|http://www.roblox.com/asset/?id=11810928|0.1058,0.1647,0.2078|60.2397,12049.4853,-286.2603|90,-90,0|-0.0353,-0.0133,0.0214|4,4.4,4|57.9396,12050.5849,-276.2603|0,90,-90|-0.0302,0.0023,0.0209|1,6,1|0,0,0.5,1,-0,0,0,-1,0,0,-0,-1|0,3,0,-1,-0,-0,0,0,1,0,1,0|0.5,-3.5,0.5,0,0,-1,1,0,0,0,-1,0|-0.5,0.0999,-9,0,0,1,1,0,0,0,1,0|63.9396,12050.5849,-270.6603|-0.0272,0.0121,0.0177|1,6.8,1|56.9396,12054.0849,-288.7603|-0.0372,-0.0178,0.0158|58.9396,12050.5849,-276.2603|0,-90,-90|-0.0302,0.0025,0.0203|66.9396,12050.4853,-279.7603|0,90,0|-0.032,-0.002,0.0163|1,0.8,21|2,1,1|3|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|1,-1.6,-4,0,0,-1,0,-1,0,-1,0,0|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-3.2,-8.5,1,0,0,0,0,1,0,-1,0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.0999,-3,-5.5,0,-1,0,0,0,1,-1,0,0|0,-3.2,-5,1,0,0,0,0,1,0,-1,0|0,3.1999,10,1,0,0'
  7243. ..',0,0,-1,0,1,0|61.4396,12050.5849,-276.2603|-0.0302,0.0028,0.019|1,6,4|0,0,2,1,0,0,0,1,0,0,0,1|0,0,-0.5,1,0,0,0,1,0,0,0,1|0,-3,0,1,0,0,-0,-0,-1,0,1,0|0.5,-3.5,0.5,0,0,-1,-1,0,0,0,1,0|65.4396,12050.5849,-273.2603|-0.0286,0.0082,0.0169|1,12,2|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0.0999,-1.5,0,0,1,-1,0,0,0,-1,0|0,0,1,1,0,0,0,1,0,0,0,1|0,2.6,0.5,1,0,0,0,-1,0,0,0,-1|70.4396,12050.5849,-273.2603|-0.0286,0.0089,0.0143|1,12,8|2.9999,-0.6,1,1,0,0,0,0,1,0,-1,0|1,-0.6,-4,1,0,0,0,0,1,0,-1,0|0,0,4,1,0,0,0,1,0,0,0,1|-0.5,0.0999,3.4999,0,0,1,-1,0,0,0,-1,0|0.1|57.8396,12049.4853,-286.2603|-0.0353,-0.0136,0.0227|4,0.4,4|1,9,1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,2.2,0,1,0,0,0,0,-1,0,1,0|62.9396,12049.4853,-282.2603|-0.0332,-0.0065,0.02|1,4,2|14,1.1,2.0999|-1,-2,-2.5001,-1,0,0,0,-1,0,0,0,1|-2,0.1999,-7.5,1,0,0,0,1,0,0,0,1|2,1.9999,7.4999,-1,0,0,0,1,0,0,0,-1|0,-2.2,0,1,0,0,0,0,1,0,-1,0|-1,0,-2.5,-1,0,0,0,-1,0,0,0,1|58.4396,12054.0849,-288.7603|-0.0372,-0.0175,0.015|http://www.roblox.com/asset/?id=12866384|69.4396,12049.4853,-277.2603|0,180,180|-0.0305,0.0024,0.0166|2,1.2,2|1,1,0.5|65.9396,12049.4853,-281.2603|-0.0326,-0.0045,0.0184|2,2.7999,5|4|0,1.3999,0,-1,-0,-0,0,0,1,0,1,0|0,-0.6,0,-1,0,0,0,0,1,0,1,0|1,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-1.0001,-1,0,0,-1,0,-1,0,-1,0,0|60.2397,12049.4853,-282.2603|-0.0332,-0.0069,0.0214|2,0,0,0,0,1,0,1,0,-1,-0,-0|0.5,-1.0001,-6.7,0,0,-1,1,0,0,0,-1,0|0,2.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2001,0,-1,0,0,-0,0,1,-0,1,0|57.8396,12049.4853,-282.2603|-0.0332,-0.0072,0.0227|0.5,-1.0001,-9.1,0,0,-1,1,0,0,0,-1,0|67.4396,12049.4853,-272.2603|-0.0279,0.0101,0.0176|62.9396,12049.4853,-286.2603|-0.0353,-0.0129,0.02|70.9396,12048.8857,-281.2603|-0.0325,-0.0038,0.0167|2,4,5|61.9396,12054.0849,-288.7603|-0.0372,-0.017,0.0132|0,-3.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.3999,5,1,0,0,0,0,-1,0,1,0|3.4999,-3,-0.5001,0,1,0,0,0,1,1,0,0|0,0,-1.0001,1,0,0,0,1,0,0,0,1|57.9396,12050.5'
  7244. ..'849,-292.2603|0,90,90|-0.0386,-0.0232,0.0209|-0.5,-3.5,0.5,0,0,1,-1,0,0,0,-1,0|65.9396,12047.4853,-281.2603|-0.0323,-0.0045,0.0216|2,1.2,5|0,1.4,-2.5,1,0,0,0,1,0,0,0,1|58.9396,12050.5849,-292.2603|-0.0386,-0.0231,0.0203|0,0,2,-1,0,0,0,1,0,0,0,-1|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,0.5,1,0,0,0,-1,0,0,0,-1|65.9396,12047.4853,-287.2603|-0.0355,-0.0141,0.0216|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-3,0.1999,11.4999,-1,0,0,0,0,-1,0,-1,0|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|0,1.3999,0,1,0,0,0,0,-1,0,1,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5,-2,-1,0,0,-1,0,-1,0,-1,0,0|70.9396,12047.4853,-284.2603|-0.0339,-0.0086,0.019|4,0.4,15|0,0,-7.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,4,-1,0,0,0,1,0,0,0,-1|0,-1.6001,0,1,0,0,0,0,1,0,-1,0|0,0,7.5,1,0,0,0,1,0,0,0,1|0.4999,-2,2,0,0,-1,0,1,0,1,0,0|-2,0,0,-0,-0,-1,0,1,0,1,0,0|-1,1,5.9999,0,0,1,0,-1,0,1,0,0|70.9396,12049.2851,-284.2603|-0.0342,-0.0086,0.0161|4,3.2,15|0.4999,-0.2,2,0,0,-1,0,1,0,1,0,0|-1,-0.8001,5.9999,0,0,1,0,-1,0,1,0,0|65.9396,12049.4853,-287.2603|-0.0358,-0.0141,0.0184|0.5,0,-1,0,0,-1,0,-1,0,-1,0,0|61.4396,12050.5849,-292.2603|0,-90,90|-0.0386,-0.0227,0.019|66.9396,12050.4853,-288.7603|-0.0367,-0.0163,0.0163|-0.1,-6,3.4999,0,1,0,0,0,1,1,0,0|0.0999,-6,1.5,0,-1,0,0,0,1,-1,0,0|-0.1,-3,-5.5,0,1,0,0,0,1,1,0,0|-0.1,3,9,0,1,0,0,0,-1,-1,0,0|-1,-1.6,-4,0,0,1,0,-1,0,1,0,0|-2,-9.1,-1.0001,0,0,1,-1,0,0,0,-1,0|-2,-6.7,-1.0001,0,0,1,-1,0,0,0,-1,0|-1,-0.0001,9.9999,0,0,1,0,1,0,-1,0,0|-1,-1.0001,1,0,0,1,0,-1,0,1,0,0|0,-3.2,-8.5,-1,0,0,0,0,1,0,1,0|0,3.1999,10,-1,0,0,0,0,-1,0,-1,0|76.9396,12048.4853,-281.2603|0,-90,180|-0.0325,-0.0029,0.0142|2,3.2,7|-5.5001,-0.8,-0.5,1,0,0,0,1,0,0,0,1|5.5,-2,-0.5,-1,0,0,0,-1,0,0,0,1|2,1,-6,0,0,-1,0,-1,0,-1,0,0|0,-1.6001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.4001,0,-1,0,0,0,0,1,0,1,0|-2,-0.8001,5.9999,0,0,1,0,-1,0,1,0,0|0,0,3.5,1,0,0,0,1,0,0,0,1|0,0.4,2.4999,-1,0,0,0,1,0,0,0,-1|0,1.6,0,-1,-0,-0,0,0,1,0,1,0|3,0.1999,0.5,1,0,0,'
  7245. ..'0,0,-1,0,1,0|76.9396,12050.4853,-281.2603|-0.0328,-0.0029,0.011|2,0.8,7|0,-1.6,2.4999,1,0,0,0,-1,0,0,0,-1|0.5,0,9.9999,0,0,-1,0,1,0,1,0,0|70.9396,12048.8857,-287.2603|-0.0357,-0.0134,0.0167|0,-0.4001,3.4999,-1,0,0,0,1,0,0,0,-1|0,2,0,-1,-0,-0,0,0,1,0,1,0|-3,0.1999,6.4999,-1,0,0,0,0,-1,-0,-1,0|0,-1.6,3.4999,1,0,0,0,-1,0,0,0,-1|69.4396,12049.4853,-291.2603|-0.0379,-0.02,0.0166|0,0.1999,-0.5,0,-1,0,0,0,-1,1,0,0|78.9396,12049.6855,-284.2603|0,180,0|-0.0342,-0.0074,0.0112|20,1,2|65.4396,12050.5849,-295.2603|-0.0401,-0.0269,0.0169|63.9396,12050.5849,-297.8603|-0.0415,-0.0313,0.0177|0,2.6,-1.0001,-1,0,0,0,-1,0,0,0,1|82.4396,12050.4853,-282.7603|-0.0336,-0.0045,0.0081|8,1.6,1|0,-0.8,-1,1,0,0,0,1,0,0,0,1|-3.5,0.7999,-1,1,0,0,0,1,0,0,0,1|76.9396,12050.4853,-287.2603|-0.0359,-0.0125,0.011|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|0,-1.6,0,-1,0,0,0,0,1,0,1,0|82.4396,12047.6855,-282.7603|-0.0332,-0.0045,0.0126|8,0.8,1|-4,0,0,-0,-0,-1,0,1,0,1,0,0|1.5,0.2,-7.5001,-1,0,0,0,-1,0,0,0,1|82.4396,12048.8857,-282.7603|-0.0333,-0.0045,0.0107|1,1.6,8|0,-0.8001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.4001,0,0,-1,0,0,-0,1,-1,-0,0|1,-0.4001,-5.5001,0,0,-1,0,-1,0,-1,0,0|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|0,-0.8,0,0,1,0,0,0,1,1,0,0|67.4396,12049.4853,-295.2603|-0.04,-0.0266,0.0176|76.9396,12048.4853,-287.2603|-0.0356,-0.0125,0.0142|70.4396,12050.5849,-295.2603|-0.0401,-0.0262,0.0143|1,-0.6,4,-1,0,0,0,0,1,0,1,0|2.9999,-0.6,0,-1,0,0,0,0,1,0,1,0|0,0,0.9999,-1,0,0,0,1,0,0,0,-1|82.4396,12050.4853,-285.7603|-0.0351,-0.0093,0.0081|-1,-2,-5.5001,0,0,1,0,-1,0,1,0,0|0,-0.8,1,-1,0,0,0,1,0,0,0,-1|-3.5,0.7999,1,-1,0,0,0,1,0,0,0,-1|82.4396,12047.6855,-285.7603|0,0,180|-0.0347,-0.0093,0.0126|4,0,0,0,0,1,0,1,0,-1,-0,-0|-1.5,0.2,-7.5001,-1,0,0,0,-1,0,0,0,1|0,-0.8001,0,0,1,0,0,0,1,1,0,0|-1,0.7999,-5.5001,0,0,1,0,1,0,-1,0,-0|82.4396,12048.8857,-285.7603|-0.0349,-0.0093,0.0107|-1,-0.4001,-5.5001,0,0,1,0,-1,0,1,0,0|0,-0.8,0,0'
  7246. ..',-1,0,0,0,1,-1,0,0|0.4313,0.6,0.7921|0.6999|82.4396,12051.2851,-284.2603|-0.0345,-0.0069,0.0068|2,0.8,2|4,3.7999,1.2|85.9396,12049.4853,-284.2603|-0.0342,-0.0064,0.0079|3,3.6,2|5,1,2|3.5,-1.0001,0.5,-1,0,0,0,1,0,0,0,-1|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-3.5,-1.0001,0.5,-1,0,0,0,1,0,0,0,-1|79.4396,12059.4853,-284.2603|-0.5,6.3999,-31.5,1,0,0,0,0,-1,0,1,0|0.3|75.9868,12049.499,-296.7498|0.0099,89.97,0|3,6,1|-0.0001,-0.6001,-1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|76.988,12049.499,-298.7492|0,179.97,0.0099|1.9998,-0.6001,-0.5,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|PUT THE WEAPON IN THIS BRICK|0.949,0.9529,0.9529|74.9865,12049.2041,-296.7485|-0.01,-0.03,-0.01|1,1.2,5|Plane Tool V3|PlaneFlyer|FlyScript|Reload|PUT THIS IN THE WEAPON|78.9868,12049.498,-296.7481|5,6,1|-0.0001,-0.6001,1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|76.9855,12049.499,-294.7492|-2.0002,-0.6002,-0.5001,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|77.4872,12053.0986,-296.7491|5,1.2,4|READ ME FOR INSTRUCTIONS|Frame|46.9396,12052.0878,-277.2602|1,10,2|0,0,1|1,1,1|47.9396,12052.8857,-302.2603|26,12.8,1|0,6.4,0,-1,-0,-0,0,0,1,0,1,0|-31.5,-0.2,-18,0,1,0,0,0,1,1,0,0|46.9398,12052.0888,-295.2602|42.9398,12052.0888,-295.2602|44.9398,12052.0888,-295.2602|37.4396,12057.5917,-295.2602|40.9438,12052.0878,-295.2602|0,180,0.0399|37.4396,12058.5908,-286.2602|20,1,22|1,0.647,0|38.9398,12052.0888,-295.2602|37.4396,12052.0878,-275.7602|0,180,-180|20,12,1|38.9396,12052.0878,-277.2602|40.9435,12052.0878,-277.2602|0,180,0.05|29.9396,12052.0878,-277.2602|35.9396,12052.0878,-277.2602|31.9396,12052.0878,-277.2602|37.4396,12057.5908,-277.2602|Anti-Lag|29.9398,12052.0878,-295.2602|44.9396,12052.0878,-277.2602|42.9396,12052.0878,-277.2602|37.4399,12046.5898,-286.2602|20,1,20|37.4396,12052.0888,-296.7602|0,-180,-180|33.9398,12052.0878,-295.2602|31.9398,12052.0878,-295.2602|0.5019,0.7333,0.8588|0.5'
  7247. ..'|37.4398,12052.0888,-295.7602|35.9398,12052.0878,-295.2602|37.4396,12052.0878,-276.7602|33.9396,12052.0878,-277.2602|47.9396,12052.8857,-265.7603|27,12.8,1|0,-6.4001,0,1,0,0,-0,-0,-1,0,1,0|-31.5,0.1999,18.5,0,1,0,0,0,-1,-1,0,0|-31.5,-0.2,18.5,0,1,0,0,0,1,1,0,0|27.9398,12052.0878,-295.2602|27.9396,12052.0878,-277.2602|17.4396,12052.0878,-275.7602|17.4396,12052.0878,-276.7602|17.4396,12057.5898,-277.2602|24.9396,12052.0878,-277.2602|15.9396,12052.0878,-277.2602|26.9396,12052.0878,-277.2602|17.4399,12046.5898,-286.2602|26.9398,12052.0878,-295.2602|20.9438,12052.0878,-295.2602|24.9398,12052.0878,-295.2602|17.4396,12058.5898,-286.2602|17.4396,12052.0878,-296.7602|17.4398,12052.0878,-295.7602|17.4396,12057.5908,-295.2602|22.9398,12052.0878,-295.2602|15.9398,12052.0878,-295.2602|18.9398,12052.0878,-295.2602|20.9435,12052.0869,-277.2602|22.9396,12052.0878,-277.2602|18.9396,12052.0878,-277.2602|13.9396,12052.0878,-277.2602|13.9398,12052.0878,-295.2602|9.9396,12052.0878,-277.2602|9.9398,12052.0878,-295.2602|11.9396,12052.0878,-277.2602|11.9398,12052.0878,-295.2602|0.9435,12052.0869,-277.2602|0.9438,12052.0869,-295.2602|2.9398,12052.0878,-295.2602|4.9397,12052.0878,-295.2602|2.9396,12052.0869,-277.2602|7.9397,12052.0878,-295.2602|4.9396,12052.0869,-277.2602|6.9396,12052.0869,-277.2602|7.9396,12052.0878,-277.2602|6.9397,12052.0878,-295.2602|-4.0603,12052.0869,-295.2602|-2.5604,12052.0878,-296.7602|-1.0602,12052.0869,-295.2602|-2.5604,12057.5908,-295.2602|-2.5604,12052.0869,-275.7602|-4.0604,12052.0869,-277.2602|-6.0602,12052.0869,-295.2602|-2.5604,12052.0869,-276.7602|-6.0604,12052.0869,-277.2602|-2.5601,12046.5888,-286.2602|-2.5602,12052.0869,-295.7602|-1.0604,12052.0869,-277.2602|-2.5604,12057.5898,-277.2602|-2.5604,12058.5898,-286.2602|-10.0604,12052.0869,-277.2602|-8.0602,12052.0869,-295.2602|-10.0602,12052.0869,-295.2602|-8.0604,12052.0869,-277.2602|-12.06'
  7248. ..'02,12052.0869,-295.2602|-12.0604,12052.0869,-277.2602|-22.5601,12052.0859,-295.7602|-17.0602,12052.0859,-277.2602|-17.0601,12052.0859,-295.2602|-19.0602,12052.0859,-277.2602|-19.0601,12052.0859,-295.2602|-22.5601,12046.5869,-286.2602|-22.5605,12057.5908,-277.2602|-22.5601,12052.0859,-275.7602|0,0,-180|-21.0602,12052.0859,-277.2602|-21.0601,12052.0859,-295.2602|-13.0602,12052.0869,-277.2602|-15.0602,12052.0869,-277.2602|-15.0601,12052.0859,-295.2602|-13.0601,12052.0859,-295.2602|-22.5601,12052.0859,-296.7602|-22.5604,12057.5888,-295.2602|-22.5602,12052.0859,-276.7602|-22.5604,12058.5888,-286.2602|-24.0601,12052.0859,-295.2602|-24.0602,12052.0859,-277.2602|-28.0601,12052.0849,-295.2602|-30.0601,12052.0849,-295.2602|-26.0643,12052.0859,-277.2602|0,0,0.05|-28.0602,12052.0859,-277.2602|-30.0602,12052.0859,-277.2602|-26.0641,12052.0849,-295.2602|-32.0602,12052.0859,-277.2602|-32.0601,12052.0849,-295.2602|-34.06,12052.5849,-295.7602|3,11,3|-34.0602,12052.5859,-276.7602|-34.5602,12052.0849,-261.7562|0,90,0.05|-34.5602,12052.0859,-266.7602|-34.5602,12052.0859,-263.7602|-33.0602,12052.0859,-265.2604|0,90,-180|-34.5602,12052.0859,-299.7602|-34.5604,12057.5908,-265.2602|-34.0602,12052.0859,-265.2602|-34.5602,12052.0859,-270.7602|-34.5602,12052.0859,-301.7602|-34.5602,12052.0859,-268.7602|-34.5602,12052.0859,-297.7602|-34.5602,12052.0859,-274.7602|-34.5602,12052.0859,-272.7602|-34.5603,12052.0859,-259.7602|-52.5602,12052.0849,-301.7604|-52.5602,12052.0849,-299.7604|-53.0602,12052.5849,-295.7602|-53.5601,12046.5859,-286.2602|42,1,20|-43.5604,12058.5888,-296.2603|42,1,22|-52.5602,12052.0849,-297.7604|-52.5602,12052.0849,-268.7604|-54.0602,12052.0849,-265.2604|-52.5602,12052.0849,-263.7604|-52.5602,12052.0849,-266.7604|-53.0603,12052.0849,-265.2604|-52.5602,12052.0849,-270.7604|-53.0602,12052.5849,-276.7602|-52.5602,12052.0849,-272.7604|-43.5605,12058.5888,-265.260'
  7249. ..'2|-52.5602,12052.0849,-274.7604|-34.5602,12052.0869,-250.7602|-34.5604,12057.5888,-245.2602|-43.5605,12058.5888,-245.2603|-34.5602,12052.0869,-254.7602|-52.5602,12052.0859,-250.7604|-34.5602,12052.0869,-252.7602|-34.5602,12052.0869,-246.7602|-52.5602,12052.0859,-248.7604|-52.5602,12052.0859,-252.7604|-52.5602,12052.0859,-246.7604|-52.5603,12052.0849,-259.7604|-43.5601,12046.5859,-265.7602|21,1,20|-52.5602,12052.0839,-261.7565|-52.5603,12052.0849,-257.7604|-34.5603,12052.0859,-257.7602|-52.5603,12052.0849,-255.7604|-34.5603,12052.0859,-255.7602|-52.5602,12052.0859,-254.7604|-34.5602,12052.0869,-248.7602|-52.5602,12052.0849,-237.7604|-34.5602,12052.0869,-237.7602|-33.0603,12052.0869,-245.2604|-34.5602,12052.0859,-241.7563|-43.5601,12046.5878,-245.2602|-53.0603,12052.0859,-245.2604|-52.5602,12052.0859,-239.7604|-52.5602,12052.0849,-241.7564|-52.5602,12052.0859,-243.7604|-34.5602,12052.0869,-239.7602|-34.5602,12052.0869,-243.7602|-34.0602,12052.0869,-245.2602|-34.5603,12052.0869,-230.7602|-52.5603,12052.0859,-230.7604|-34.5602,12052.0869,-232.7602|-52.5602,12052.0859,-232.7604|-34.5602,12052.0869,-235.7602|-52.5602,12052.0849,-235.7604|-34.5602,12052.0869,-234.7602|-52.5602,12052.0859,-234.7604|-43.5605,12058.5888,-225.2602|-34.5603,12052.0869,-228.7602|-34.5605,12057.5888,-225.2602|-52.5603,12052.0859,-228.7604|-34.5603,12052.0869,-226.7602|-52.5603,12052.0859,-226.7604|-34.0603,12052.0869,-225.2602|-33.0603,12052.0869,-225.2604|-34.5603,12052.0869,-219.7602|-43.5601,12046.5878,-225.2602|-34.5603,12052.0869,-215.7602|-34.5603,12052.0869,-223.7602|-34.5603,12052.0859,-221.7563|-34.5603,12052.0869,-208.7602|-43.5605,12058.5888,-205.2602|-34.5603,12052.0869,-214.7602|-34.5603,12052.0869,-217.7602|-34.5605,12057.5888,-205.2602|-52.5603,12052.0859,-212.7604|-52.5603,12052.0859,-210.7604|-52.5603,12052.0859,-206.7604|-52.5603,12052.0859,-214.7604|-52.5603,12'
  7250. ..'052.0859,-208.7604|-52.5603,12052.0849,-215.7604|-52.5603,12052.0849,-221.7564|-52.5603,12052.0859,-219.7604|-52.5603,12052.0859,-223.7604|-52.5603,12052.0849,-217.7604|-53.0603,12052.0859,-225.2604|-34.5603,12052.0869,-210.7602|-34.5603,12052.0869,-206.7602|-34.5603,12052.0869,-212.7602|-43.5607,12078.5888,-195.4601|89.8799,90.11,-89.89|22,0.4,39|-34.5603,12052.0869,-195.7602|-34.5603,12052.0859,-201.7563|-34.5603,12052.0869,-199.7602|-34.0603,12052.0869,-205.2602|-34.5603,12052.0869,-203.7602|-33.0604,12052.0869,-205.2604|10,0,0,0,0,1,0,1,0,-1,-0,-0|10.5,121.5,5.6008,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|-52.5603,12052.0859,-199.7604|-43.5602,12046.5878,-205.2602|-52.5603,12052.0849,-197.7604|-52.5603,12052.0849,-195.7604|-52.5603,12052.0849,-201.7564|-52.5603,12052.0859,-203.7604|-53.0604,12052.0859,-205.2604|-34.5603,12052.0869,-197.7602|Part11|-42.1363,12051.6269,-194.7602|-60,-90,180|1,3,2|0.1,1,0.8799|1,0.6,0|Part1|-43.3104,12052.5937,-194.7602|Part2|-43.8104,12052.5937,-194.7602|Part5|-44.9844,12050.5576,-194.7602|60,90,0|Part3|-44.7344,12052.0595,-194.7602|60,-90,180|Part7|-43.8103,12049.5888,-194.7602|Part10|-42.1362,12050.5576,-194.7602|60,-90,0|Part8|-43.3103,12049.5888,-194.7602|Part6|-44.7344,12050.122,-194.7602|-60,-90,0|Part9|-42.3737,12050.1435,-194.7602|-60,90,0|Part4|-44.9844,12051.6259,-194.7602|-60,90,-180|Part12|-42.3863,12052.0595,-194.7602|60,90,-180|Wall|-40.0604,12052.5888,-194.7602|1,5,3|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|0,-21.5001,3.4996,-1,-0.0001,-0.0001,-0.0001,0,0.9999,-0.0001,0.9999,-0.0001|Actuall Frame|-40.5291,12049.3388,-194.7602|30,90,0|1,4,1|0.8999,1.1,1|-47.0603,12049.5878,-194.7602|-47.0604,12052.5878,-194.7602|0,-21.5003,-3.5004,1,0,-0.0001,0,-0.0001,0.9999,0,-1,-0.0001|-40.0603,12049.5888,-194.7602|-43.5602,12047.5878,-194.7602|89.97,90.05,0|0.8999,1.6,1|-46.5914,12049.3388,-194.7602|30,-90,0|Shield|0.3843,0.1'
  7251. ..'45,0.8196|-43.5603,12051.0878,-194.7602|-89.9701,-89.95,90|8,5,8|1,0,1|-40.5293,12052.8437,-194.7602|-30,90,0|-43.5604,12054.5888,-194.7602|-89.9701,-89.95,0|-46.5915,12052.8437,-194.7602|-30,-90,0|23.4396,12072.4853,-195.4603|90,180,0|111,0.4,51|-35.0602,12072.5869,-194.7602|1,51,7|-43.5601,12076.5888,-194.7602|1,43,10|-43.5604,12059.3857,-473.2603|-43.5604,12046.1855,-473.2603|-0.5,-6.4,-31.5,-1,-0,-0,0,0,1,0,1,0|-18,-6.4,31.5,-0,-1,-0,0,0,1,-1,-0,-0|-0.5,-6.4,-31.5,1,0,0,0,0,1,-0,-1,-0|F-15|-43.5717,12046.6728,-477.221|0.0099,0.0299,0|-3,0.6,11.5,-1,-0.0001,-0.0001,0,0,-1,-0.0001,-1,0|-3.0001,1.9999,6.4999,-1,-0.0001,0,0,0,-1,-0.0001,-1,0|3,1.6,-0.5,1,0,-0.0001,0,0,-1,0,1,0|-43.5747,12047.874,-482.2208|-0.0366,-0.0156,0.0149|-36.5666,12048.6718,-468.7249|-0.0296,0.0069,0.0099|-50.5666,12048.6718,-468.7165|-0.0296,0.0049,0.0173|-0.5,0.6,-0.0001,-0.0001,-1,0,0,0,-1,1,0,-0.0001|-54.5654,12048.6718,-466.7141|-0.0286,0.0076,0.0194|-31.5655,12048.6718,-466.7278|-0.0286,0.0108,0.0073|-43.5747,12047.4736,-482.2208|-0.0366,-0.0156,0.0155|0,0,-7.5,1,0,-0.0001,0,1,0,-0.0001,0,1|0,-0.2,0,-1,-0.0001,0,-0.0001,0,1,0,1,0|-39.0595,12054.0703,-456.7227|-0.01,-179.9701,-180|-0.0241,0.0257,0.0026|0,3.2,0,-1,-0,-0,0,0,1,0,1,0|0,0.3999,-10,1,-0.0001,0,-0.0001,0,-1,-0.0001,1,0|0,-0.0001,1,1,-0.0001,0,0,-1,0,-0.0001,0,-1|-39.0625,12054.0712,-461.7227|-0.0267,0.0177,0.0026|0,0,-1,1,0,-0.0001,0,1,0,-0.0001,0,1|-3.5,-3.0001,-0.5,0,-1,-0.0001,0,0,1,-1,0,-0.0001|0,0.3999,-5,-1,0,0,0,0,-1,0,-1,0|-39.0604,12054.0712,-458.2227|-0.0249,0.0233,0.0026|0,0.3999,-8.5,-1,0,0,0,0,-1,0,-1,0|-3.5,3,0.5,0,-1,-0.0001,-0.0001,-0.0001,-1,1,0,0|-45.5615,12049.4707,-460.0194|90,0.0299,0|-0.0252,0.0195,0.0134|0,-2.2001,0,1,0,0,-0,-0,-1,0,1,0|-0.5,0,-0.0001,0,0,1,0,-1,0,1,-0.0001,0|-0.0001,-0.2001,-0.0001,-1,0,-0.0001,0,0,1,-0.0001,1,0|-35.5601,12050.5703,-457.7252|-0.01,-179.9701,-90|-0.0241,'
  7252. ..'0.0246,0.0064|-0.5,0.0999,-9.0001,-0.0001,-0.0001,1,1,0,-0.0001,0,1,-0.0001|-0.0001,-0.0001,0.5,1,0,0,-0.0001,-1,0,0,0,-1|-29.9636,12050.5712,-463.7286|-0.0273,0.0158,0.0034|-48.0594,12054.0703,-456.7174|-0.0241,0.0245,0.0074|0,0.3999,9.9999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|0,-0.0001,0.9999,1,-0.0001,0,-0.0001,-1,0,-0.0001,0,-1|-35.5607,12050.5712,-458.7252|0.0099,0.0299,-90|-0.0246,0.023,0.0064|0,-0.0001,2,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-39.0654,12050.4716,-466.7232|-0.01,-179.9701,0|-0.0288,0.0098,0.0084|0.0999,-3,-5.5,0,-1,-0.0001,0,0,1,-1,0,-0.0001|-35.5622,12050.5712,-461.2252|-0.0259,0.019,0.0064|-32.5645,12050.5712,-465.227|-0.0281,0.0131,0.0048|-0.0001,2.5999,0.4999,1,-0.0001,0,0,-1,0,0,0,-1|-0.0001,0,4,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-0.5001,0.0999,-1.5001,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-32.5675,12050.5722,-470.227|-0.0307,0.0051,0.0048|-0.5,0.0999,3.4999,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-45.56,12049.4707,-457.6194|-0.0239,0.0234,0.0134|-41.5631,12049.4707,-462.7218|0,90.0299,0.0099|-0.0266,0.0158,0.0113|-48.0604,12054.0712,-458.2174|-0.0249,0.0221,0.0074|3.4999,2.9999,0.5,0,1,0,-0.0001,-0.0001,-1,-1,0,-0.0001|-36.5669,12049.4716,-469.2248|0,-89.9701,179.99|-0.03,0.0061,0.0087|-0.0001,0.1999,-0.5,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|0.4999,-4,1,0,0,-1,0,-1,0,-1,0,0|-40.5648,12049.4716,-465.7224|-0.0282,0.0111,0.0108|0,-0.6001,0,-1,0,-0.0001,0,0,1,-0.0001,1,0|0.4999,-1,-1,0,0,-1,0,-1,0,-1,0,0|0.5,0,1,-0.0001,0,-1,0,-1,0,-1,-0.0001,-0.0001|-41.5615,12049.4707,-460.0218|-0.0252,0.0201,0.0113|0.5,-1.0001,-6.7001,-0.0001,0,-1,1,0,0,0,-1,0|-41.56,12049.4707,-457.6218|-0.0239,0.0239,0.0113|0.5,-1,-9.1001,-0.0001,0,-1,1,0,0,0,-1,0|0,2.2,-0.0001,1,-0.0001,0,-0.0001,0,-1,0,1,0|-31.5658,12049.4716,-467.2277|-0.0289,0.01,0.006|0,0.1999,-0.5,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|0.4999,0.9999,3,0,0,-1,0,-1,0,-1,0,0|-45.5631,12049.4707,-462.7193|-0.026'
  7253. ..'6,0.0152,0.0134|2,0.2,-7.5,1,-0.0001,-0.0001,-0.0001,1,0,-0.0001,0,1|-40.5678,12048.872,-470.7225|-0.0307,0.0032,0.0117|-0.0001,-0.4,3.5,-1,0,-0.0001,-0.0001,1,0,-0.0001,0,-1|0.4999,-1.6001,4,0,0,-1,0,-1,0,-1,0,0|-48.0625,12054.0712,-461.7174|-0.0267,0.0165,0.0074|0,0.3999,4.9999,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,0|-51.5601,12050.5703,-457.7157|-0.01,-179.9701,90|-0.0241,0.0224,0.0148|-40.5649,12047.4716,-465.7226|-0.0279,0.0111,0.014|-0.0001,1.3999,-2.5001,1,-0.0001,0,-0.0001,1,0,0,0,1|0.5,-2,0.9999,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-51.5607,12050.5712,-458.7157|-0.0246,0.0208,0.0148|-0.0001,-0.0001,0.5,1,-0.0001,0,-0.0001,-1,-0.0001,0,-0.0001,-1|-46.5649,12047.4716,-465.719|-0.0279,0.0103,0.0171|-3.0001,0.2,11.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-0.0001,1.3999,-0.0001,1,0,0,-0.0001,0,-1,0,1,0|0.4999,-2,-1.0001,-0.0001,0,-1,-0.0001,-1,0,-1,-0.0001,-0.0001|-43.5678,12047.4716,-470.7208|-0.0305,0.0027,0.0155|0.5,-2.0001,-2,0,0,-1,0,1,0,1,0,-0.0001|-4.0001,0.1999,1.5,-0.0001,0,1,0,-1,0,1,-0.0001,-0.0001|0.9999,1,6,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|0.5,-2.0001,2,0,0,-1,0,1,0,1,-0.0001,-0.0001|4,0.2,1.5,0,0,-1,0,-1,0,-1,0,0|0,-1.6,0,1,0,0,-0.0001,0,1,-0.0001,-1,0|-43.5678,12049.2714,-470.7205|-0.0308,0.0027,0.0127|0.4999,-0.2001,-2,0,0,-1,0,1,0,1,0,-0.0001|0.9999,-0.8,6.0001,-0.0001,-0.0001,-1,0,-1,-0.0001,-1,0,-0.0001|-46.5648,12049.4716,-465.7189|-0.0282,0.0103,0.0139|-1,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-1,0.9999,0,-0.0001,-1,0,-1,0,-1,0,0|0.5,-0.0001,-1,-0.0001,0,-1,-0.0001,-1,0,-1,0,-0.0001|-51.5621,12050.5712,-461.2157|0.0099,0.0299,90|-0.0259,0.0168,0.0148|-0.5,0.1,5.4999,0,-0.0001,1,1,0,0,0,1,-0.0001|-0.0001,-0.0001,0.5,-1,-0.0001,0,-0.0001,1,0,0,-0.0001,-1|-0.5,-3.5,0.4999,0,-0.0001,1,1,0,-0.0001,0,1,-0.0001|-48.0654,12050.4716,-466.7178|-0.0288,0.0085,0.0131|-2.0001,-9.1001,-1,0,0,1,-1,0,-0.0001,0,-1,-0.0001|-2,-6.7001,-1,0,0,'
  7254. ..'1,-1,0,-0.0001,0,-1,-0.0001|-0.1001,2.9999,8.9999,0,1,-0.0001,-0.0001,0,-1,-1,0,-0.0001|-0.0001,-3.2,-8.5,-1,-0.0001,-0.0001,-0.0001,0,1,0,1,0|-0.1,-6,3.5,0,1,-0.0001,0,-0.0001,1,1,0,0|-1,0,9.9999,0,0,1,0,1,0,-1,0,-0.0001|-40.5714,12048.4726,-476.7226|0.0099,0.0299,180|-0.0338,-0.0064,0.0124|-40.5714,12050.4726,-476.7223|-0.0341,-0.0064,0.0092|0.5,-0.0001,10,-0.0001,-0.0001,-1,0,1,0,1,0,0|-0.0001,-1.6,2.5,1,0,-0.0001,-0.0001,-1,0,0,0,-1|0,-1.6,0,-1,0,0,-0.0001,0,1,-0.0001,1,0|-46.5678,12048.872,-470.7189|-0.0307,0.0023,0.0149|0,-1.4,2.5,-1,-0.0001,-0.0001,0,1,0,-0.0001,0,-1|-3,0.1999,6.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|0,-1.6001,3.5,1,-0.0001,0,0,-1,0,-0.0001,0,-1|0.5,-1.6001,-4,0,-0.0001,-1,0,-1,-0.0001,-1,0,0|-50.5669,12049.4716,-469.2165|-0.03,0.0041,0.016|-43.5726,12049.6728,-478.7206|0,-89.9701,-0.01|-0.035,-0.01,0.012|3.4999,-0.8,0.5,-1,0,-0.0001,0,1,0,-0.0001,0,-1|-3.5,-0.8,0.5,-1,0,-0.0001,0,1,0,-0.0001,-0.0001,-1|-54.5645,12050.5712,-465.2139|-0.028,0.01,0.0164|-0.5,0.0999,1.5,-0.0001,0,1,-1,0,0,0,-1,-0.0001|-0.0001,-0.0001,3.9999,-1,0,0,0,1,-0.0001,0,0,-1|-0.0001,2.6,0.5,1,0,0,0,-1,-0.0001,0,-0.0001,-1|-57.1636,12050.5712,-463.7124|-0.0273,0.012,0.0177|-42.0747,12050.4736,-482.2214|-0.037,-0.0154,0.01|0,0.7999,0,-0.0001,-1,0,0,0,-1,1,0,0|1,-2,-5.5,-0.0001,0,-1,0,-1,0,-1,0,-0.0001|3.5,0.9999,-1,1,0,0,0,1,0,0,0,1|-46.5714,12050.4726,-476.7186|-0.0341,-0.0073,0.0123|-42.0747,12047.6728,-482.2217|-0.0366,-0.0154,0.0144|0.9999,0.8,-5.5,0,0,-1,0,1,-0.0001,1,0,-0.0001|-42.0747,12048.873,-482.2216|-0.0368,-0.0154,0.0125|-0.0001,-0.4,0,0,-1,0,0,0,1,-1,0,-0.0001|1,-0.4,-5.5,-0.0001,0,-1,0,-1,0,-1,0,-0.0001|-54.5657,12049.4716,-467.2141|-0.0289,0.0068,0.0181|0,0.2,-0.5001,-0.0001,-1,-0.0001,0,-0.0001,-1,1,0,0|-0.5,0,3,0,-0.0001,1,-0.0001,1,0,-1,0,0|-46.5714,12048.4726,-476.719|-0.0338,-0.0073,0.0155|2,-0.8,6,0,0,-1,0,-1,0,-1,0,0|-3,0.2,0.4999,1,-0.0'
  7255. ..'001,-0.0001,0,0,-1,-0.0001,1,0|5.4999,-0.8001,-0.5001,1,0,-0.0001,0,1,-0.0001,-0.0001,0,1|-5.5,-2,-0.5,-1,0,0,0,-1,0,-0.0001,-0.0001,1|-2.0001,1,-6.0001,-0.0001,-0.0001,1,0,-1,0,1,0,-0.0001|0,-0.4,-0.0001,-1,-0.0001,0,-0.0001,0,1,0,1,0|-54.5675,12050.5722,-470.2139|-0.0307,0.002,0.0164|1,-0.6,4,-1,-0.0001,0,0,-0.0001,1,0,1,0|-45.0747,12050.4736,-482.2196|-0.037,-0.0158,0.0115|3.5,0.9999,1,-1,0,-0.0001,0,1,-0.0001,-0.0001,-0.0001,-1|-45.0747,12047.6728,-482.2199|0,90.0299,-179.9901|-0.0366,-0.0158,0.016|-45.0747,12048.873,-482.2198|-0.0368,-0.0158,0.0141|0,-0.4,-0.0001,-0.0001,1,0,-0.0001,0,1,1,-0.0001,-0.0001|-1,-0.4,-5.5,0,-0.0001,1,0,-1,0,1,0,0|0,-0.8,-0.0001,-0.0001,-1,0,0,0,1,-1,-0.0001,0|-43.5747,12051.2734,-482.2204|-0.0371,-0.0156,0.0095|-0.0001,0.7999,0.5,-1,0,-0.0001,0,1,0,-0.0001,-0.0001,-1|0,0.7999,0.5,-1,0,-0.0001,0,1,-0.0001,-0.0001,0,-1|-43.5768,12049.4736,-485.7207|-0.0387,-0.0212,0.0124|-56.0604,12049.4853,-475.7603|0,-180,0|0,-0.6,-1.5,-1,-0.0001,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-58.0604,12049.4853,-476.7603|-56.0584,12049.1904,-474.7601|-0.01,90,0|-56.0604,12049.4853,-478.7603|0,-0.6,1.5,-1,-0.0001,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-54.0604,12049.4853,-476.7603|-2.0001,-0.6001,-0.5001,-0.0001,0.9999,-0.0001,0,0,1,0.9999,0,-0.0001|-56.0604,12053.0859,-477.2603|-0.5001,3,-2,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-34.5601,12052.0859,-440.7602|-52.5601,12052.0849,-440.7604|-61.5604,12052.7851,-441.7603|-31.5,-0.2,-18,-0,1,-0,0,0,1,1,0,0|-25.0604,12052.7851,-441.7603|-31.5,-0.2,18.5,-0,1,-0,0,0,1,1,0,0|-31.5,0.1999,18.5,0,1,0,-0,-0,-1,-1,-0,-0|-75.0604,12052.7851,-472.7603|-0.5,-0.2,-31.5,1,0,-0,0,0,1,0,-1,0|-12.0604,12052.7851,-473.7603|0.5,-0.2,31.5,-1,-0,-0,0,0,1,0,1,0|-34.0601,12052.0859,-431.2602|-33.0601,12052.0859,-431.2603|-34.5601,12052.0859,-434.7602|-34.5602,12057.5908,-431.2602|-34.5601,12052.0859,-432.7602|-34.56'
  7256. ..'01,12052.0859,-436.7602|-34.5601,12052.0859,-438.7602|-52.5601,12052.0849,-434.7604|-52.5601,12052.0849,-432.7604|-52.5602,12057.5878,-431.2603|-52.5601,12052.0849,-436.7604|-52.5601,12052.0849,-438.7604|-167.0604,12052.8857,-443.7603|0.5,-0.2,31.5,-1,0,-0,0,0,1,-0,1,-0|-124.5603,12058.5859,-410.2604|-124.5602,12052.0849,-420.7603|-123.0601,12052.0839,-419.2603|-124.5601,12052.0839,-419.7603|-124.5602,12057.5888,-419.2603|-126.0601,12052.0839,-419.2603|-128.0601,12052.0839,-419.2603|-132.0601,12052.0839,-419.2603|-130.0601,12052.0839,-419.2603|-134.0601,12052.0839,-419.2603|-135.0604,12052.8857,-430.7603|-31.5,-0.2,18.5,0,1,-0,0,0,1,1,0,-0|46.9399,12052.0888,-419.2602|46.9396,12052.0878,-401.2602|44.9396,12052.0878,-401.2602|47.9396,12052.8857,-430.2603|42.9399,12052.0888,-419.2602|44.9399,12052.0888,-419.2602|40.9437,12052.0878,-401.2602|42.9396,12052.0878,-401.2602|37.4398,12057.5927,-419.2602|40.9438,12052.0878,-419.2602|33.9399,12052.0888,-419.2602|35.9399,12052.0888,-419.2602|31.9399,12052.0878,-419.2602|38.9399,12052.0888,-419.2602|37.4399,12052.0888,-419.7602|37.4398,12052.0888,-420.7602|35.9398,12052.0878,-401.2602|37.4396,12052.0878,-400.7602|37.4396,12057.5908,-401.2602|33.9398,12052.0878,-401.2602|37.4396,12058.5908,-410.2602|37.44,12046.5898,-410.2602|31.9398,12052.0878,-401.2602|37.4398,12052.0878,-399.7602|38.9396,12052.0878,-401.2602|26.9399,12052.0878,-419.2602|22.9399,12052.0878,-419.2602|24.9399,12052.0878,-419.2602|29.9399,12052.0878,-419.2602|27.9399,12052.0878,-419.2602|20.9438,12052.0878,-419.2602|18.9399,12052.0878,-419.2602|22.9396,12052.0878,-401.2602|20.9437,12052.0869,-401.2602|26.9396,12052.0878,-401.2602|18.9396,12052.0878,-401.2602|29.9398,12052.0878,-401.2602|17.4396,12057.5898,-401.2602|24.9396,12052.0878,-401.2602|27.9398,12052.0878,-401.2602|17.4398,12052.0878,-420.7602|15.9399,12052.0878,-419.2602|17.4398,12057.591'
  7257. ..'7,-419.2602|17.4399,12052.0878,-419.7602|17.4396,12052.0878,-400.7602|17.4398,12052.0878,-399.7602|15.9398,12052.0878,-401.2602|17.44,12046.5898,-410.2602|17.4396,12058.5898,-410.2602|13.9399,12052.0878,-419.2602|11.9399,12052.0878,-419.2602|11.9398,12052.0878,-401.2602|13.9398,12052.0878,-401.2602|2.9399,12052.0878,-419.2602|4.9399,12052.0878,-419.2602|7.9399,12052.0878,-419.2602|6.9399,12052.0878,-419.2602|9.9399,12052.0878,-419.2602|0.9437,12052.0869,-401.2602|6.9396,12052.0869,-401.2602|9.9398,12052.0878,-401.2602|4.9396,12052.0869,-401.2602|2.9396,12052.0869,-401.2602|7.9397,12052.0878,-401.2602|-1.0601,12052.0878,-419.2602|-2.5602,12057.5917,-419.2602|0.9438,12052.0869,-419.2602|-2.5601,12052.0869,-419.7602|-2.5602,12052.0878,-420.7602|-4.0601,12052.0869,-419.2602|-4.0603,12052.0869,-401.2602|-1.0604,12052.0869,-401.2602|-2.5604,12052.0869,-400.7602|-2.5604,12058.5898,-410.2602|-2.5602,12052.0869,-399.7602|-2.5604,12057.5898,-401.2602|-2.56,12046.5888,-410.2602|-8.0601,12052.0869,-419.2602|-6.0601,12052.0869,-419.2602|-8.0602,12052.0869,-401.2602|-6.0602,12052.0869,-401.2602|-10.0601,12052.0869,-419.2602|-10.0602,12052.0869,-401.2602|-12.0601,12052.0869,-419.2602|-12.0602,12052.0869,-401.2602|-13.0601,12052.0869,-401.2602|-15.0601,12052.0869,-401.2602|-17.0601,12052.0869,-401.2602|-21.0601,12052.0869,-401.2602|-19.0601,12052.0869,-401.2602|-19.06,12052.0859,-419.2602|-21.06,12052.0859,-419.2602|-17.06,12052.0859,-419.2602|-15.06,12052.0859,-419.2602|-13.06,12052.0859,-419.2602|-22.5604,12057.5917,-401.2602|-22.56,12052.0859,-399.7602|-22.56,12046.5869,-410.2602|-24.0601,12052.0859,-401.2602|-22.5601,12052.0859,-400.7602|-22.5603,12058.5888,-410.2602|-24.06,12052.0859,-419.2602|-22.56,12052.0859,-420.7602|-22.5602,12057.5888,-419.2602|-22.56,12052.0859,-419.7602|-28.06,12052.0859,-419.2602|-30.06,12052.0849,-419.2602|-26.064,12052.0849,-419.260'
  7258. ..'2|-26.0642,12052.0859,-401.2602|-28.0601,12052.0859,-401.2602|-30.0601,12052.0859,-401.2602|-32.06,12052.0849,-419.2602|-32.0601,12052.0859,-401.2602|-34.5601,12052.0859,-398.7602|-34.0601,12052.5859,-400.7602|-34.0599,12052.5849,-419.7602|-34.5601,12052.0859,-421.7602|-34.5601,12052.0859,-423.7602|-34.5601,12052.0859,-425.7602|-34.5601,12052.0859,-429.7602|-34.5601,12052.0849,-427.7562|-43.5603,12058.5888,-420.2602|-43.5599,12046.5869,-430.7602|-53.56,12046.5859,-410.2603|-55.0601,12052.0859,-401.2603|-64.5603,12058.5878,-410.2603|-66.0601,12052.0849,-401.2603|-64.5601,12052.0849,-400.7603|-68.0642,12052.0849,-401.2603|-57.0601,12052.0859,-401.2603|-59.0601,12052.0849,-401.2603|-63.0601,12052.0849,-401.2603|-64.56,12052.0849,-399.7603|-64.5604,12057.5898,-401.2603|-61.0601,12052.0849,-401.2603|-70.0601,12052.0849,-401.2603|-72.0601,12052.0849,-401.2603|-52.5601,12052.0849,-398.7604|-53.0601,12052.5859,-400.7603|-52.5601,12052.0849,-421.7604|-53.0601,12052.5859,-419.7603|-72.06,12052.0839,-419.2602|-68.064,12052.0839,-419.2602|-70.06,12052.0839,-419.2602|-66.06,12052.0849,-419.2602|-61.06,12052.0849,-419.2603|-63.06,12052.0849,-419.2602|-64.56,12052.0849,-420.7602|-64.5602,12057.5878,-419.2603|-64.56,12052.0849,-419.7603|-59.06,12052.0849,-419.2603|-57.06,12052.0849,-419.2603|-55.06,12052.0849,-419.2603|-52.5601,12052.0849,-423.7604|-52.5601,12052.0849,-427.7564|-52.5601,12052.0849,-425.7604|-52.5601,12052.0849,-429.7604|-54.0601,12052.0849,-431.2604|-53.0601,12052.0849,-431.2604|-75.0604,12052.0859,-401.2603|-74.0601,12052.0849,-401.2603|-74.06,12052.0839,-419.2602|-75.0601,12052.0859,-419.2603|-77.0601,12052.0859,-419.2603|-83.0604,12052.0859,-401.2603|-79.0604,12052.0859,-401.2603|-77.0604,12052.0859,-401.2603|-81.0563,12052.0849,-401.2603|-83.0601,12052.0859,-419.2603|-81.0561,12052.0849,-419.2603|-79.0601,12052.0859,-419.2603|-84.5603,12058.586'
  7259. ..'9,-410.2603|-84.56,12046.5869,-410.2603|-84.5604,12052.0859,-399.7603|0,-180,180|-95.0602,12052.0849,-401.2604|-94.0604,12052.0859,-401.2603|-92.0604,12052.0859,-401.2603|-97.0602,12052.0849,-401.2604|-90.0604,12052.0859,-401.2603|-101.0563,12052.0839,-401.2604|-99.0602,12052.0849,-401.2604|-88.0604,12052.0859,-401.2603|-84.5604,12052.0859,-400.7603|-84.5602,12057.5869,-401.2603|-86.0604,12052.0859,-401.2603|-84.5602,12057.5898,-419.2603|-84.5601,12052.0849,-419.7603|-84.5604,12052.0859,-420.7603|-90.0601,12052.0849,-419.2603|-86.0601,12052.0849,-419.2603|-88.0601,12052.0849,-419.2603|-94.0601,12052.0849,-419.2603|-92.0601,12052.0849,-419.2603|-97.0601,12052.0849,-419.2603|-99.0601,12052.0849,-419.2603|-95.0601,12052.0849,-419.2603|-101.0561,12052.0839,-419.2603|-104.56,12046.5869,-410.2603|-104.5603,12058.5869,-410.2603|-106.0602,12052.0849,-401.2604|-104.5602,12052.0849,-400.7603|-104.5602,12052.0849,-399.7604|-103.0602,12052.0849,-401.2604|-104.5602,12057.5869,-401.2603|-103.0601,12052.0849,-419.2603|-104.5602,12057.5888,-419.2603|-106.0601,12052.0849,-419.2603|-104.5601,12052.0849,-419.7603|-104.5604,12052.0859,-420.7603|-108.0602,12052.0849,-401.2604|-108.0601,12052.0849,-419.2603|-115.0602,12052.0839,-401.2604|-121.0563,12052.0839,-401.2604|-112.0602,12052.0849,-401.2604|-119.0602,12052.0839,-401.2604|-117.0602,12052.0839,-401.2604|-114.0602,12052.0849,-401.2604|-110.0602,12052.0849,-401.2604|-110.0601,12052.0849,-419.2603|-112.0601,12052.0849,-419.2603|-115.0601,12052.0849,-419.2603|-114.0601,12052.0849,-419.2603|-117.0601,12052.0849,-419.2603|-119.0601,12052.0849,-419.2603|-121.0561,12052.0839,-419.2603|-166.5604,12046.2851,-412.2603|18.5,-6.4,31.5,0,-1,0,0,0,1,-1,0,-0|-0.5,-6.4,-31.5,1,0,0,0,0,1,0,-1,0|-0.5,-6.4,-31.5,-1,0,-0,0,0,1,-0,1,-0|-124.56,12046.5859,-410.2604|-123.0602,12052.0839,-401.2604|-128.0602,12052.0839,-401.2604|-126.0602,1'
  7260. ..'2052.0839,-401.2604|-124.5602,12052.0839,-399.7604|-134.0602,12052.0839,-401.2604|-132.0602,12052.0839,-401.2604|-124.5602,12052.0839,-400.7604|-130.0602,12052.0839,-401.2604|-124.5602,12057.5859,-401.2604|-164.1075,12049.499,-399.7708|0.0099,-90.03,0|-165.1087,12049.499,-397.7714|0,-0.03,0.0099|-163.1072,12049.2041,-399.7721|-0.01,179.97,-0.01|-167.1075,12049.499,-399.7725|-165.1063,12049.499,-401.7714|-165.608,12053.0986,-399.7715|-0.5001,3,-1.9999,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-0.5001,3,2.0001,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|0,3,-1.5001,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|0,3,1.4999,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|-166.5604,12059.4853,-412.2603|-165.5604,12046.6855,-412.2603|-170.5604,12047.8857,-412.2603|-0.034,-0.0084,0.0175|-157.0604,12048.6855,-419.2603|-0.0378,-0.0176,0.0092|-157.0604,12048.6855,-405.2603|-0.0304,0.0047,0.0092|-155.0604,12048.6855,-401.2603|-0.0283,0.0114,0.0081|-155.0604,12048.6855,-424.2603|-0.0404,-0.0253,0.0081|-170.5604,12047.4853,-412.2603|-0.0339,-0.0084,0.0182|0,0,-7.5,1,0,0,0,1,0,0,0,1|-145.0604,12054.0849,-416.7603|-0.0372,-0.0119,-0.0058|0,0.3999,-10,1,0,0,0,0,-1,0,1,0|-150.0604,12054.0849,-416.7603|-0.0372,-0.0126,-0.0031|-3.5,-3,-0.5,0,-1,0,0,0,1,-1,0,0|-146.5604,12054.0849,-416.7603|-0.0372,-0.0121,-0.005|-3.5,3,0.5,0,-1,0,0,0,-1,1,0,0|-148.3604,12049.4853,-410.2603|90,90,0|-0.0332,-0.002,0.0033|-0.5001,0,0,0,0,1,0,-1,0,1,0,0|-146.0604,12050.5849,-420.2603|-0.0386,-0.0176,0.0003|0,0,0.5,1,0,-0,0,-1,-0,0,0,-1|-152.0604,12050.5849,-425.8603|-0.0415,-0.0274,0.0035|-145.0604,12054.0849,-407.7603|-0.0325,0.0025,-0.0058|-147.0604,12050.5849,-420.2603|-0.0386,-0.0178,0.0009|0,0,2,-1,0,-0,0,1,0,0,0,-1|-155.0604,12050.4853,-416.7603|-0.0367,-0.0133,0.0052|2,-6.7001,-1.0001,0,0,-1,1,0,0,0,-1,0|0.0999,3,9,0,-1,0,0,0,-1,1,0,0|0.0999,-6,-1.5,-0,-1,0,-0,0,1,-1,0,0|0.0999,-3,-5.5,-0,-1,0,'
  7261. ..'-0,0,1,-1,0,0|2,-9.1,-1.0001,0,0,-1,1,0,0,0,-1,0|1,-1.0001,1,0,0,-1,0,-1,0,-1,0,0|0.0999,-6,3.5,-0,-1,0,-0,0,1,-1,0,0|1,0,10,0,0,-1,0,1,0,1,0,0|-149.5604,12050.5849,-420.2603|-0.0386,-0.0181,0.0022|-153.5604,12050.5849,-423.2603|-0.0401,-0.0235,0.0043|0,0,4,-1,0,-0,0,1,0,0,0,-1|-158.5604,12050.5849,-423.2603|-0.0401,-0.0242,0.0069|-145.9604,12049.4853,-410.2603|-0.0332,-0.0017,0.002|0,2.1999,0,1,0,0,0,0,-1,0,1,0|-151.0604,12049.4853,-414.2603|-0.0353,-0.0088,0.0047|2,1.9999,7.5,-1,0,0,0,1,0,0,0,-1|-1,-2,-2.5,-1,0,0,0,-1,0,0,0,1|0,-2.2001,0,1,0,0,0,0,1,0,-1,0|-146.5604,12054.0849,-407.7603|-0.0325,0.0022,-0.005|3.4999,3,0.5,0,1,0,0,0,-1,-1,0,0|0,0.3999,8.5,1,0,0,0,0,-1,0,1,0|0,0,2.5,-1,0,0,0,1,0,0,0,-1|-157.5604,12049.4853,-419.2603|-0.0379,-0.0177,0.0081|0.5,-4,1,-0,0,-1,-0,-1,0,-1,0,0|-154.0604,12049.4853,-415.2603|-0.0358,-0.0108,0.0063|-148.3604,12049.4853,-414.2603|-0.0353,-0.0084,0.0033|0,-0.2,0,-1,0,0,0,0,1,0,1,0|-145.9604,12049.4853,-414.2603|-0.0353,-0.008,0.002|-155.5604,12049.4853,-424.2603|-0.0405,-0.0254,0.0071|0.5,1,3,-0,0,-1,-0,-1,0,-1,0,0|-151.0604,12049.4853,-410.2603|-0.0332,-0.0024,0.0047|-2,1.9999,7.5,-1,0,0,0,1,0,0,0,-1|2,0.1999,-7.5,1,0,0,0,1,0,0,0,1|-159.0604,12048.8857,-415.2603|-0.0357,-0.0115,0.0099|0,-1.4001,2.5,-1,0,0,0,1,0,0,0,-1|0,-1.6,3.5,1,0,0,0,-1,0,0,0,-1|3,0.1999,6.5,-1,0,0,0,0,-1,0,-1,0|-150.0604,12054.0849,-407.7603|-0.0325,0.0017,-0.0031|3.4999,-3,-0.5,0,1,0,0,0,1,1,0,0|-146.0604,12050.5849,-404.2603|-0.0302,0.0079,0.0003|-154.0604,12047.4853,-415.2603|-0.0355,-0.0108,0.0095|3,0.1999,11.5,-1,0,0,0,0,-1,0,-1,0|-147.0604,12050.5849,-404.2603|-0.0302,0.0078,0.0009|-154.0604,12047.4853,-409.2603|-0.0323,-0.0012,0.0095|-3,0.1999,11.5,-1,0,0,0,0,-1,0,-1,0|-159.0604,12047.4853,-412.2603|-0.0339,-0.0067,0.0121|-1,1,6,0,0,1,0,-1,0,1,0,0|-159.0604,12049.2851,-412.2603|-0.0342,-0.0067,0.0093|-154.0604,12049.4853,-409.2603|-'
  7262. ..'0.0326,-0.0012,0.0063|0.5,-1.0001,1,0,0,-1,0,-1,0,-1,0,0|-149.5604,12050.5849,-404.2603|-0.0302,0.0074,0.0022|-155.0604,12050.4853,-407.7603|-0.032,0.001,0.0052|-2,-6.7001,-1.0001,0,0,1,-1,0,0,0,-1,0|0,-3.2,-5,-1,0,0,0,0,1,0,1,0|-1,0,10,0,0,1,0,1,0,-1,0,0|-165.0604,12048.4853,-415.2603|-0.0356,-0.0124,0.0137|0,0.4,2.5,-1,0,0,0,1,0,0,0,-1|0.5,-0.4001,5.5,0,0,-1,0,-1,0,-1,0,0|-2,-0.8001,6,0,0,1,0,-1,0,1,0,0|3,0.1999,0.5,1,-0,0,0,0,-1,0,1,0|-165.0604,12050.4853,-415.2603|-0.0359,-0.0124,0.0105|-159.0604,12048.8857,-409.2603|-0.0325,-0.0019,0.0099|-3,0.1999,6.5,-1,0,0,0,0,-1,0,-1,0|0,-0.4001,3.5,-1,0,0,0,1,0,0,0,-1|-157.5604,12049.4853,-405.2603|-0.0305,0.0047,0.0081|-0.5,-4,1,0,0,1,0,1,0,-1,0,0|-167.0604,12049.6855,-412.2603|-0.0342,-0.0079,0.0128|3.5,-0.8,0.5,-1,0,0,0,1,0,0,0,-1|-153.5604,12050.5849,-401.2603|-0.0286,0.0116,0.0043|-152.0604,12050.5849,-398.6603|-0.0272,0.016,0.0035|0,2.6,-1,-1,0,0,0,-1,0,0,0,1|-170.5604,12050.4853,-413.7603|-0.0351,-0.0108,0.0134|3.5,1,-1,1,0,0,0,1,0,0,0,1|0,0.7999,0,0,-1,0,0,0,-1,1,0,0|-165.0604,12050.4853,-409.2603|-0.0328,-0.0028,0.0105|-170.5604,12047.6855,-413.7603|-0.0347,-0.0108,0.0179|1.5,0.2,-7.5,-1,0,0,0,-1,0,0,0,1|1,0.7999,-5.5,0,0,-1,0,1,0,1,0,0|0,-0.8001,0,0,-1,0,0,0,1,-1,0,0|-170.5604,12048.8857,-413.7603|-0.0349,-0.0108,0.0159|-155.5604,12049.4853,-401.2603|-0.0284,0.0113,0.0071|-165.0604,12048.4853,-409.2603|-0.0325,-0.0028,0.0137|-3,0.1999,0.5,1,-0,0,0,0,-1,0,1,0|2,-0.8001,6,0,0,-1,0,-1,0,-1,0,0|-158.5604,12050.5849,-401.2603|-0.0286,0.0109,0.0069|0,0,1,-1,0,0,0,1,0,0,0,-1|3,-0.6,0,-1,0,0,0,0,1,0,1,0|-0.5,0.0999,-3.5,0,0,1,1,0,0,0,1,0|-170.5604,12050.4853,-410.7603|-0.0336,-0.006,0.0134|-1,-2,-5.5,0,0,1,0,-1,0,1,0,0|0,0.7999,0,-0,1,0,0,0,-1,-1,0,0|3.5,1,1,-1,0,0,0,1,0,0,0,-1|-170.5604,12047.6855,-410.7603|-0.0332,-0.006,0.0179|-1.5,0.2,-7.5,-1,0,0,0,-1,0,0,0,1|-1,0.7999,-5.5,0,0,1,0,1,0,-1,0,0|-170.56'
  7263. ..'04,12048.8857,-410.7603|-0.0333,-0.006,0.0159|-1,-0.4001,-5.5,0,0,1,0,-1,0,1,0,0|-170.5604,12051.2851,-412.2603|-0.0345,-0.0084,0.0121|0,0.7999,0.5,-1,0,0,0,1,0,0,0,-1|-174.0604,12049.4853,-412.2603|-0.0342,-0.0089,0.0168|79.4396,12059.4853,-412.2603|-0.5,6.3999,-31.5,-1,-0,0,0,0,-1,-0,-1,0|79.4396,12046.2851,-412.2603|18.5,-6.4,31.5,0,-1,-0,0,0,1,-1,0,0|78.9396,12052.8857,-443.7603|47.9396,12052.8857,-393.7603|-33.0601,12052.0859,-389.2604|-34.5601,12052.0859,-392.7602|-34.5603,12057.5917,-389.2602|-34.5601,12052.0859,-390.7602|-34.5601,12052.0859,-396.7602|-34.0601,12052.0859,-389.2602|-34.5601,12052.0859,-394.7602|-43.56,12046.5869,-389.7602|-43.5603,12058.5888,-389.2602|-52.5603,12057.5878,-389.2603|-52.5601,12052.0849,-396.7604|-52.5601,12052.0849,-390.7604|-52.5601,12052.0849,-392.7604|-52.5601,12052.0849,-394.7604|-53.0602,12052.0849,-389.2604|-54.0601,12052.0849,-389.2604|-135.0604,12052.8857,-394.2603|-31.5,-0.2,-18,0,1,-0,0,0,1,1,0,-0|-31.5,0.1999,-18,-0,1,0,0,0,-1,-1,0,0|75.9868,12049.499,-424.7498|76.988,12049.499,-426.7492|74.9865,12049.2041,-424.7485|78.9868,12049.498,-424.7481|76.9855,12049.499,-422.7492|77.4872,12053.0986,-424.7491|77.4396,12046.6855,-412.2603|3,0.5999,11.4999,-1,0,0,0,0,-1,0,-1,0|3,2,6.4999,-1,0,0,0,0,-1,0,-1,0|82.4396,12047.8857,-412.2603|68.9396,12048.6855,-405.2603|68.9396,12048.6855,-419.2603|66.9396,12048.6855,-423.2603|66.9396,12048.6855,-400.2603|-0.5,0.5999,0,0,-1,0,-0,0,-1,1,0,0|82.4396,12047.4853,-412.2603|0,0,-7.5001,1,0,0,0,1,0,0,0,1|56.9396,12054.0849,-407.7603|0,0,0.9999,1,0,0,0,-1,0,0,0,-1|61.9396,12054.0849,-407.7603|58.4396,12054.0849,-407.7603|60.2397,12049.4853,-414.2603|57.9396,12050.5849,-404.2603|0,0,0.4999,1,-0,0,0,-1,0,0,-0,-1|0.5,-3.5,0.4999,0,0,-1,1,0,0,0,-1,0|63.9396,12050.5849,-398.6603|0,2.6,1,1,-0,0,0,-1,0,0,-0,-1|56.9396,12054.0849,-416.7603|58.9396,12050.5849,-404.2603|66.9396,12050.4'
  7264. ..'853,-407.7603|61.4396,12050.5849,-404.2603|-0.5,0.0999,-5.5,0,0,1,-1,0,0,0,-1,0|0.5,-3.5,0.4999,0,0,-1,-1,0,0,0,1,0|65.4396,12050.5849,-401.2603|0,0,3.9999,-1,0,0,0,1,0,0,0,-1|70.4396,12050.5849,-401.2603|57.8396,12049.4853,-414.2603|62.9396,12049.4853,-410.2603|58.4396,12054.0849,-416.7603|69.4396,12049.4853,-405.2603|65.9396,12049.4853,-409.2603|0.5,0,1,0,0,-1,0,-1,0,-1,0,0|60.2397,12049.4853,-410.2603|-0.5,0,0,0,0,1,0,-1,0,1,0,0|57.8396,12049.4853,-410.2603|67.4396,12049.4853,-400.2603|62.9396,12049.4853,-414.2603|-2,1.9999,7.4999,-1,0,0,0,1,0,0,0,-1|1,-2,-2.5,-1,0,0,0,-1,0,0,0,1|70.9396,12048.8857,-409.2603|0,-1.4001,2.4999,-1,0,0,0,1,0,0,0,-1|0.5,-1.6,3.9999,0,0,-1,0,-1,0,-1,0,0|61.9396,12054.0849,-416.7603|57.9396,12050.5849,-420.2603|-0.5,-3.5,0.4999,0,0,1,-1,0,0,0,-1,0|0,0,-0.5001,-1,0,0,0,-1,0,0,0,1|65.9396,12047.4853,-409.2603|0.5,-2,1,0,0,-1,0,-1,0,-1,0,0|58.9396,12050.5849,-420.2603|65.9396,12047.4853,-415.2603|70.9396,12047.4853,-412.2603|70.9396,12049.2851,-412.2603|0,0.2,0,-1,0,0,0,0,-1,0,-1,0|0.4999,-0.2,-2,0,0,-1,0,1,0,1,0,0|65.9396,12049.4853,-415.2603|61.4396,12050.5849,-420.2603|-0.5,0.0999,5.5,0,0,1,1,0,0,0,1,0|-0.5,-3.5,0.4999,0,0,1,1,0,0,0,1,0|0,0,0.5,-1,0,0,0,1,0,0,0,-1|66.9396,12050.4853,-416.7603|76.9396,12048.4853,-409.2603|76.9396,12050.4853,-409.2603|70.9396,12048.8857,-415.2603|0.5,-1.6,-4,0,0,-1,0,-1,0,-1,0,0|69.4396,12049.4853,-419.2603|78.9396,12049.6855,-412.2603|65.4396,12050.5849,-423.2603|63.9396,12050.5849,-425.8603|82.4396,12050.4853,-410.7603|76.9396,12050.4853,-415.2603|0.5,0,-10,0,0,-1,0,1,0,1,0,0|82.4396,12047.6855,-410.7603|82.4396,12048.8857,-410.7603|67.4396,12049.4853,-423.2603|-0.5,0,2.9999,0,0,1,0,1,0,-1,0,0|76.9396,12048.4853,-415.2603|-0.5,-0.4001,5.5,0,0,1,0,-1,0,1,0,0|-2,1,-6,0,0,1,0,-1,0,1,0,0|70.4396,12050.5849,-423.2603|82.4396,12050.4853,-413.7603|0,0.7999,0,0,1,0,0,0,-1,-1,0,0|82.4396,12047.6'
  7265. ..'855,-413.7603|82.4396,12048.8857,-413.7603|82.4396,12051.2851,-412.2603|85.9396,12049.4853,-412.2603|79.4396,12059.4853,-348.2603|75.9868,12049.499,-360.7498|76.988,12049.499,-362.7492|74.9865,12049.2041,-360.7485|78.9868,12049.498,-360.7481|76.9855,12049.499,-358.7492|77.4872,12053.0986,-360.7491|77.4396,12046.6855,-348.2603|3,1.5999,-0.5,1,0,0,0,0,-1,0,1,0|-3,1.9999,6.4999,-1,0,0,0,0,-1,0,-1,0|82.4396,12047.8857,-348.2603|68.9396,12048.6855,-341.2603|68.9396,12048.6855,-355.2603|66.9396,12048.6855,-359.2603|66.9396,12048.6855,-336.2603|82.4396,12047.4853,-348.2603|56.9396,12054.0849,-343.7603|61.9396,12054.0849,-343.7603|-3.5,-3,-0.5001,0,-1,0,0,0,1,-1,0,0|58.4396,12054.0849,-343.7603|60.2397,12049.4853,-350.2603|0.5,-1.0001,6.6999,0,0,-1,-1,0,0,0,1,0|57.9396,12050.5849,-340.2603|63.9396,12050.5849,-334.6603|56.9396,12054.0849,-352.7603|0,0.3999,10,-1,0,0,0,0,-1,0,-1,0|58.9396,12050.5849,-340.2603|66.9396,12050.4853,-343.7603|61.4396,12050.5849,-340.2603|0,0,-0.5001,1,0,0,0,1,0,0,0,1|65.4396,12050.5849,-337.2603|0,2.6,0.5,1,0,0,-0,-1,-0,0,0,-1|70.4396,12050.5849,-337.2603|57.8396,12049.4853,-350.2603|62.9396,12049.4853,-346.2603|58.4396,12054.0849,-352.7603|69.4396,12049.4853,-341.2603|0.5,-4,1,0,0,-1,0,-1,0,-1,0,0|65.9396,12049.4853,-345.2603|60.2397,12049.4853,-346.2603|57.8396,12049.4853,-346.2603|67.4396,12049.4853,-336.2603|0.5,1,2.9999,0,0,-1,0,-1,0,-1,0,0|62.9396,12049.4853,-350.2603|1,0,-2.5,-1,0,0,0,-1,0,0,0,1|70.9396,12048.8857,-345.2603|61.9396,12054.0849,-352.7603|57.9396,12050.5849,-356.2603|-0.5,0.0999,9,0,0,1,-1,0,0,0,-1,0|0,0,-0.5,-1,0,0,0,-1,0,0,0,1|65.9396,12047.4853,-345.2603|3,0.1999,11.4999,-1,0,0,0,0,-1,0,-1,0|58.9396,12050.5849,-356.2603|65.9396,12047.4853,-351.2603|70.9396,12047.4853,-348.2603|-4,0.2,1.5,0,0,1,0,-1,0,1,0,0|1,0.9999,5.9999,0,0,-1,0,-1,0,-1,0,0|0.5,-2,2,0,0,-1,0,1,0,1,0,0|0.5,-2,-2,0,0,-1,0,1,0,1,0,0|70.9396,'
  7266. ..'12049.2851,-348.2603|65.9396,12049.4853,-351.2603|61.4396,12050.5849,-356.2603|66.9396,12050.4853,-352.7603|-1,0,9.9999,0,0,1,0,1,0,-1,0,0|76.9396,12048.4853,-345.2603|5.5,-2.0001,-0.5,-1,0,0,0,-1,0,0,0,1|76.9396,12050.4853,-345.2603|70.9396,12048.8857,-351.2603|69.4396,12049.4853,-355.2603|78.9396,12049.6855,-348.2603|-3.5,-0.8,0.5,-1,0,0,0,1,0,0,0,-1|65.4396,12050.5849,-359.2603|-0.5,0.0999,1.5,0,0,1,-1,0,0,0,-1,0|63.9396,12050.5849,-361.8603|82.4396,12050.4853,-346.7603|76.9396,12050.4853,-351.2603|82.4396,12047.6855,-346.7603|82.4396,12048.8857,-346.7603|67.4396,12049.4853,-359.2603|76.9396,12048.4853,-351.2603|5.5,-0.8,-0.5,1,0,0,0,1,0,0,0,1|2,-0.8001,5.9999,0,0,-1,0,-1,0,-1,0,0|70.4396,12050.5849,-359.2603|82.4396,12050.4853,-349.7603|82.4396,12047.6855,-349.7603|82.4396,12048.8857,-349.7603|0,-0.4001,0,0,1,0,0,0,1,1,0,0|82.4396,12051.2851,-348.2603|85.9396,12049.4853,-348.2603|78.9396,12052.8857,-379.7603|-0.5,0.1999,-31.5,-1,-0,-0,-0,-0,-1,-0,-1,-0|-0.5,-0.2,-31.5,1,0,0,0,0,1,0,-1,0|79.9396,12052.8857,-380.7603|0.5,-0.2,31.5,-1,0,0,0,0,1,0,1,0|79.4396,12046.2851,-348.2603|47.9396,12052.8857,-366.2603|-31.5,0.1999,-18,0,1,0,0,0,-1,-1,0,0|46.9396,12052.0878,-339.2602|44.9396,12052.0878,-339.2602|42.9396,12052.0878,-339.2602|44.9399,12052.0888,-357.2602|46.9399,12052.0888,-357.2602|42.9399,12052.0888,-357.2602|40.9437,12052.0878,-339.2602|38.9396,12052.0878,-339.2602|40.9438,12052.0878,-357.2602|37.4396,12052.0878,-337.7602|35.9396,12052.0878,-339.2602|33.9396,12052.0878,-339.2602|29.9399,12052.0878,-357.2602|33.9399,12052.0878,-357.2602|37.4396,12052.0888,-358.7602|37.4396,12058.5908,-348.2602|38.9399,12052.0888,-357.2602|37.4396,12052.0878,-338.7602|37.4396,12057.5917,-357.2602|35.9399,12052.0888,-357.2602|31.9396,12052.0878,-339.2602|29.9396,12052.0878,-339.2602|31.9399,12052.0878,-357.2602|37.4396,12057.5908,-339.2602|37.4399,12046.5898,-34'
  7267. ..'8.2602|37.4399,12052.0888,-357.7602|17.4396,12052.0878,-337.7602|17.4396,12052.0878,-338.7602|22.9396,12052.0878,-339.2602|17.4396,12057.5898,-339.2602|18.9396,12052.0878,-339.2602|24.9396,12052.0878,-339.2602|20.9437,12052.0869,-339.2602|17.4396,12057.5917,-357.2602|17.4399,12046.5898,-348.2602|26.9399,12052.0878,-357.2602|27.9399,12052.0878,-357.2602|17.4396,12058.5898,-348.2602|24.9399,12052.0878,-357.2602|27.9396,12052.0878,-339.2602|18.9399,12052.0878,-357.2602|17.4399,12052.0878,-357.7602|20.9438,12052.0878,-357.2602|26.9396,12052.0878,-339.2602|17.4396,12052.0878,-358.7602|22.9399,12052.0878,-357.2602|15.9396,12052.0878,-339.2602|15.9399,12052.0878,-357.2602|13.9396,12052.0878,-339.2602|13.9399,12052.0878,-357.2602|11.9396,12052.0878,-339.2602|11.9399,12052.0878,-357.2602|0.9437,12052.0869,-339.2602|0.9438,12052.0869,-357.2602|2.9399,12052.0878,-357.2602|2.9396,12052.0869,-339.2602|7.9396,12052.0878,-339.2602|7.9399,12052.0878,-357.2602|4.9399,12052.0878,-357.2602|6.9399,12052.0878,-357.2602|9.9399,12052.0878,-357.2602|4.9396,12052.0869,-339.2602|6.9396,12052.0869,-339.2602|9.9396,12052.0878,-339.2602|-6.0604,12052.0869,-339.2602|-1.0601,12052.0878,-357.2602|-2.5604,12057.5898,-339.2602|-2.5604,12057.5908,-357.2602|-2.5604,12052.0869,-337.7602|-2.5604,12052.0869,-338.7602|-1.0604,12052.0869,-339.2602|-4.0604,12052.0869,-339.2602|-2.5601,12052.0869,-357.7602|-2.5601,12046.5888,-348.2602|-4.0601,12052.0869,-357.2602|-2.5604,12052.0878,-358.7602|-2.5604,12058.5898,-348.2602|-10.0602,12052.0869,-357.2602|-8.0602,12052.0869,-357.2602|-6.0602,12052.0869,-357.2602|-10.0604,12052.0869,-339.2602|-8.0604,12052.0869,-339.2602|-12.0604,12052.0869,-339.2602|-12.0602,12052.0869,-357.2602|Brick|-13.1781,12131.8955,-330.353|-10.62,-51.1301,-27.8|6,0.4,6|0.4274,0.4313,0.4235|-21.5604,12120.9853,-352.7603|0,0,0.9333|-21.5604,12119.2851,-350.7603|2,2.4,1|0,-1.2'
  7268. ..'001,0,1,0,0,-0,-0,-1,0,1,0|-2,-0.5,0,-0,1,-0,0,0,1,1,0,0|-21.5604,12119.2851,-354.7603|2,-0.5,0,-0,1,-0,0,0,1,1,0,0|1056|-22.0604,12122.0849,-360.2603|3,8,8|Part-to-Wedge Strong Joint|-1.5,-4,-4,-0,0,-1,0,1,0,1,0,-0|-4,-0.5,3.2999,0.9999,0,0,0,0,0.9999,0,-1,0|-4,5.6999,0.25,0.9999,0,0,0,-1,0,0,0,-1|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|6.5,-3.5,-1.5,-0.0001,0,-1,0,-1,0,-1,-0,-0.0001|-23.0604,12120.2851,-354.7603|1,0.4,1|-20.3604,12122.4853,-354.7603|0,0,-90|4,0.4,1|-20.3604,12122.4853,-350.7603|-20.7604,12123.9833,-350.7603|-90,-90,0|3,0.4,3|http://www.roblox.com/asset/?id=48736318|-20.7604,12123.9833,-354.7603|-89.9701,-0.48,-89.52|http://www.roblox.com/asset/?id=40288979|1.2999,1.8979,4,-0.0001,1,-0.0001,0.9999,0,0,0,-0.0001,-1|-13.0602,12052.0869,-339.2602|-13.0601,12052.0859,-357.2602|-17.0602,12052.0869,-339.2602|-17.0601,12052.0859,-357.2602|-22.5601,12052.0859,-337.7602|-21.0601,12052.0859,-357.2602|-15.0601,12052.0859,-357.2602|-19.0601,12052.0859,-357.2602|-19.0602,12052.0869,-339.2602|-22.5604,12057.5908,-339.2602|-22.5602,12052.0859,-338.7602|-22.5604,12058.5888,-348.2602|-21.0602,12052.0859,-339.2602|-22.5604,12057.5888,-357.2602|-15.0602,12052.0869,-339.2602|-18.4537,12136.8505,-332.6966|24.5599,-7.9801,-47.39|-19.556,12137.8857,-332.2037|32.75,0.49,-48|-21.42,12139.6357,-330.3417|48.84,20.7299,-44.03|-17.3009,12135.7685,-332.8643|16.53,-16.1101,-45.5601|-16.1479,12134.6845,-332.6995|8.8199,-24.23,-42.66|-20.5594,12138.8271,-331.4072|40.9199,9.81,-47.0801|-17.0604,12111.0849,-339.2603|-15.0448,12133.6494,-332.2097|1.6,-32.64,-38.7401|-14.0402,12132.706,-331.4162|-4.95,-41.55,-33.7901|0.0509,0.4117,0.6745|-17.0598,12111.0595,-366.2584|-0.13,-0.01,0.0099|-0.0039,-0.0086,-0.0314|1,12,16|-17.0604,12111.0849,-357.2603|-17.0604,12111.0761,-348.2603|0,-0.0117,0.0059|-17.0604,12111.0849,-374.7603|1,12,1|-24.0604,12121.3847,-360.2603|89.9499,0,0|6,1,0.4'
  7269. ..'|http://www.roblox.com/asset?id=53857735|-23.8104,12123.7851,-360.2603|6,3,0.5|http://www.roblox.com/asset?id=53857544 |-24.0604,12118.5849,-350.7603|0,-90,-180|1,1,3|-24.5579,12104.5458,-367.2443|0,-90.0101,0.1299|16,1,16|-24.0602,12052.0859,-339.2602|-24.0601,12052.0859,-357.2602|-22.5601,12046.5869,-348.2602|-22.5601,12052.0859,-358.7602|-22.5601,12052.0859,-357.7602|-24.5604,12104.4853,-348.2603|22,1.2,16|-26.0604,12118.5849,-355.7603|11,1,1|-30.0604,12118.5849,-361.7603|13,1,1|-26.0604,12118.5849,-339.7603|-90,-180,0|1,21,1|-26.0643,12052.0859,-339.2602|-28.0601,12052.0859,-357.2602|-26.064,12052.0849,-357.2602|-30.0601,12052.0849,-357.2602|-28.0602,12052.0859,-339.2602|-30.0602,12052.0859,-339.2602|-25.5592,12111.0634,-374.7619|0.1,90.0199,0|-0.0062,-0.0101,0.0175|-32.0601,12052.0849,-357.2602|-32.0602,12052.0859,-339.2602|-33.0604,12081.5849,-348.7603|21,47,1|-34.5601,12052.0859,-387.7602|-34.5601,12052.0849,-385.7562|-34.5601,12052.0859,-379.7602|-34.5601,12052.0859,-383.7602|-34.5601,12052.0859,-381.7602|-34.5602,12052.0859,-363.7602|-34.0602,12052.5859,-338.7602|-34.5602,12052.0859,-372.7602|-34.5602,12052.0849,-365.7563|-34.5602,12052.0859,-334.7602|-34.5603,12057.5908,-369.2602|-34.5602,12052.0859,-332.7602|-34.0602,12052.0859,-369.2602|-34.5602,12052.0859,-359.7602|-34.0599,12052.5849,-357.7602|-34.5602,12052.0859,-361.7602|-34.5602,12052.0859,-374.7602|-34.5602,12052.0859,-376.7602|-34.5602,12052.0859,-336.7602|-34.5602,12052.0859,-370.7602|-34.5602,12052.0859,-367.7602|-33.0602,12052.0859,-369.2604|-34.5602,12052.0859,-378.7602|-34.5604,12111.0849,-374.7603|-42.5613,12102.0751,-348.2603|2,2,4|0,1,0,-1,-0,-0,0,0,1,0,1,0|0,-1,0,-1,0,0,-0.0001,0,1,0,1,0|1,-0.0001,0,0,0,-1,0,1,-0.0001,1,0,0|-42.5609,12088.0751,-348.2603|-42.561,12092.0751,-348.2603|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,1,0,1,0,-0.0001,0,0,-1,0,1,0|-42.5609,12090.0751,-348.2'
  7270. ..'603|-42.5607,12082.0751,-348.2603|0,-1.0001,0,-1,0,0,-0.0001,0,1,0,1,0|-42.561,12094.0751,-348.2603|-42.5602,12068.0751,-348.2603|-42.5606,12078.0751,-348.2603|-42.5612,12100.0751,-348.2603|-42.5601,12062.0751,-348.2603|-42.5603,12070.0751,-348.2603|-42.5599,12056.0751,-348.2603|-0.0001,0.9999,0,1,0,-0.0001,0,0,-1,0,1,0|1,0,0,0,0,-1,0,1,-0.0001,1,0,0|-42.5601,12064.0751,-348.2603|-42.5604,12072.0751,-348.2603|-43.5604,12104.5849,-340.7603|5,20,1|-42.5598,12054.0751,-348.2603|-42.5606,12080.0751,-348.2603|-37.0604,12117.5849,-348.2603|41,1,54|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|-15,-4,12,-1,-0.0001,0,0,0,0.9999,0,0.9999,0|-25.5,-4,8.5,0,1,0,0,0,1,1,-0,-0|-42.56,12060.0751,-348.2603|-42.5599,12058.0751,-348.2603|-44.0604,12081.5849,-358.7603|-43.0604,12081.5849,-337.7603|-43.56,12046.5869,-368.7602|-43.5604,12058.5888,-369.2602|-44.5602,12066.0751,-348.2603|-1,0,0,0,0,1,0,1,0,-1,0,0|-44.5602,12068.0751,-348.2603|-1,-0.0001,0,0,0,1,0,1,0,-1,0,0|-44.561,12092.0751,-348.2603|-44.5607,12084.0751,-348.2603|-36.0604,12104.5849,-348.2603|10,5,1|-44.5606,12078.0751,-348.2603|-1.0001,0,0,0,0,1,0,1,0,-1,0,0|-44.5608,12086.0751,-348.2603|-44.5612,12098.0751,-348.2603|-44.561,12094.0751,-348.2603|-44.5606,12080.0751,-348.2603|-44.5601,12064.0751,-348.2603|-44.5611,12096.0751,-348.2603|-44.5612,12100.0751,-348.2603|-44.5604,12072.0751,-348.2603|-44.5604,12074.0751,-348.2603|-44.5607,12082.0751,-348.2603|-44.5598,12054.0751,-348.2603|-44.5605,12076.0751,-348.2603|-44.5609,12088.0751,-348.2603|-44.5599,12056.0751,-348.2603|-44.5609,12090.0751,-348.2603|-44.56,12060.0751,-348.2603|-44.5598,12052.0751,-348.2603|-44.5599,12058.0751,-348.2603|-44.5601,12062.0751,-348.2603|-43.5604,12104.5849,-355.7603|-44.5603,12070.0751,-348.2603|-43.5604,12111.0761,-374.7603|-0.0001,-0.0126,-0.0001|Handle|-37.7957,12133.1083,-366.3154|-3.6901,-0.3301,0.18|0.0826,-0.0234,0.0324|20,28.8,20|25'
  7271. ..',25,25|http://www.roblox.com/asset/?id=1095752|http://www.roblox.com/asset/?id=1095753|-43.5604,12104.4853,-367.2603|-44.5613,12102.0751,-348.2603|-42.5613,12104.0751,-348.2603|-42.5612,12098.0751,-348.2603|-42.5611,12096.0751,-348.2603|-44.5613,12104.0751,-348.2603|-42.5608,12086.0751,-348.2603|-42.5605,12076.0751,-348.2603|-42.5604,12074.0751,-348.2603|-42.5607,12084.0751,-348.2603|-42.5602,12066.0751,-348.2603|-42.5598,12052.0751,-348.2603|-42.5596,12048.0751,-348.2603|-66.6895,12143.2265,-338.7603|63.5999,-90,180|3,9.6,1|1,1.5,1|1,0.9607,0|-68.8481,12139.0029,-338.7603|0,0,33|4,2.4,5|-67.5604,12122.4853,-336.6603|90,0,0|6,1.2,4|1,2,2|-67.5604,12119.2851,-338.2603|6,2.4,6|-66.5606,12135.4804,-338.7603|26,1.2,25|-67.541,12136.9892,-338.7603|6,2.4,7|-0.0001,0.5999,0,0.9999,0,0,0,0,-1,0,1,0|-67.5604,12127.6845,-338.2603|2,14.4,2|-68.5606,12111.0673,-362.254|89.9,0,-180|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.0001,2,-1,0,0,-0.0001,1,0,0,0,-1|0,0,-2,1,0,0,0,1,0,-0.0001,0,1|-68.5606,12115.0673,-362.261|-68.5606,12111.0634,-364.254|-68.5606,12107.0673,-362.2469|-68.5606,12107.0634,-364.2469|0,0,2,-1,0,0,-0.0001,1,0,0,0,-1|0,1,0,1,-0.0001,-0.0001,0,0,-1,-0.0001,1,0|-62.5604,12104.4853,-367.2603|-67.5604,12122.4853,-339.8603|90,-180,0|-67.0604,12122.0849,-348.2603|2,1.5,3.5,0,-0,-1,-1,0,0,0,1,0|0,-4,0,1,0,0,-0,-0,-1,0,1,0|3,-0.5,-7.5,1,0,0,0,0,1,0,-1,0|-1.5,-1.3,-1.8989,0,-0.0001,0.9999,1,0,-0.0001,-0.0001,0.9999,0|-62.5604,12104.4853,-348.2603|-63.5604,12118.5849,-349.7603|4,1,1|-61.0604,12118.5849,-349.2603|1,18,1|-64.0604,12118.5849,-357.7603|5,1,1|-61.5588,12111.0595,-374.763|-0.13,89.97,0.0199|0.0003,0.0024,0.0134|-64.0604,12117.5849,-340.7603|13,1,39|-52.5604,12111.0849,-374.7603|0.2|0.6|-63.5604,12117.7851,-370.7603|-90,90,0|7,12,1|1,1,0.25|10|-51.0604,12104.5849,-348.2603|-63.0606,12127.6806,-338.2603|0,0,29.3999|1,14.4,2|1,1.2,1|-68.064,12052.0839,-3'
  7272. ..'57.2602|-64.5604,12058.5878,-348.2603|-70.0601,12052.0839,-357.2602|-61.0601,12052.0849,-357.2602|-64.5604,12057.5898,-339.2603|-64.5601,12052.0849,-358.7602|-63.0601,12052.0849,-357.2602|-54.0604,12081.5849,-347.7603|-64.5604,12057.5878,-357.2603|-67.5604,12120.9853,-355.7603|-64.5601,12052.0849,-357.7603|-65.0604,12121.3847,-348.2603|89.97,180,0|-68.7604,12122.4853,-353.7603|0,-180,-90|-61.0604,12118.5849,-332.7603|1,7,1|-66.0601,12052.0849,-357.2602|-70.0604,12111.0849,-374.7603|-52.5601,12052.0849,-385.7564|-67.5604,12119.2851,-357.7603|-2,-0.5,0,0,1,0,0,0,1,1,-0,-0|-68.3604,12123.9833,-357.7603|-65.3104,12123.7851,-348.2603|-68.3604,12123.9833,-353.7603|-89.9701,179.52,-89.52|-59.5604,12119.2851,-338.2603|2,2.4,4|2,2,1|-52.5601,12052.0849,-379.7604|-70.0611,12111.0634,-366.261|-0.1001,0.0099,0|-0.0055,-0.0194,-0.0061|-68.7604,12122.4853,-357.7603|-66.0604,12120.2851,-353.7603|-70.0604,12111.0849,-357.2603|-52.5601,12052.0849,-387.7604|-67.5604,12119.2851,-353.7603|2,-0.5,0,0,1,0,0,0,1,1,-0,-0|-64.0604,12117.5849,-374.7603|-70.0604,12117.5849,-367.2603|14,1,1|-52.5601,12052.0849,-383.7604|-63.5604,12117.5849,-363.7603|-52.5601,12052.0849,-381.7604|-54.0602,12052.0849,-369.2604|-52.5602,12052.0849,-370.7604|-57.0601,12052.0849,-357.2602|-55.0601,12052.0849,-357.2602|-52.5602,12052.0849,-367.7604|-52.5602,12052.0849,-372.7604|-52.5602,12052.0849,-365.7564|-52.5602,12052.0849,-361.7604|-52.5602,12052.0849,-378.7604|-52.5602,12052.0849,-374.7604|-53.5601,12046.5859,-348.2602|-52.5602,12052.0849,-376.7604|-53.0602,12052.0849,-369.2604|-59.0601,12052.0849,-357.2602|-52.5603,12057.5878,-369.2603|-53.0602,12052.5859,-357.7602|-52.5602,12052.0849,-363.7604|-52.5602,12052.0849,-359.7604|-44.5597,12050.0751,-348.2603|-44.5596,12048.0751,-348.2603|-42.5597,12050.0751,-348.2603|-68.5606,12115.0634,-364.261|0,0,-2,1,0,-0.0001,0,1,0,0,0,1|0,1,0,1,-0.0001,-0.00'
  7273. ..'01,0,0,-1,0,1,0|-71.4623,12143.0283,-338.7603|2,7.2,3|-70.155,12141.0146,-343.7603|28.1299,20.3099,38.1399|2,12,1|-72.0601,12052.0839,-357.2602|-75.0602,12052.0859,-357.2603|-70.0604,12111.0761,-348.2603|0,-0.0157,0|-70.0604,12111.0849,-339.2603|-70.1551,12141.0146,-333.7603|29.0699,158.8399,141.46|-74.0601,12052.0839,-357.2602|-81.0562,12052.0849,-357.2603|-77.0602,12052.0859,-357.2603|-79.0602,12052.0859,-357.2603|-83.0602,12052.0859,-357.2603|-84.5604,12052.0859,-358.7603|-90.0602,12052.0849,-357.2604|-84.5603,12057.5898,-357.2603|-84.5604,12058.5869,-348.2603|-84.56,12046.5869,-348.2603|-92.0604,12052.0859,-339.2603|-88.0602,12052.0849,-357.2603|-81.0563,12052.0849,-339.2603|-97.0602,12052.0849,-357.2604|-95.0602,12052.0849,-357.2604|-86.0602,12052.0849,-357.2603|-99.0602,12052.0849,-357.2604|-84.5602,12052.0849,-357.7603|-83.0604,12052.0859,-339.2603|-94.0602,12052.0849,-357.2604|-97.0604,12052.0849,-339.2604|-90.0604,12052.0859,-339.2603|-92.0602,12052.0849,-357.2604|-94.0604,12052.0859,-339.2603|-88.0604,12052.0859,-339.2603|-84.5604,12052.0859,-337.7603|-99.0604,12052.0849,-339.2604|-95.0604,12052.0849,-339.2604|-84.5604,12052.0859,-338.7603|-84.5604,12057.5869,-339.2603|-86.0604,12052.0859,-339.2603|-66.0602,12052.0849,-339.2603|-64.5602,12052.0849,-338.7603|-68.0643,12052.0839,-339.2603|-63.0602,12052.0849,-339.2603|-77.0604,12052.0859,-339.2603|-74.0602,12052.0849,-339.2603|-64.5601,12052.0849,-337.7603|-75.0604,12052.0859,-339.2603|-79.0604,12052.0859,-339.2603|-53.0602,12052.5859,-338.7602|-59.0602,12052.0849,-339.2602|-70.0602,12052.0849,-339.2603|-52.5602,12052.0849,-332.7604|-57.0602,12052.0849,-339.2602|-72.0602,12052.0849,-339.2603|-61.0602,12052.0849,-339.2602|-52.5602,12052.0849,-334.7604|-55.0602,12052.0859,-339.2602|-52.5602,12052.0849,-336.7604|-103.0602,12052.0849,-357.2604|-104.5604,12052.0859,-358.7603|-101.0562,12052.0839,'
  7274. ..'-357.2604|-104.5603,12057.5898,-357.2603|-104.5602,12052.0849,-357.7604|-104.56,12046.5869,-348.2603|-103.0604,12052.0849,-339.2604|-101.0563,12052.0839,-339.2604|-104.5604,12058.5869,-348.2603|-106.0602,12052.0849,-357.2604|-106.0603,12052.0849,-339.2604|-104.5604,12057.5869,-339.2603|-104.5603,12052.0849,-337.7604|-104.5604,12052.0849,-338.7603|-108.0602,12052.0849,-357.2604|-108.0603,12052.0849,-339.2604|-119.0602,12052.0849,-357.2604|-115.0602,12052.0849,-357.2604|-112.0603,12052.0849,-339.2604|-110.0602,12052.0849,-357.2604|-114.0602,12052.0849,-357.2604|-117.0602,12052.0849,-357.2604|-114.0603,12052.0849,-339.2604|-112.0602,12052.0849,-357.2604|-115.0604,12052.0839,-339.2604|-117.0604,12052.0839,-339.2604|-110.0603,12052.0849,-339.2604|-166.0604,12052.8857,-380.7603|-0.5,-0.2,-31.5,1,-0,-0,0,0,1,0,-1,-0|-167.0604,12052.8857,-379.7603|0.5,0.1999,31.5,1,0,0,-0,-0,-1,0,1,0|-135.0604,12052.8857,-366.7603|-31.5,0.1999,18.5,-0,1,0,0,0,-1,-1,0,0|-128.0602,12052.0839,-357.2604|-132.0602,12052.0839,-357.2604|-130.0602,12052.0839,-357.2604|-134.0602,12052.0839,-357.2604|-124.5603,12052.0849,-358.7604|-123.0602,12052.0839,-357.2604|-126.0602,12052.0839,-357.2604|-124.5602,12052.0839,-357.7604|-124.5603,12057.5888,-357.2604|-124.5604,12058.5859,-348.2604|-121.0562,12052.0839,-357.2604|-166.5604,12046.2851,-348.2603|-124.5604,12057.5859,-339.2604|-124.56,12046.5859,-348.2604|-134.0603,12052.0839,-339.2604|-132.0603,12052.0839,-339.2604|-130.0603,12052.0839,-339.2604|-124.5604,12052.0839,-338.7604|-121.0563,12052.0839,-339.2604|-123.0604,12052.0839,-339.2604|-124.5603,12052.0839,-337.7604|-128.0603,12052.0839,-339.2604|-126.0603,12052.0839,-339.2604|-119.0604,12052.0839,-339.2604|-164.1075,12049.499,-335.7708|-165.1087,12049.499,-333.7714|-163.1072,12049.2041,-335.7721|-167.1075,12049.499,-335.7725|0,-0.6001,1.5,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-16'
  7275. ..'5.1063,12049.499,-337.7714|-165.608,12053.0986,-335.7715|-166.5604,12059.4853,-348.2603|-18,6.3999,31.5,-0,-1,-0,-0,-0,-1,1,0,0|18.5,6.3999,31.5,-0,-1,-0,-0,-0,-1,1,0,0|-0.5,6.3999,-31.5,-1,-0,-0,-0,-0,-1,-0,-1,-0|-0.5,6.3999,-31.5,1,0,0,-0,-0,-1,0,1,0|-165.5604,12046.6855,-348.2603|3,0.5999,11.5,-1,0,0,0,0,-1,0,-1,0|3,2,6.5,-1,0,0,0,0,-1,0,-1,0|-3,2,6.5,-1,0,0,0,0,-1,0,-1,0|-170.5604,12047.8857,-348.2603|0,0.2,0,1,0,0,0,0,-1,0,1,0|-157.0604,12048.6855,-355.2603|-157.0604,12048.6855,-341.2603|-155.0604,12048.6855,-337.2603|-155.0604,12048.6855,-360.2603|-170.5604,12047.4853,-348.2603|-145.0604,12054.0849,-352.7603|-150.0604,12054.0849,-352.7603|-146.5604,12054.0849,-352.7603|-148.3604,12049.4853,-346.2603|-146.0604,12050.5849,-356.2603|-152.0604,12050.5849,-361.8603|0,2.6,1,1,0,0,0,-1,0,0,0,-1|-145.0604,12054.0849,-343.7603|-147.0604,12050.5849,-356.2603|0,0,0.5,1,0,0,0,-1,0,-0,-0,-1|-155.0604,12050.4853,-352.7603|0.0999,-6,-1.5,0,-1,0,0,0,1,-1,0,0|1,-0.0001,10,0,0,-1,0,1,0,1,0,0|-149.5604,12050.5849,-356.2603|-153.5604,12050.5849,-359.2603|-158.5604,12050.5849,-359.2603|-0.5,0.0999,3.5,0,0,1,-1,0,0,0,-1,0|3,-0.6,1,1,0,0,-0,0,1,0,-1,0|-145.9604,12049.4853,-346.2603|-151.0604,12049.4853,-350.2603|-146.5604,12054.0849,-343.7603|-157.5604,12049.4853,-355.2603|-154.0604,12049.4853,-351.2603|-148.3604,12049.4853,-350.2603|0.5,-1.0001,-6.7001,0,0,-1,1,0,0,0,-1,0|-145.9604,12049.4853,-350.2603|-155.5604,12049.4853,-360.2603|-151.0604,12049.4853,-346.2603|-159.0604,12048.8857,-351.2603|-150.0604,12054.0849,-343.7603|-146.0604,12050.5849,-340.2603|-154.0604,12047.4853,-351.2603|-147.0604,12050.5849,-340.2603|-154.0604,12047.4853,-345.2603|-159.0604,12047.4853,-348.2603|-159.0604,12049.2851,-348.2603|0.5,-0.2,2,0,0,-1,0,1,0,1,0,0|-154.0604,12049.4853,-345.2603|-149.5604,12050.5849,-340.2603|-0.5,-3.5,0.5,0,0,1,1,0,0,0,1,0|-155.0604,12050.4853,-343.7603|-0.1,-'
  7276. ..'6,3.5,0,1,0,0,0,1,1,0,0|-165.0604,12048.4853,-351.2603|-165.0604,12050.4853,-351.2603|-159.0604,12048.8857,-345.2603|-157.5604,12049.4853,-341.2603|-167.0604,12049.6855,-348.2603|-153.5604,12050.5849,-337.2603|-152.0604,12050.5849,-334.6603|-170.5604,12050.4853,-349.7603|-165.0604,12050.4853,-345.2603|0,-1.6,2.5,1,0,0,0,-1,0,0,0,-1|-170.5604,12047.6855,-349.7603|-170.5604,12048.8857,-349.7603|1,-0.4001,-5.5,0,0,-1,0,-1,0,-1,0,0|0,-0.4001,0,-0,-1,0,-0,0,1,-1,0,0|-155.5604,12049.4853,-337.2603|-0.5,0,3,0,0,1,0,1,0,-1,0,0|-165.0604,12048.4853,-345.2603|-5.5,-2,-0.5,-1,0,0,0,-1,0,0,0,1|-158.5604,12050.5849,-337.2603|-170.5604,12050.4853,-346.7603|-170.5604,12047.6855,-346.7603|-170.5604,12048.8857,-346.7603|-170.5604,12051.2851,-348.2603|-174.0604,12049.4853,-348.2603|47.9396,12052.8857,-329.7603|-11.7827,12130.5869,-326.0584|-20.07,-84.09,-4.39|-12.0242,12130.8134,-327.6141|-18.4,-72.5101,-12.9|-12.0228,12130.8115,-322.9125|-18.41,-107.4401,12.8699|-11.7822,12130.5869,-324.4681|-20.07,-95.8601,4.3499|-13.3783,12139.1572,-325.2598|0,180,-133.2|2,2,2|0.5,0.5,0.5|-12.494,12131.2548,-321.4596|-15.2,-118.49,20.76|-13.1751,12131.8935,-320.1727|-10.65,-128.8201,27.77|-12.4962,12131.2548,-329.067|-15.1801,-61.4701,-20.7901|-17.0604,12122.5849,-321.7603|1,5,1|-20.5604,12119.0849,-325.2603|8,2,8|-20.5602,12122.5849,-328.2606|6,5,1|-17.5602,12122.5849,-325.2605|-17.0604,12122.5849,-328.7603|-18.3569,12134.622,-321.3395|8.26,-172.03,43.7599|-18.9061,12134.0478,-325.2598|16.2,18.03,-40.6101|42.9099,81.9,-5.5301|-21.2039,12137.2958,-324.8445|54.2799,100.2399,7.13|42.8899,98.3099,5.6799|23.76,27.9599,-37.2001|-20.8389,12136.9531,-327.2158|46.5699,44.6599,-29.7901|-20.4882,12136.624,-327.8796|40.08,31.1299,-36.7201|-19.5272,12135.7216,-328.8395|24.7299,9.84,-43.48|30.61,39.06,-32.1101|40.6399,66.0699,-16.1201|-22.1003,12140.2744,-329.054|56.13,34.4599,-37.7901|40.59,1'
  7277. ..'14.1299,16.25|-20.5601,12122.5849,-322.2607|-20.835,12136.9501,-323.2945|46.49,135.5299,29.8999|-17.7703,12134.0712,-329.0951|0.34,-16.5,-42.0401|-21.2048,12137.2958,-325.6644|54.2999,80.0199,-6.95|-18.3647,12134.6298,-329.18|8.3599,-7.8601,-43.78|-0.0701,-179.92,43.2|-18.959,12135.1884,-329.0936|16.5599,0.79,-44.3|-21.0814,12137.1806,-326.4665|51.5499,60.9799,-19.8|0.0399,0.0399,-43.2001|36.3199,128.4799,25.2099|36.3899,51.7,-25.1001|-21.0789,12137.1787,-324.0429|51.5,119.25,19.95|-18.9514,12135.1806,-321.4238|16.45,179.32,44.2999|8.1099,171.27,42.58|-20.0445,12136.208,-328.4289|32.6699,19.76,-41.0901|8.22,8.85,-42.5601|-22.5605,12127.9882,-323.2598|40,130,0|-22.5659,12140.7119,-322.8993|62.0299,127.5599,26.94|-18.5605,12127.9882,-323.2598|40,-130,0|-20.5606,12130.788,-325.2598|4,1,4|-18.0605,12127.288,-322.7598|2,0.4,2|-18.0602,12127.2871,-327.7606|-23.0602,12127.288,-327.7604|-20.5604,12126.0849,-325.2603|-2.5,3.9999,-4,1,0,0,0,1,0,0,0,1|-22.5705,12140.7158,-327.6005|62.0999,52.7099,-26.7601|-20.5606,12129.788,-325.2598|-22.5606,12127.9882,-327.2598|0.15,141.7299,40.15|-22.8101,12140.9404,-326.0446|65.6399,76.6699,-9.86|-22.0928,12140.2666,-321.4476|56.04,145.75,37.9|-21.4097,12139.6259,-320.1631|48.74,159.4299,44.09|-18.5602,12127.9873,-327.2606|-40,140,0|-22.8085,12140.9384,-324.4543|65.62,103.6699,10.1099|-23.0605,12127.288,-322.7598|-17.0604,12111.0849,-321.7603|-17.2019,12133.538,-328.8424|-7.33,-25.4401,-39.1|-16.14,-17.9501,-40.6301|-20.0382,12136.2011,-322.0844|32.5699,160.38,41.1399|-36.3601,-128.3601,25.1399|-30.58,-140.9901,32.13|-23.73,-152.0801,37.22|-15.6445,12132.0751,-326.4733|-29.5401,-69.59,-14.1001|-40.62,-114,16.1599|-20.483,12136.6181,-322.632|39.99,149.0299,36.79|-15.52,12131.9589,-325.6714|-31.49,-83.07,-4.8401|-42.9001,-81.7601,-5.6301|-40.6101,-65.9401,-16.21|-23.7001,-27.8701,-37.2401|-16.684,12133.0517,-328.433|-14.4201'
  7278. ..',-35,-34.9001|16.1,162.0899,40.6399|-16.6818,12133.0498,-322.0887|-14.45,-144.95,34.88|-15.8866,12132.3037,-323.3007|-25.8601,-122.9801,22.34|-16.2377,12132.6337,-322.6373|-20.72,-134.5,29.3099|30.53,141.0899,32.1899|-15.5197,12131.958,-324.8516|-31.49,-96.8701,4.7899|-42.9001,-98.17,5.5799|-36.3401,-51.5801,-25.1701|23.67,152.1699,37.25|-30.56,-38.96,-32.16|-15.8879,12132.3037,-327.222|-25.8501,-56.9701,-22.38|-19.5201,12135.7148,-321.6757|24.62,170.2799,43.5|-16.2396,12132.6337,-327.8849|-20.7001,-45.4501,-29.3401|-15.6437,12132.0751,-324.0497|-29.56,-110.35,14.06|-8.15,-8.7701,-42.57|-8.1801,-171.1901,42.56|-17.0601,12111.0634,-330.2595|0.1,0,0|0.001,-0.0003,0.0018|-20.5606,12131.288,-325.2598|4,4,4|-17.1994,12133.5361,-321.6786|-7.3601,-154.5201,39.09|-16.1701,-162.01,40.6199|-19.5605,12132.788,-325.2598|0,180,46.7999|1.5,1.5,1.5|-17.7676,12134.0693,-321.4252|0.3,-163.4701,42.0299|-23.5602,12122.5849,-325.2606|-24.0604,12122.5849,-328.7603|-24.5601,12104.5517,-329.2707|0,-90,-0.1001|-24.0604,12122.5849,-321.7603|1,0.5,-4,1,0,0,0,1,0,0,0,1|-23.5605,12128.0888,-325.2598|-1.1001,-10,0|0.5,5,0.5|-28.5604,12123.7851,-324.5103|-28.5604,12122.0849,-322.7603|0,0,-4,-1,-0,-0,0,1,0,-0,-0,-1|-4,3,2.5,0,0,1,0,1,0,-1,0,0|-30.0604,12118.5849,-326.2603|-1.5,-3.5,1.5,0,0,1,0,1,0,-1,-0,-0|-28.5604,12121.3847,-324.7603|89.97,0,0|-25.5619,12111.0615,-321.7581|0.1199,90,0.0299|0.0014,0.0005,0.0004|-34.0604,12122.4853,-321.0603|-34.0604,12120.2851,-323.7603|-34.0604,12123.9853,-321.4603|-89.9701,-90.4801,-89.52|1.2999,1.8995,4,-0.0001,1,-0.0001,0.9999,0,0,0,-0.0001,-1|-34.0604,12119.2851,-322.2603|-34.5602,12052.0859,-330.7602|-34.5602,12052.0849,-323.7563|-34.0602,12052.0859,-327.2602|-34.5602,12052.0859,-328.7602|-34.5604,12057.5908,-327.2602|-34.5602,12052.0859,-325.7602|-33.0602,12052.0859,-327.2604|-34.5604,12111.0849,-321.7603|-38.0604,12119.2851,-322.2603|-2,'
  7279. ..'-0.5,0,0,1,0,0,0,1,1,0,0|-38.0604,12122.4853,-321.0603|-36.0604,12120.9853,-322.2603|0,-1.2,-2,0,1,0,-0,-0,1,1,0,0|-38.0604,12118.5849,-325.7603|-38.0604,12123.9853,-321.4603|-43.5604,12104.4853,-329.2603|-43.5604,12111.0761,-321.7603|0,-0.0111,0|-43.0604,12118.5849,-328.7603|1,1,37|-52.5604,12111.0849,-321.7603|-62.5525,12104.5517,-329.2547|0.1,-90,0|-61.5615,12111.0634,-321.7581|-0.1001,90.01,0|0.005,-0.0059,-0.0004|-70.0607,12111.0634,-330.2598|-0.0001,-0.0154,0.0054|-70.0604,12111.0849,-321.7603|-53.0602,12052.0849,-327.2604|-54.0602,12052.0849,-327.2604|-52.5602,12052.0849,-323.7565|-52.5602,12052.0849,-328.7604|-52.5602,12052.0849,-330.7604|-52.5604,12057.5878,-327.2603|-43.5601,12046.5869,-327.7602|-52.5602,12052.0849,-325.7604|-43.5604,12058.5888,-327.2602|-135.0604,12052.8857,-330.2603|79.9396,12052.8857,-316.7603|0.5,0.1999,31.5,1,0,0,0,0,-1,0,1,0|78.9396,12052.8857,-315.7603|-14.0365,12132.7021,-319.1084|-4.9801,-138.4101,33.77|-18.439,12136.8369,-317.8186|24.45,-171.9101,47.3699|-17.2858,12135.7529,-317.6552|16.42,-163.79,45.5299|-20.5471,12138.8154,-319.1003|40.8199,170.32,47.0999|-19.5422,12137.872,-318.3074|32.6399,179.6199,48|-15.0405,12133.6455,-318.313|1.57,-147.3201,38.72|-16.143,12134.6806,-317.8216|8.7899,-155.73,42.65|-34.5602,12052.0859,-312.7602|-34.5602,12052.0859,-308.7602|-33.0602,12052.0859,-307.2604|-34.5602,12052.0859,-314.7602|-34.5604,12057.5908,-307.2602|-34.5602,12052.0859,-305.7602|-34.5602,12052.0859,-310.7602|-34.5602,12052.0849,-303.7562|-34.0602,12052.0859,-307.2602|-34.5602,12052.0859,-316.7602|-34.5602,12052.0859,-321.7602|-34.5602,12052.0859,-319.7602|-34.5602,12052.0859,-317.7602|-167.0604,12052.8857,-315.7603|-166.0604,12052.8857,-316.7603|-0.5,0.1999,-31.5,-1,-0,0,0,0,-1,-0,-1,0|-52.5602,12052.0849,-312.7604|-53.0602,12052.0849,-307.2604|-52.5604,12057.5878,-307.2603|-52.5602,12052.0849,-305.7604|-52.5602'
  7280. ..',12052.0849,-308.7604|-52.5602,12052.0849,-310.7604|-54.0602,12052.0849,-307.2604|-52.5602,12052.0849,-316.7604|-52.5602,12052.0849,-314.7604|-52.5602,12052.0849,-319.7604|-52.5602,12052.0849,-317.7604|-52.5602,12052.0849,-321.7604|-135.0604,12052.8857,-302.7603|-43.5601,12046.5859,-306.7602|-52.5602,12052.0839,-303.7564|-43.5604,12046.4853,-73.7603|-90,0,0|247,243,1|0,-122.7,25.4999,0,1,0,1,0,0,0,0,-1|25.4999,119.4996,69.5,0,0,-1,0,1,0,1,0,0|0,-122.7001,25.4999,0,-1,0,-1,0,0,0,0,-1|116.9998,-25.5001,-20.5,0,1,0,0,0,1,1,0,0|0,121.5,0,-1,-0,-0,0,0,1,0,1,0|9.9999,-0.1021,0.0001,0,-0.0001,-1,0,0.9999,-0.0001,0.9999,-0.0001,0|25.4999,119.4998,-70,0,0,-1,0,1,0,1,0,0|0.5,-0.5,119.5,-1,0,-0,0,0,1,-0,1,-0|117,-25.5,19.5,0,1,0,0,0,1,1,0,0|-166.2604,12072.4853,-73.7603|243,0.4,51|79.1396,12072.4853,-73.7603|-164.1075,12049.499,-271.7708|-165.1087,12049.499,-269.7714|-163.1072,12049.2041,-271.7721|-165.1063,12049.499,-273.7714|-167.1075,12049.499,-271.7725|-165.608,12053.0986,-271.7715|-0.5,3,-1.9999,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,-0.0001|-117.0602,12052.0839,-295.2604|-115.0602,12052.0839,-295.2604|-114.0602,12052.0849,-295.2604|-104.5601,12046.5869,-286.2603|-94.0602,12052.0849,-295.2603|-92.0602,12052.0849,-295.2603|-95.0602,12052.0849,-295.2604|-84.5604,12057.5888,-295.2603|-84.5604,12058.5869,-286.2603|-86.0602,12052.0849,-295.2603|-90.0602,12052.0849,-295.2603|-97.0602,12052.0849,-295.2604|-88.0602,12052.0849,-295.2603|-104.5602,12052.0849,-295.7604|-103.0602,12052.0849,-295.2604|-101.0562,12052.0839,-295.2604|-104.5604,12057.5878,-295.2603|-108.0602,12052.0849,-295.2604|-110.0602,12052.0849,-295.2604|-112.0602,12052.0849,-295.2604|-104.5604,12058.5869,-286.2603|-99.0602,12052.0849,-295.2604|-106.0602,12052.0849,-295.2604|-104.5604,12052.0859,-296.7603|-124.5604,12058.5859,-286.2604|-77.0602,12052.0859,-295.2603|-84.5601,12046.5869,-286.2603|-59.0601'
  7281. ..',12052.0849,-295.2603|-128.0602,12052.0839,-295.2604|-132.0602,12052.0839,-295.2604|-64.5601,12052.0849,-295.7603|-124.5601,12046.5859,-286.2604|-134.0602,12052.0839,-295.2604|-124.5602,12052.0839,-295.7604|-57.0601,12052.0849,-295.2603|-64.5601,12052.0849,-296.7602|-126.0602,12052.0839,-295.2604|-84.5602,12052.0849,-295.7603|-79.0602,12052.0849,-295.2603|-84.5604,12052.0859,-296.7603|-61.0601,12052.0849,-295.2603|-64.5604,12058.5878,-286.2603|-63.0601,12052.0849,-295.2602|-55.0601,12052.0849,-295.2602|-119.0602,12052.0839,-295.2604|-124.5604,12052.0839,-296.7604|-121.0562,12052.0839,-295.2604|-123.0602,12052.0839,-295.2604|-130.0602,12052.0839,-295.2604|-124.5604,12057.5878,-295.2604|-64.5604,12057.5878,-295.2603|-66.0601,12052.0849,-295.2602|-72.0601,12052.0839,-295.2603|-74.0601,12052.0839,-295.2603|-70.0601,12052.0839,-295.2602|-68.0641,12052.0839,-295.2602|-83.0602,12052.0849,-295.2603|-81.0562,12052.0849,-295.2603|-75.0602,12052.0859,-295.2603|-166.5604,12046.2851,-284.2603|-115.0604,12052.0839,-277.2604|-104.5604,12052.0839,-275.7604|-117.0604,12052.0839,-277.2604|-104.5604,12052.0839,-276.7603|-104.5604,12057.5869,-277.2603|-103.0604,12052.0839,-277.2604|-97.0604,12052.0839,-277.2604|-108.0604,12052.0839,-277.2604|-106.0604,12052.0839,-277.2604|-112.0604,12052.0839,-277.2604|-101.0565,12052.0839,-277.2604|-94.0604,12052.0859,-277.2603|-88.0604,12052.0859,-277.2603|-110.0604,12052.0839,-277.2604|-99.0604,12052.0839,-277.2604|-95.0604,12052.0839,-277.2604|-92.0604,12052.0859,-277.2603|-90.0604,12052.0859,-277.2603|-119.0604,12052.0839,-277.2604|-114.0604,12052.0839,-277.2604|-126.0604,12052.0839,-277.2604|-84.5604,12052.0859,-275.7603|-84.5604,12052.0859,-276.7603|-83.0604,12052.0859,-277.2603|-84.5604,12057.5869,-277.2603|-81.0565,12052.0849,-277.2603|-77.0604,12052.0859,-277.2603|-79.0604,12052.0859,-277.2603|-52.5604,12057.5878,-265.2603|-5'
  7282. ..'7.0602,12052.0849,-277.2603|-130.0604,12052.0839,-277.2604|-128.0604,12052.0839,-277.2604|-59.0602,12052.0849,-277.2603|-86.0604,12052.0859,-277.2603|-75.0604,12052.0859,-277.2603|-55.0602,12052.0849,-277.2602|-63.0602,12052.0849,-277.2603|-66.0602,12052.0849,-277.2603|-64.5601,12052.0849,-275.7603|-61.0602,12052.0849,-277.2603|-64.5602,12052.0849,-276.7603|-64.5605,12057.5898,-277.2603|-124.5604,12052.0839,-275.7604|-135.0604,12052.8857,-266.2603|-123.0604,12052.0839,-277.2604|-124.5604,12052.0839,-276.7604|-124.5604,12057.5859,-277.2604|-132.0604,12052.0839,-277.2604|-134.0604,12052.0839,-277.2604|-72.0602,12052.0849,-277.2603|-70.0602,12052.0849,-277.2603|-68.0643,12052.0839,-277.2603|-121.0564,12052.083,-277.2604|-74.0602,12052.0849,-277.2603|-166.0604,12052.8857,-252.7603|-52.5604,12057.5878,-245.2603|-54.0602,12052.0859,-245.2604|-52.5605,12057.5878,-225.2603|-52.5605,12057.5878,-205.2603|-54.0603,12052.0859,-225.2604|-54.0603,12052.0859,-205.2604|-10.5,121.5001,5.5997,-1,0,-0.0001,0,0,-1,-0.0001,-1,-0.0001|-110.5604,12072.4853,-195.4603|-52.0604,12072.5849,-194.7605|-165.5604,12046.6855,-284.2603|-170.5604,12047.8857,-284.2603|-157.0604,12048.6855,-291.2603|-157.0604,12048.6855,-277.2603|-155.0604,12048.6855,-273.2603|-155.0604,12048.6855,-296.2603|-170.5604,12047.4853,-284.2603|-145.0604,12054.0849,-288.7603|-150.0604,12054.0849,-288.7603|-3.5,-3,-0.5,-0,-1,0,-0,0,1,-1,0,0|-146.5604,12054.0849,-288.7603|-148.3604,12049.4853,-282.2603|-146.0604,12050.5849,-292.2603|-152.0604,12050.5849,-297.8603|0,2.6,1,1,0,-0,0,-1,-0,0,0,-1|-145.0604,12054.0849,-279.7603|-147.0604,12050.5849,-292.2603|-155.0604,12050.4853,-288.7603|0.0999,-6,3.5,0,-1,0,0,0,1,-1,0,0|-149.5604,12050.5849,-292.2603|-153.5604,12050.5849,-295.2603|-158.5604,12050.5849,-295.2603|1,-0.6,-4,1,0,0,-0,0,1,0,-1,0|-145.9604,12049.4853,-282.2603|0.5,-1.0001,9.0999,0,0,-1,-1,0,0,0,1,0|-15'
  7283. ..'1.0604,12049.4853,-286.2603|-146.5604,12054.0849,-279.7603|-157.5604,12049.4853,-291.2603|-154.0604,12049.4853,-287.2603|-148.3604,12049.4853,-286.2603|-145.9604,12049.4853,-286.2603|-155.5604,12049.4853,-296.2603|0.5,1,3,0,0,-1,0,-1,0,-1,0,0|-151.0604,12049.4853,-282.2603|-159.0604,12048.8857,-287.2603|0.5,-1.6,4,0,0,-1,0,-1,0,-1,0,0|-150.0604,12054.0849,-279.7603|-146.0604,12050.5849,-276.2603|-154.0604,12047.4853,-287.2603|-147.0604,12050.5849,-276.2603|-154.0604,12047.4853,-281.2603|-159.0604,12047.4853,-284.2603|1,0.9999,6,0,0,-1,0,-1,0,-1,0,0|-159.0604,12049.2851,-284.2603|-1,-0.8001,6,0,0,1,0,-1,0,1,0,0|1,-0.8001,6,0,0,-1,0,-1,0,-1,0,0|-154.0604,12049.4853,-281.2603|-149.5604,12050.5849,-276.2603|-155.0604,12050.4853,-279.7603|-165.0604,12048.4853,-287.2603|-165.0604,12050.4853,-287.2603|0.5,0,10,0,0,-1,0,1,0,1,0,0|-159.0604,12048.8857,-281.2603|-157.5604,12049.4853,-277.2603|-167.0604,12049.6855,-284.2603|-153.5604,12050.5849,-273.2603|-152.0604,12050.5849,-270.6603|-170.5604,12050.4853,-285.7603|1,-2.0001,-5.5,0,0,-1,0,-1,0,-1,0,0|-165.0604,12050.4853,-281.2603|-170.5604,12047.6855,-285.7603|-170.5604,12048.8857,-285.7603|-155.5604,12049.4853,-273.2603|-165.0604,12048.4853,-281.2603|-158.5604,12050.5849,-273.2603|-170.5604,12050.4853,-282.7603|-170.5604,12047.6855,-282.7603|-170.5604,12048.8857,-282.7603|-170.5604,12051.2851,-284.2603|-174.0604,12049.4853,-284.2603|-43.5604,12098.5849,-73.7603|-121,25.4991,-8.5003,0,1,0,0,0,-1,-1,0,0|-120.9999,21.4971,-0.0004,0,1,0,0,0,-1,-1,0,0|-121.0003,25.4999,8.5006,0,1,-0.0001,0,-0.0001,-1,-1,0,-0.0001|-166.5604,12059.4853,-284.2603|Lower|-51.0604,12064.9853,45.7397|3,2,2|-53.0604,12065.4853,45.7397|Upper|-39.0604,12065.4853,45.7397|3,1,2|http://www.roblox.com/asset/?id=35637606|-41.0604,12066.4853,45.7397|-33.0604,12065.4853,45.7397|-31.0604,12065.4853,45.7397|-29.0604,12066.4853,45.7397|-33.0604,1206'
  7284. ..'6.4853,45.7397|-29.0604,12061.9853,45.7397|1,8,4|0.0705,0.9333,0.8313|0.15|0.75|-35.0604,12060.9882,45.7397|-37.0604,12061.4853,45.7397|1,7,2|-43.0604,12060.9882,45.7397|-45.0604,12061.4853,45.7397|-55.0604,12061.4853,45.7397|3,7,2|-57.0604,12061.9853,45.7397|-29.0604,12070.4853,45.7397|-47.0604,12070.9873,45.7397|-31.0604,12070.9853,45.7397|3,6,2|-47.0604,12066.9853,45.7397|http://www.roblox.com/asset/?id=35890566|-39.0604,12070.9873,45.7397|-35.0604,12070.4853,45.7397|-41.0604,12070.4853,45.7397|-39.0604,12066.9853,45.7397|-37.0604,12070.4853,45.7397|-31.0604,12066.9853,45.7397|-45.0604,12070.4853,45.7397|-30.0604,12072.4853,47.2397|1,3,3|-33.0604,12070.4853,45.7397|-51.0604,12070.4853,45.7397|-43.0604,12070.4853,45.7397|-30.0604,12072.4853,44.2397|-55.0604,12070.9853,45.7397|-49.0604,12070.4853,45.7397|26.4396,12072.4853,45.7396|51,4,105|-63.0604,12072.4853,43.2397|1,51,10|-43.0604,12078.9853,47.2397|29,10,1|-43.0604,12084.4853,45.7397|33,1,4|-43.0604,12078.9853,44.2397|-56.0604,12072.4853,47.2397|0,1,1|0.25|-43.0604,12074.4853,45.7397|29,1,2|-56.0604,12072.4853,44.2397|-57.0604,12070.4853,45.7397|-53.0604,12070.4853,45.7397|-113.0604,12072.4853,45.7393|51,4,106|-43.0604,12091.4853,45.7397|13,4,33|-23.0604,12072.4853,43.2396|-47.0604,12061.4853,45.7397|-41.0604,12061.4853,45.7397|-53.0604,12061.4853,45.7397|-49.0604,12061.4853,45.7397|-39.0604,12061.4853,45.7397|-33.0604,12061.4853,45.7397|-31.0604,12061.4853,45.7397|-51.0604,12060.9882,45.7397|Approachable|-43.0604,12057.4853,45.7397|-43.0604,12052.9853,47.2397|1,29,10|-43.0604,12052.9853,44.2397|-43.0604,12047.4853,45.7397|-35.0604,12066.4853,45.7397|-37.0604,12065.4853,45.7397|-35.0604,12064.9853,45.7397|-55.0604,12066.9853,45.7397|-47.0604,12065.4853,45.7397|-45.0604,12065.4853,45.7397|-27.5604,12065.9853,45.7397|2,36,4|-43.0604,12066.4853,45.7397|-49.0604,12066.4853,45.7397|-53.0604,12066.48'
  7285. ..'53,45.7397|-55.0604,12065.4853,45.7397|-43.0604,12064.9853,45.7397|-57.0604,12066.4853,45.7397|-37.0604,12066.4853,45.7397|-45.0604,12066.4853,45.7397|-41.0604,12065.4853,45.7397|-51.0604,12066.4853,45.7397|-58.5604,12065.9853,45.7397|-49.0604,12065.4853,45.7397;0,4>11>2,4>12>7,5>11>2,5>12>4046,6>11>2,6>12>302,8>13>10,9>13>10,15>11>10,15>12>254,16>11>10,16>12>173,17>11>10,17>12>164,21>11>19,21>12>147,50>11>48,50>12>252,53>11>51,53>12>159,64>11>62,64>12>18,89>13>128,92>11>90,92>12>96,95>11>93,95>12>96,103>11>101,103>12>111,104>11>101,104>12>96,105>11>101,105>12>113,110>11>108,110>12>144,115>11>113,115>12>164,116>11>113,116>12>96,117>11>113,117>12>120,118>11>113,118>12>93,119>11>113,119>12>90,122>11>120,122>12>111,123>11>120,123>12>93,126>11>124,126>12>113,127>11>124,127>12>106,130>11>128,130>12>159,131>11>128,131>12>147,132>11>128,132>12>124,133>11>128,133>12>113,136>11>134,136>12>99,139>11>137,139>12>173,140>11>137,140>12>191,141>11>137,141>12>186,142>11>137,142>12>152,143>11>137,143>12>149,150>11>149,150>12>173,151>11>149,151>12>113,154>11>152,154>12>113,155>11>152,155>12>156,158>11>156,158>12>113,163>11>161,163>12>99,167>11>165,167>12>198,168>11>165,168>12>196,169>11>165,169>12>144,172>11>170,172>12>144,175>11>173,175>12>164,178>11>176,178>12>196,179>11>176,179>12>170,182>11>180,182>12>10,183>11>180,183>12>224,184>11>180,184>12>194,185>11>180,185>12>161,187>11>186,187>12>62,188>11>186,188>12>191,189>11>186,189>12>161,190>11>186,190>12>254,192>11>191,192>12>161,193>11>191,193>12>254,195>11>194,195>12>161,200>11>198,200>12>256,201>11>198,201>12>233,202>11>198,202>12>196,203>11>198,203>12>170,204>11>198,204>12>224,205>11>198,205>12>134,206>11>198,206>12>99,207>11>198,207>12>242,208>11>198,208>12>194,209>11>198,209>12>144,210>11>198,210>12>108,213>11>211,213>12>245,214>11>211,214>12>238,215>11>211,215>12>186,216>11>211,216>12>220,217>11>211,217>12>191'
  7286. ..',218>11>211,218>12>164,219>11>211,219>12>10,222>11>220,222>12>164,223>11>220,223>12>113,225>11>224,225>12>254,226>11>224,226>12>10,227>11>224,227>12>242,230>11>228,230>12>33,237>11>235,237>12>233,240>11>238,240>12>274,241>11>238,241>12>231,244>11>242,244>12>254,247>11>245,247>12>186,249>11>248,249>12>245,250>11>248,250>12>211,251>11>248,251>12>238,258>11>256,258>12>228,259>11>256,259>12>252,260>11>256,260>12>233,263>11>261,263>12>254,264>11>261,264>12>274,265>11>261,265>12>231,268>11>266,268>12>186,269>11>266,269>12>271,270>11>266,270>12>254,272>11>271,272>12>254,273>11>271,273>12>261,278>11>276,278>12>261,279>11>276,279>12>238,282>11>280,282>12>7,283>13>298,285>11>284,285>12>298,287>11>286,287>12>298,295>11>294,295>12>298,297>11>296,297>12>298,303>11>302,303>12>280,356>11>355,356>12>2,357>11>355,357>12>280,757>11>755,757>12>4118,813>11>810,813>12>849,823>11>820,823>12>849,856>11>854,856>12>1161,857>11>854,857>12>1153,858>11>854,858>12>1158,859>13>862,860>13>862,861>13>862,867>11>862,867>12>1025,868>11>862,868>12>1016,869>11>862,869>12>1063,886>11>884,886>12>1076,914>11>912,914>12>1037,915>11>912,915>12>870,940>13>982,943>11>941,943>12>972,944>11>941,944>12>950,947>11>945,947>12>950,948>11>945,948>12>975,949>11>945,949>12>972,953>11>950,953>12>972,954>11>950,954>12>959,957>11>955,957>12>1013,958>11>955,958>12>985,961>11>959,961>12>972,962>11>959,962>12>969,967>11>965,967>12>1055,968>11>965,968>12>989,971>11>969,971>12>975,974>11>972,974>12>975,979>11>977,979>12>963,980>11>977,980>12>982,981>11>977,981>12>972,984>11>982,984>12>972,992>11>989,992>12>1023,995>11>993,995>12>871,996>11>993,996>12>982,998>11>997,998>12>1025,999>11>997,999>12>972,1000>11>997,1000>12>987,1003>11>1001,1003>12>972,1004>11>1001,1004>12>987,1007>11>1005,1007>12>972,1008>11>1005,1008>12>1001,1011>11>1009,1011>12>902,1012>11>1009,1012>12>982,1015>11>1013,1015>12>1044,1017>11>1016'
  7287. ..',1017>12>1063,1018>11>1016,1018>12>972,1021>11>1019,1021>12>989,1022>11>1019,1022>12>1055,1027>11>1025,1027>12>1016,1028>11>1025,1028>12>987,1031>11>1029,1031>12>1023,1034>11>1032,1034>12>862,1035>11>1032,1035>12>1047,1036>11>1032,1036>12>1013,1038>11>1037,1038>12>987,1039>11>1037,1039>12>1096,1040>11>1037,1040>12>1063,1041>11>1037,1041>12>1013,1042>11>1037,1042>12>1120,1043>11>1037,1043>12>1044,1045>11>1044,1045>12>987,1046>11>1044,1046>12>1063,1048>11>1047,1048>12>1055,1049>11>1047,1049>12>1013,1052>11>1050,1052>12>1055,1053>11>1050,1053>12>1029,1054>11>1050,1054>12>1019,1057>11>1055,1057>12>985,1058>11>1055,1058>12>955,1059>11>1055,1059>12>1023,1060>11>1055,1060>12>989,1061>11>1055,1061>12>1114,1062>11>1055,1062>12>1094,1067>11>1065,1067>12>972,1068>11>1065,1068>12>1016,1069>11>1065,1069>12>1063,1071>11>1070,1071>12>1032,1072>11>1070,1072>12>862,1073>11>1070,1073>12>1106,1074>11>1070,1074>12>1094,1075>11>1070,1075>12>1055,1080>11>1078,1080>12>1089,1081>11>1078,1081>12>1117,1084>11>1082,1084>12>1055,1085>11>1082,1085>12>1114,1086>11>1082,1086>12>1087,1091>11>1089,1091>12>1099,1092>11>1089,1092>12>1063,1093>11>1089,1093>12>1130,1098>11>1096,1098>12>1063,1100>11>1099,1100>12>1096,1101>11>1099,1101>12>1063,1104>11>1102,1104>12>900,1105>11>1102,1105>12>1114,1108>11>1106,1108>12>1044,1109>11>1106,1109>12>862,1110>11>1106,1110>12>1120,1111>11>1106,1111>12>1117,1112>11>1106,1112>12>1037,1113>11>1106,1113>12>1094,1116>11>1114,1116>12>1076,1119>11>1117,1119>12>1130,1123>11>1122,1123>12>1120,1124>11>1122,1124>12>1106,1125>11>1122,1125>12>1117,1128>11>1126,1128>12>1089,1129>11>1126,1129>12>1117,1132>13>1146,1134>11>1133,1134>12>1146,1143>11>1142,1143>12>1146,1145>11>1144,1145>12>1146,1147>11>1146,1147>12>1135,1154>11>1153,1154>12>852,1156>11>1155,1156>12>852,1157>11>1155,1157>12>854,1160>11>1158,1160>12>852,1162>11>1161,1162>12>852,1189>11>1188,1189>12>1713,'
  7288. ..'1212>11>1211,1212>12>1713,1220>11>1219,1220>12>1988,1673>11>1671,1673>12>1211,1674>11>1671,1674>12>3479,1675>11>1671,1675>12>1188,1696>13>1707,1708>11>1707,1708>12>1698,1709>11>1707,1709>12>1706,1710>11>1707,1710>12>1705,1711>11>1707,1711>12>1697,1715>13>1718,1716>13>1718,1717>13>1718,1766>11>1764,1766>12>1897,1767>11>1764,1767>12>1723,1792>13>1837,1795>11>1793,1795>12>1818,1796>11>1793,1796>12>1801,1799>11>1797,1799>12>1831,1800>11>1797,1800>12>1801,1804>11>1801,1804>12>1808,1807>11>1805,1807>12>1871,1810>11>1808,1810>12>1815,1817>11>1815,1817>12>1831,1820>11>1818,1820>12>1862,1821>11>1818,1821>12>1808,1822>11>1818,1822>12>1833,1823>11>1818,1823>12>1831,1824>11>1818,1824>12>1801,1825>11>1818,1825>12>1797,1826>11>1818,1826>12>1875,1827>11>1818,1827>12>1865,1828>11>1818,1828>12>1860,1829>11>1818,1829>12>1837,1830>11>1818,1830>12>1926,1835>11>1833,1835>12>1837,1836>11>1833,1836>12>1811,1841>11>1839,1841>12>1805,1844>11>1842,1844>12>1897,1845>11>1842,1845>12>1900,1846>11>1842,1846>12>1884,1847>11>1842,1847>12>1862,1848>11>1842,1848>12>1860,1852>11>1849,1852>12>1882,1853>11>1849,1853>12>1813,1854>11>1849,1854>12>1906,1855>11>1849,1855>12>1879,1858>11>1856,1858>12>1724,1859>11>1856,1859>12>1837,1861>11>1860,1861>12>1884,1864>11>1862,1864>12>1865,1869>11>1867,1869>12>1754,1870>11>1867,1870>12>1837,1873>11>1871,1873>12>1897,1874>11>1871,1874>12>1900,1876>11>1875,1876>12>1884,1877>11>1875,1877>12>1926,1878>11>1875,1878>12>1718,1881>11>1879,1881>12>1904,1886>11>1884,1886>12>1718,1889>11>1887,1889>12>1882,1890>11>1887,1890>12>1904,1893>11>1891,1893>12>1871,1894>11>1891,1894>12>1718,1895>11>1891,1895>12>1928,1896>11>1891,1896>12>1901,1898>11>1897,1898>12>1960,1899>11>1897,1899>12>1900,1902>11>1901,1902>12>1871,1903>11>1901,1903>12>1906,1908>11>1906,1908>12>1882,1909>11>1906,1909>12>1939,1910>11>1906,1910>12>1904,1911>11>1906,1911>12>1839,1912>11>1906,1912>12>1'
  7289. ..'805,1913>11>1906,1913>12>1813,1914>11>1906,1914>12>1928,1915>11>1906,1915>12>1879,1916>11>1906,1916>12>1948,1919>11>1917,1919>12>1875,1920>11>1917,1920>12>1897,1921>11>1917,1921>12>1956,1922>11>1917,1922>12>1944,1923>11>1917,1923>12>1900,1924>11>1917,1924>12>1926,1925>11>1917,1925>12>1718,1929>11>1928,1929>12>1718,1930>11>1928,1930>12>1960,1931>11>1928,1931>12>1948,1934>11>1932,1934>12>1737,1935>11>1932,1935>12>1964,1938>11>1936,1938>12>1944,1943>11>1941,1943>12>1939,1946>11>1944,1946>12>1986,1947>11>1944,1947>12>1956,1950>11>1948,1950>12>1960,1953>11>1951,1953>12>1897,1954>11>1951,1954>12>1917,1955>11>1951,1955>12>1956,1959>11>1957,1959>12>1752,1962>11>1960,1962>12>1718,1963>11>1960,1963>12>1900,1966>11>1964,1966>12>1939,1967>11>1964,1967>12>1957,1968>11>1964,1968>12>1906,1971>11>1969,1971>12>1960,1972>11>1969,1972>12>1936,1973>11>1969,1973>12>1981,1974>11>1969,1974>12>1986,1975>11>1969,1975>12>1983,1978>11>1976,1978>12>1897,1979>11>1976,1979>12>1960,1980>11>1976,1980>12>1981,1982>11>1981,1982>12>1960,1985>11>1983,1985>12>1944,1990>11>1988,1990>12>1997,1993>11>1991,1993>12>2623,1994>11>1991,1994>12>1999,1995>11>1991,1995>12>1997,1996>11>1991,1996>12>1219,2000>11>1999,2000>12>1988,2035>11>2034,2035>12>1713,2036>11>2034,2036>12>1671,2037>13>2052,2039>11>2038,2039>12>2052,2041>11>2040,2041>12>2052,2049>11>2048,2049>12>2052,2051>11>2050,2051>12>2052,2054>13>2057,2055>13>2057,2056>13>2057,2062>11>2057,2062>12>2303,2063>11>2057,2063>12>2223,2064>11>2057,2064>12>2212,2065>11>2057,2065>12>2228,2066>11>2057,2066>12>2268,2070>11>2068,2070>12>2192,2101>11>2099,2101>12>2205,2112>11>2110,2112>12>2067,2113>11>2110,2113>12>2230,2138>13>2178,2141>11>2139,2141>12>2167,2142>11>2139,2142>12>2147,2145>11>2143,2145>12>2167,2146>11>2143,2146>12>2147,2150>11>2147,2150>12>2167,2155>11>2153,2155>12>2167,2156>11>2153,2156>12>2164,2157>11>2153,2157>12>2147,2160>11>2158,2160>'
  7290. ..'12>2174,2163>11>2161,2163>12>2189,2166>11>2164,2166>12>2170,2169>11>2167,2169>12>2203,2172>11>2170,2172>12>2167,2173>11>2170,2173>12>2143,2176>11>2174,2176>12>2178,2177>11>2174,2177>12>2167,2180>11>2178,2180>12>2205,2181>11>2178,2181>12>2192,2182>11>2178,2182>12>2167,2185>11>2183,2185>12>2151,2188>11>2186,2188>12>2230,2195>11>2194,2195>12>2223,2196>11>2194,2196>12>2186,2197>11>2194,2197>12>2167,2200>11>2198,2200>12>2186,2201>11>2198,2201>12>2203,2202>11>2198,2202>12>2167,2209>11>2207,2209>12>2230,2210>11>2207,2210>12>2228,2211>11>2207,2211>12>2151,2213>11>2212,2213>12>2223,2214>11>2212,2214>12>2167,2217>11>2215,2217>12>2245,2218>11>2215,2218>12>2189,2221>11>2219,2221>12>2189,2222>11>2219,2222>12>2226,2225>11>2223,2225>12>2186,2232>11>2231,2232>12>2303,2233>11>2231,2233>12>2230,2234>11>2231,2234>12>2207,2235>11>2231,2235>12>2186,2237>11>2236,2237>12>2228,2238>11>2236,2238>12>2245,2239>11>2236,2239>12>2207,2242>11>2240,2242>12>2245,2243>11>2240,2243>12>2215,2244>11>2240,2244>12>2226,2247>11>2245,2247>12>2278,2248>11>2245,2248>12>2219,2249>11>2245,2249>12>2183,2250>11>2245,2250>12>2151,2251>11>2245,2251>12>2189,2252>11>2245,2252>12>2307,2253>11>2245,2253>12>2161,2256>11>2254,2256>12>2294,2257>11>2254,2257>12>2283,2258>11>2254,2258>12>2230,2259>11>2254,2259>12>2057,2260>11>2254,2260>12>2264,2261>11>2254,2261>12>2231,2262>11>2254,2262>12>2298,2263>11>2254,2263>12>2212,2266>11>2264,2266>12>2212,2267>11>2264,2267>12>2167,2269>11>2268,2269>12>2303,2270>11>2268,2270>12>2228,2271>11>2268,2271>12>2245,2274>11>2272,2274>12>2082,2275>11>2272,2275>12>2307,2282>11>2280,2282>12>2278,2285>11>2283,2285>12>2298,2286>11>2283,2286>12>2325,2287>11>2283,2287>12>2323,2288>11>2283,2288>12>2276,2291>11>2289,2291>12>2303,2292>11>2289,2292>12>2268,2293>11>2289,2293>12>2245,2296>11>2294,2296>12>2298,2297>11>2294,2297>12>2230,2301>11>2299,2301>12>2097,2302>11>2299,2302>12>2307,2'
  7291. ..'305>11>2303,2305>12>2322,2306>11>2303,2306>12>2230,2309>11>2307,2309>12>2278,2312>11>2310,2312>12>2322,2313>11>2310,2313>12>2303,2314>11>2310,2314>12>2325,2315>11>2310,2315>12>2323,2316>11>2310,2316>12>2276,2319>11>2317,2319>12>2322,2320>11>2317,2320>12>2230,2321>11>2317,2321>12>2303,2329>13>2344,2331>11>2330,2331>12>2344,2333>11>2332,2333>12>2344,2341>11>2340,2341>12>2344,2343>11>2342,2343>12>2344,2346>13>2349,2347>13>2349,2348>13>2349,2354>11>2349,2354>12>2553,2355>11>2349,2355>12>2595,2356>11>2349,2356>12>2504,2357>11>2349,2357>12>2523,2358>11>2349,2358>12>2563,2392>11>2390,2392>12>2497,2403>11>2401,2403>12>2359,2428>13>2472,2431>11>2429,2431>12>2459,2432>11>2429,2432>12>2438,2435>11>2433,2435>12>2464,2436>11>2433,2436>12>2459,2437>11>2433,2437>12>2438,2443>11>2441,2443>12>2500,2444>11>2441,2444>12>2544,2445>11>2441,2445>12>2475,2448>11>2446,2448>12>2459,2449>11>2446,2449>12>2457,2450>11>2446,2450>12>2438,2455>11>2453,2455>12>2544,2456>11>2453,2456>12>2480,2461>11>2459,2461>12>2495,2462>11>2459,2462>12>2464,2463>11>2459,2463>12>2438,2466>11>2464,2466>12>2457,2469>11>2467,2469>12>2451,2470>11>2467,2470>12>2472,2471>11>2467,2471>12>2459,2474>11>2472,2474>12>2459,2479>11>2477,2479>12>2537,2485>11>2483,2485>12>2360,2486>11>2483,2486>12>2472,2488>11>2487,2488>12>2477,2489>11>2487,2489>12>2459,2492>11>2490,2492>12>2477,2493>11>2490,2493>12>2495,2494>11>2490,2494>12>2459,2499>11>2497,2499>12>2472,2502>11>2500,2502>12>2537,2503>11>2500,2503>12>2538,2505>11>2504,2505>12>2553,2506>11>2504,2506>12>2459,2509>11>2507,2509>12>2480,2512>11>2510,2512>12>2544,2513>11>2510,2513>12>2480,2514>11>2510,2514>12>2521,2517>11>2515,2517>12>2349,2518>11>2515,2518>12>2504,2519>11>2515,2519>12>2487,2520>11>2515,2520>12>2477,2525>11>2523,2525>12>2563,2526>11>2523,2526>12>2538,2527>11>2523,2527>12>2500,2529>11>2528,2529>12>2607,2530>11>2528,2530>12>2401,2531>11>2528,2531>12>25'
  7292. ..'85,2532>11>2528,2532>12>2595,2533>11>2528,2533>12>2553,2534>11>2528,2534>12>2537,2535>11>2528,2535>12>2500,2536>11>2528,2536>12>2477,2541>11>2539,2541>12>2544,2542>11>2539,2542>12>2507,2543>11>2539,2543>12>2521,2546>11>2544,2546>12>2563,2547>11>2544,2547>12>2583,2548>11>2544,2548>12>2600,2549>11>2544,2549>12>2538,2550>11>2544,2550>12>2507,2551>11>2544,2551>12>2480,2552>11>2544,2552>12>2475,2555>11>2553,2555>12>2585,2556>11>2553,2556>12>2581,2557>11>2553,2557>12>2537,2560>11>2558,2560>12>2553,2561>11>2558,2561>12>2504,2562>11>2558,2562>12>2459,2564>11>2563,2564>12>2595,2565>11>2563,2565>12>2583,2568>11>2566,2568>12>2373,2569>11>2566,2569>12>2600,2572>11>2570,2572>12>2602,2573>11>2570,2573>12>2581,2576>11>2574,2576>12>2544,2577>11>2574,2577>12>2600,2578>11>2574,2578>12>2579,2588>11>2587,2588>12>2585,2589>11>2587,2589>12>2553,2590>11>2587,2590>12>2581,2593>11>2591,2593>12>2388,2594>11>2591,2594>12>2600,2597>11>2595,2597>12>2607,2598>11>2595,2598>12>2537,2599>11>2595,2599>12>2583,2604>11>2602,2604>12>2609,2605>11>2602,2605>12>2595,2606>11>2602,2606>12>2616,2610>11>2609,2610>12>2607,2611>11>2609,2611>12>2595,2614>11>2612,2614>12>2602,2615>11>2612,2615>12>2581,2618>11>2616,2618>12>2581,2621>11>2619,2621>12>2625,2622>11>2619,2622>12>2327,2624>11>2623,2624>12>1988,2628>11>2627,2628>12>2625,2629>11>2627,2629>12>2327,2807>11>2805,2807>12>2802,2811>11>2808,2811>12>2802,2813>11>2812,2813>12>2876,2814>11>2812,2814>12>2878,2815>11>2812,2815>12>2897,2828>11>2825,2828>12>2812,2971>11>2970,2971>12>3102,2972>11>2970,2972>12>3099,2975>11>2974,2975>12>2976,2977>11>2976,2977>12>2973,2978>11>2976,2978>12>3078,2980>11>2979,2980>12>3065,2981>11>2979,2981>12>3118,2983>11>2982,2983>12>3107,2984>11>2982,2984>12>2974,2986>11>2985,2986>12>2993,2989>11>2988,2989>12>3104,2990>11>2988,2990>12>3058,2991>11>2988,2991>12>2970,2994>11>2993,2994>12>3003,2996>11>2995,2996>12>3018,2997>1'
  7293. ..'1>2995,2997>12>3006,2998>11>2995,2998>12>3077,3000>11>2999,3000>12>2992,3001>11>2999,3001>12>3052,3002>11>2999,3002>12>3121,3007>11>3006,3007>12>3123,3009>11>3008,3009>12>2987,3010>11>3008,3010>12>2979,3013>11>3011,3013>12>2812,3014>11>3011,3014>12>3960,3016>11>3015,3016>12>2992,3017>11>3015,3017>12>3018,3028>11>3027,3028>12>3030,3029>11>3027,3029>12>3121,3031>11>3030,3031>12>2985,3033>11>3032,3033>12>3078,3034>11>3032,3034>12>2974,3036>11>3035,3036>12>3042,3037>11>3035,3037>12>3065,3041>11>3040,3041>12>2987,3045>11>3044,3045>12>3055,3046>11>3044,3046>12>3032,3047>11>3044,3047>12>2982,3049>11>3048,3049>12>3040,3050>11>3048,3050>12>3008,3051>11>3048,3051>12>3065,3053>11>3052,3053>12>3087,3054>11>3052,3054>12>3027,3056>11>3055,3056>12>3107,3057>11>3055,3057>12>3043,3059>11>3058,3059>12>3043,3061>11>3060,3061>12>3063,3062>11>3060,3062>12>3003,3064>11>3063,3064>12>3070,3067>11>3066,3067>12>3077,3068>11>3066,3068>12>3083,3069>11>3066,3069>12>3006,3071>11>3070,3071>12>3040,3072>11>3070,3072>12>3112,3074>11>3073,3074>12>3042,3075>11>3073,3075>12>2973,3076>11>3073,3076>12>3078,3080>11>3079,3080>12>3015,3081>11>3079,3081>12>3084,3082>11>3079,3082>12>3087,3085>11>3084,3085>12>3018,3086>11>3084,3086>12>3077,3088>11>3087,3088>12>2992,3092>11>3091,3092>12>3060,3093>11>3091,3093>12>3030,3094>11>3091,3094>12>2993,3100>11>3099,3100>12>3108,3101>11>3099,3101>12>3058,3103>11>3102,3103>12>3108,3105>11>3104,3105>12>3107,3106>11>3104,3106>12>3043,3110>11>3109,3110>12>2973,3111>11>3109,3111>12>3042,3113>11>3112,3113>12>2987,3115>11>3114,3115>12>3112,3116>11>3114,3116>12>3063,3117>11>3114,3117>12>3003,3119>11>3118,3119>12>3109,3120>11>3118,3120>12>3035,3122>11>3121,3122>12>2985,3124>11>3123,3124>12>3303,3125>11>3123,3125>12>3083,3139>11>3138,3139>12>3135,3142>11>3141,3142>12>3145,3143>11>3141,3143>12>3146,3144>11>3141,3144>12>3147,3149>11>3148,3149>12>3146,3150>11>3148,31'
  7294. ..'50>12>3147,3157>11>3156,3157>12>3207,3158>11>3156,3158>12>3225,3159>11>3156,3159>12>3163,3160>11>3156,3160>12>3170,3161>11>3156,3161>12>3227,3221>11>3219,3221>12>3202,3246>11>3243,3246>12>3202,3298>11>3297,3298>12>3301,3299>11>3297,3299>12>3303,3300>11>3297,3300>12>3083,3302>11>3301,3302>12>3126,3304>11>3303,3304>12>3126,3306>11>3305,3306>12>3146,3307>11>3305,3307>12>3145,3481>11>3479,3481>12>1713,3483>11>3482,3483>12>3509,3485>11>3484,3485>12>3509,3535>13>3550,3537>11>3536,3537>12>3550,3539>11>3538,3539>12>3550,3547>11>3546,3547>12>3550,3549>11>3548,3549>12>3550,3554>11>3552,3554>12>4041,3555>11>3552,3555>12>3484,3556>11>3552,3556>12>4084,3557>11>3552,3557>12>3482,3558>13>3561,3559>13>3561,3560>13>3561,3566>11>3561,3566>12>3732,3567>11>3561,3567>12>3771,3568>11>3561,3568>12>3715,3570>11>3569,3570>12>3612,3573>11>3571,3573>12>3698,3638>13>3680,3643>11>3641,3643>12>3667,3647>11>3644,3647>12>3639,3648>11>3644,3648>12>3655,3649>11>3644,3649>12>3667,3650>11>3644,3650>12>3641,3653>11>3651,3653>12>3686,3654>11>3651,3654>12>3712,3657>11>3655,3657>12>3667,3660>11>3658,3660>12>3678,3665>11>3663,3665>12>3655,3666>11>3663,3666>12>3674,3669>11>3667,3669>12>3639,3670>11>3667,3670>12>3715,3671>11>3667,3671>12>3700,3672>11>3667,3672>12>3678,3673>11>3667,3673>12>3769,3676>11>3674,3676>12>3667,3677>11>3674,3677>12>3641,3682>11>3680,3682>12>3678,3683>11>3680,3683>12>3698,3684>11>3680,3684>12>3667,3685>11>3680,3685>12>3709,3690>11>3688,3690>12>3741,3691>11>3688,3691>12>3737,3692>11>3688,3692>12>3700,3696>11>3693,3696>12>3661,3697>11>3693,3697>12>3717,3703>11>3701,3703>12>3706,3704>11>3701,3704>12>3688,3705>11>3701,3705>12>3667,3708>11>3706,3708>12>3667,3711>11>3709,3711>12>3602,3714>11>3712,3714>12>3743,3716>11>3715,3716>12>3769,3721>11>3719,3721>12>3749,3722>11>3719,3722>12>3730,3723>11>3719,3723>12>3693,3726>11>3724,3726>12>3688,3727>11>3724,3727>12>3561,3728>11>372'
  7295. ..'4,3728>12>3715,3729>11>3724,3729>12>3700,3734>11>3732,3734>12>3712,3735>11>3732,3735>12>3771,3736>11>3732,3736>12>3743,3738>11>3737,3738>12>3712,3739>11>3737,3739>12>3612,3740>11>3737,3740>12>3741,3742>11>3741,3742>12>3712,3746>11>3744,3746>12>3749,3747>11>3744,3747>12>3730,3748>11>3744,3748>12>3717,3751>11>3749,3751>12>3686,3752>11>3749,3752>12>3661,3753>11>3749,3753>12>3811,3754>11>3749,3754>12>3651,3755>11>3749,3755>12>3717,3756>11>3749,3756>12>3771,3757>11>3749,3757>12>3743,3758>11>3749,3758>12>3779,3759>11>3749,3759>12>3693,3760>11>3749,3760>12>3787,3763>11>3761,3763>12>3737,3764>11>3761,3764>12>3715,3765>11>3761,3765>12>3785,3766>11>3761,3766>12>3741,3767>11>3761,3767>12>3561,3768>11>3761,3768>12>3769,3774>11>3772,3774>12>3585,3775>11>3772,3775>12>3811,3778>11>3776,3778>12>3785,3781>11>3779,3781>12>3783,3782>11>3779,3782>12>3811,3789>11>3787,3789>12>3771,3792>11>3790,3792>12>3737,3793>11>3790,3793>12>3761,3795>11>3794,3795>12>3761,3796>11>3794,3796>12>3790,3797>11>3794,3797>12>3785,3800>11>3798,3800>12>3600,3801>11>3798,3801>12>3811,3804>11>3802,3804>12>3771,3805>11>3802,3805>12>3737,3806>11>3802,3806>12>3561,3807>11>3802,3807>12>3818,3808>11>3802,3808>12>3813,3809>11>3802,3809>12>3787,3810>11>3802,3810>12>3741,3815>11>3813,3815>12>3776,3816>11>3813,3816>12>3828,3817>11>3813,3817>12>3825,3820>11>3818,3820>12>3737,3822>11>3821,3822>12>3802,3823>11>3821,3823>12>3818,3824>11>3821,3824>12>3813,3827>11>3825,3827>12>3785,3830>11>3828,3830>12>3785,3832>11>3831,3832>12>2625,3833>11>3831,3833>12>2327,3895>11>3893,3895>12>3960,3955>11>3953,3955>12>3960,3961>11>3960,3961>12>3967,3962>11>3960,3962>12>3958,3963>11>3960,3963>12>3845,3966>11>3964,3966>12>3960,3977>11>3974,3977>12>3960,3999>11>3997,3999>12>4002,4005>11>4002,4005>12>3978,4042>11>4041,4042>12>3509,4044>11>4043,4044>12>2625,4045>11>4043,4045>12>2327,4048>11>4046,4048>12>280,4086>11>4084,4086>12>'
  7296. ..'3509,4112>11>4111,4112>12>4678,4113>11>4111,4113>12>4266,4119>11>4118,4119>12>4129,4120>11>4118,4120>12>4750,4121>11>4118,4121>12>4127,4122>11>4118,4122>12>4754,4123>11>4118,4123>12>760,4124>11>4118,4124>12>4734,4125>11>4118,4125>12>4770,4126>11>4118,4126>12>4736,4141>11>4140,4141>12>4142,4143>11>4142,4143>12>4132,4144>11>4142,4144>12>4139,4145>11>4142,4145>12>4131,4268>11>4266,4268>12>4381,4269>11>4266,4269>12>4083,4359>11>4358,4359>12>4266,4360>11>4358,4360>12>4678,4396>11>4394,4396>12>4118,4401>13>4404,4402>13>4404,4403>13>4404,4409>11>4404,4409>12>4652,4410>11>4404,4410>12>4607,4414>11>4412,4414>12>4541,4443>11>4441,4443>12>4649,4446>11>4444,4446>12>4554,4457>11>4455,4457>12>4583,4458>11>4455,4458>12>4411,4483>13>4524,4486>11>4484,4486>12>4514,4487>11>4484,4487>12>4493,4490>11>4488,4490>12>4517,4491>11>4488,4491>12>4514,4492>11>4488,4492>12>4493,4496>11>4493,4496>12>4514,4501>11>4499,4501>12>4514,4502>11>4499,4502>12>4493,4505>11>4503,4505>12>4520,4508>11>4506,4508>12>4602,4509>11>4506,4509>12>4536,4512>11>4510,4512>12>4499,4513>11>4510,4513>12>4517,4516>11>4514,4516>12>4524,4519>11>4517,4519>12>4514,4522>11>4520,4522>12>4514,4523>11>4520,4523>12>4524,4526>11>4524,4526>12>4541,4529>11>4527,4529>12>4602,4530>11>4527,4530>12>4497,4533>11>4531,4533>12>4591,4534>11>4531,4534>12>4572,4535>11>4531,4535>12>4543,4539>11>4536,4539>12>4602,4540>11>4536,4540>12>4565,4544>11>4543,4544>12>4572,4545>11>4543,4545>12>4514,4548>11>4546,4548>12>4551,4549>11>4546,4549>12>4531,4550>11>4546,4550>12>4514,4553>11>4551,4553>12>4514,4556>11>4554,4556>12>4524,4559>11>4557,4559>12>4497,4561>11>4560,4561>12>4404,4562>11>4560,4562>12>4572,4563>11>4560,4563>12>4607,4564>11>4560,4564>12>4514,4569>11>4567,4569>12>4602,4570>11>4567,4570>12>4575,4571>11>4567,4571>12>4536,4574>11>4572,4574>12>4404,4577>11>4575,4577>12>4598,4580>11>4578,4580>12>4557,4581>11>4578,4581>12>4404,4582>'
  7297. ..'11>4578,4582>12>4595,4584>11>4583,4584>12>4557,4585>11>4583,4585>12>4531,4586>11>4583,4586>12>4659,4587>11>4583,4587>12>4643,4588>11>4583,4588>12>4652,4589>11>4583,4589>12>4607,4590>11>4583,4590>12>4591,4592>11>4591,4592>12>4652,4593>11>4591,4593>12>4607,4594>11>4591,4594>12>4557,4596>11>4595,4596>12>4557,4597>11>4595,4597>12>4602,4600>11>4598,4600>12>4602,4601>11>4598,4601>12>4565,4604>11>4602,4604>12>4497,4605>11>4602,4605>12>4565,4606>11>4602,4606>12>4654,4611>11>4609,4611>12>4560,4612>11>4609,4612>12>4607,4613>11>4609,4613>12>4514,4615>11>4614,4615>12>4404,4616>11>4614,4616>12>4578,4617>11>4614,4617>12>4652,4618>11>4614,4618>12>4639,4619>11>4614,4619>12>4602,4622>11>4620,4622>12>4426,4623>11>4620,4623>12>4654,4626>11>4624,4626>12>4656,4627>11>4624,4627>12>4635,4630>11>4628,4630>12>4633,4631>11>4628,4631>12>4654,4632>11>4628,4632>12>4602,4637>11>4635,4637>12>4607,4638>11>4635,4638>12>4647,4641>11>4639,4641>12>4652,4642>11>4639,4642>12>4602,4645>11>4643,4645>12>4607,4646>11>4643,4646>12>4647,4648>11>4647,4648>12>4607,4651>11>4649,4651>12>4654,4658>11>4656,4658>12>4652,4661>11>4659,4661>12>4652,4663>11>4662,4663>12>4659,4664>11>4662,4664>12>4652,4665>11>4662,4665>12>4656,4668>11>4666,4668>12>4656,4669>11>4666,4669>12>4635,4672>11>4670,4672>12>4656,4673>11>4670,4673>12>4635,4675>11>4674,4675>12>847,4676>11>4674,4676>12>849,4677>11>4674,4677>12>4399,4680>11>4678,4680>12>4381,4681>11>4678,4681>12>4083;2;n;1|2:2|3:3|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:11;4|9:10|10:12;4|9:10|10:13;p;1|2:2|3:14|4:15;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:20|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:30;9|9:10|10:31;p;10|5:32|3:33|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:38|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|'
  7298. ..'1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:56|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:71|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;1|1:73|5:37|3:74|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:85|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:114|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:120;p;1|1:113|5:84|3:121|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:124|10:125;p;1|1:113|5:32|3:126|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;p;1|1:113|5:131|3:132|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:136|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:140;9|9:141|10:142;9|9:141|10:143;p;1|1:113|5:19|3:144|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:147|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:120;p;1|1:113|5:19|3:149|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:84|3:1'
  7299. ..'52|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:159;9|9:160|10:161;9|9:162|10:163;9|9:160|10:164;9|9:160|10:165;p;1|1:113|5:9|3:166|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:169|10:170;9|9:171|10:172;p;1|1:113|5:19|3:173|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:177;9|9:178|10:179;p;1|1:113|5:9|3:180|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:183;9|9:158|10:184;9|9:185|10:125;9|9:176|10:186;p;1|1:113|5:131|30:187|3:188|15:133|16:189|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:193;p;1|1:113|5:131|3:194|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:198;9|9:158|10:199;9|9:158|10:200;9|9:162|10:201;9|9:158|10:202;p;1|1:113|5:32|3:203|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:206|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:211|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:217|10:218;p;1|1:113|5:131|3:219|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:221|10:222;9|9:223|10:224;p;1|1:113|5:131|30:187|3:225|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:228|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:131|3:230|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:162|10:201;p;1|5:19|3:232|15:115|16:233|4:234|17:24|18:24|5:19|5:19;1|1:113|5:19|3:235|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:237|10:238;9|9:162|10:239;9|9:124|10:240;p;1|1:113|5:19|3:241|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:244;p;1|1:113|5:84|3:245|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:124|10:248;p;1|1:113|5:19|3:249|15:137|16:250|4:139|27:25|17:24|18'
  7300. ..':24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:251;9|9:252|10:253;p;1|1:113|3:254|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;9|9:256|10:257;9|9:124|10:248;4|9:258|10:259;9|9:260|10:261;p;1|5:84|3:262|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:265|10:266;9|9:10|10:267;9|9:268|10:269;9|9:270|10:271;p;1|5:32|3:272|15:153|16:273|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:275;9|9:221|10:276;p;1|5:19|3:277|15:115|16:278|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;p;1|1:113|5:9|3:280|15:281|16:282|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:84|3:283|15:21|16:284|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:285;9|9:162|10:286;9|9:162|10:287;9|9:162|10:288;9|9:158|10:289;9|9:158|10:290;9|9:158|10:291;9|9:158|10:292;9|9:158|10:293;9|9:160|10:294;9|9:160|10:295;p;1|1:113|5:19|3:296|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:301;9|9:217|10:302;4|9:303|10:304;9|9:217|10:305;9|9:306|10:307;9|9:308|10:309;p;1|1:113|5:32|3:310|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:315|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:318|10:319;9|9:124|10:320;p;1|1:113|5:84|3:321|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:19|3:324|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;p;1|1:113|5:19|3:328|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:330|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:332;p;1|1:113|5:19|3:333|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:336;9|9:119|10:337;p;1|1:113|5:32|3:338|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;p;1|1:113|5:84|3:342|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:346;'
  7301. ..'p;1|5:19|3:347|15:21|16:348|4:349|31:7|5:19|5:19;n;4|9:350|10:351;9|9:158|10:352;4|9:353|10:354;p;1|1:113|5:84|3:355|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:19|3:357|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:9|3:359|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:162|10:361;9|9:162|10:362;9|9:185|10:363;p;1|1:113|5:19|3:364|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:366;9|9:119|10:367;9|9:119|10:368;p;1|1:113|5:84|3:369|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:372|10:373;4|9:340|10:374;9|9:252|10:375;p;1|5:19|3:376|15:21|16:377|4:349|31:7|5:19|5:19;n;9|9:162|10:378;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:382|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;p;1|1:113|5:32|3:386|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:178|10:390;9|9:391|10:392;p;p;p;1|2:2|3:393|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:394;p;2;n;1|2:2|5:131|14:395|3:396|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:400|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:405|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:413|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:416|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:418|15:397|4:419|18:24|5:131|5:131;7|1:420;p;1|1:421|2:2|5:19|3:422|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:426|15:153|4:427;n;4|9:428|10:429;p;1|1:421|2:2|5:19|3:430|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:431|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:432|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|'
  7302. ..'8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:433|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:434|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:436|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:439|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:440|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:443|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:444|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:446|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:447|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:448|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:449|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:451|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:452|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:453|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:454|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:456|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:458|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:459|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:462|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:463'
  7303. ..'|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:464|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:465|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:466|15:153|4:467;n;4|9:468|10:469;4|9:428|10:470;p;1|1:421|2:2|5:19|3:471|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:472|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:473|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:474|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:475|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:476|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:477|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:478|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:479|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:480|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:481|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:482|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:483|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:484|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:485|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:486|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:4'
  7304. ..'24;p;1|1:421|2:2|5:19|3:487|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:488|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:489|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:490|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:491|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:492|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:493|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:494|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:495|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:496|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:497|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:498|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:499|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:500|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:501|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:502|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:503|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:504|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:505|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|'
  7305. ..'4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:506|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:507|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:508|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:509|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:510|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:511|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:512|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:513|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:514|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:515|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:516|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:517|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:518|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:519|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:520|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:521|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:522|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:523|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:524|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1'
  7306. ..'|1:421|2:2|5:19|3:525|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:526|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:527|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:528|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:529|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:530|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:531|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:532|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:533|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:534|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:535|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:536|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:538|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:539|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:540|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:541|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:542|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:543|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:544|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:545|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:4'
  7307. ..'24;p;1|1:421|2:2|5:460|14:461|3:546|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:547|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:548|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:549|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:550|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:551|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:552|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:554|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:555|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:556|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:557|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:558|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:559|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:561|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:562|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:564|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:565|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:566|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:568|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:569|15:153|4:327|17:24|18:24|'
  7308. ..'5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:570|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:571|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:572|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:573|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:574|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:575|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:576|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:577|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:578|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:579|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:580|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:581|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:583|15:21|4:584|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:585|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:586|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:587|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:588|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:589|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:590|15:325|4:423|17:24|18:24|5:'
  7309. ..'460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:591|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:592|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:593|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:594|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:595|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:596|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:597|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:598|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:599|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:600|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:601|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:602|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:603|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:604|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:605|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:606|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:607|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:609|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:610|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|'
  7310. ..'6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:611|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:612|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:613|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:614|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:615|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:616|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:617|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:618|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:619|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:620|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:621|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:622|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:623|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:624|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:625|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:626|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:627|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:628|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:629|15:153|4:423|17:24|18:24|5:19|5:19;'
  7311. ..'n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:630|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:631|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:632|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:633|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:634|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:635|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:636|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:637|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:638|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:639|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:640|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:641|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:642|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:643|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:644|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:645|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:646|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:647|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:648|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|'
  7312. ..'6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:649|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:650|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:651|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:652|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:653|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:654|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:655|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:656|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:657|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:658|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:659|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:660|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:661|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:662|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:663|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:664|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:665|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:666|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:667|15:153|4:423|17:24|18:24|5:19|5:19;n;3'
  7313. ..'|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:668|15:669|4:670;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:671|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:672|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:673|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:674|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:675|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:676|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:677|10:678;p;1|1:421|2:2|5:19|3:679|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:680|15:21|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:681|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:682|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:683|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:684|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:685|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:686|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:687|2:2|5:19|3:688|15:689|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:693|2:2|5:19|3:694|15:297|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:695|2:2|5:19|3:696|15:567|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:697|2:2|5:19|3:698|1'
  7314. ..'5:699|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:700|2:2|5:19|3:701|15:702|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:703|2:2|5:19|3:704|15:153|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:705|2:2|5:19|3:706|15:707|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:708|2:2|5:19|3:709|15:21|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:710|2:2|5:19|3:711|15:712|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:713|2:2|5:19|3:714|15:715|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:716|2:2|5:19|3:717|15:718|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:719|2:2|5:19|3:720|15:721|4:690|31:7|17:24|18:24|5:19|5:19;n;11|22:691|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:723|15:567|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;9|9:725|10:726;p;1|1:727|2:2|3:728|15:729|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:732|15:21|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:722|2:2|5:19|3:733|15:297|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;9|9:725|10:734;p;1|1:722|2:2|5:19|3:735|15:153|4:724|31:7|17:25|18:24|5:19|5:19;n;11|24:25;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:736|15:737|4:730|17:24|18:24;n;15|22:738;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:739|15:740|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:741|2:2|5:742|3:743|15:744|4:745|31:7|17:24|18:24|5:742|5:742;n;16|22:746;3'
  7315. ..'|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:747|15:748|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:749|15:750|4:730|17:24|18:24;n;15|22:738;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|1:727|2:2|3:751|15:752|4:730|17:24|18:24;n;15|22:731;3|5:692|4:6|6:7|7:8|8:9|5:692|5:692;p;1|2:2|3:753|15:754|4:755;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:756|15:153|4:757|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:758|15:153|4:759|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|3:760|15:153|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:761|15:153|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:762;4|9:10|10:763;4|9:10|10:764;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:766|15:767|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:768;9|9:10|10:769;9|9:10|10:770;p;10|5:32|3:771|15:767|16:772|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:773|15:767|16:774|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:775|15:767|16:776|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:777;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:778|15:767|16:779|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:780|15:767|16:781|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:782|15:767|16:783|4:87|17:24|5:84|5:84;n;7;9|9:185|10:784;9|9:10|10:785;p;12|1:45|25:89;12|1:45|25:9'
  7316. ..'0;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:786|15:787|16:788|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:790;9|9:119|10:791;p;1|1:113|5:84|3:792|15:767|16:793|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:124|10:794;9|9:158|10:795;9|9:237|10:796;p;1|1:113|5:32|3:797|15:767|16:798|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;9|9:158|10:800;p;1|1:113|5:131|3:801|15:802|16:803|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:805;9|9:223|10:806;p;1|1:113|5:19|3:807|15:808|16:809|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:810;9|9:119|10:811;p;1|1:113|5:19|3:812|15:808|16:813|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:814|15:787|16:815|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:816;9|9:119|10:817;p;1|1:113|5:19|3:818|15:819|16:820|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:821;p;1|1:113|5:84|3:822|15:823|16:824|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:825;p;1|1:113|5:9|3:826|15:819|16:827|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:828|15:819|16:829|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:178|10:830;9|9:391|10:831;9|9:176|10:832;p;1|1:113|5:9|3:833|15:819|16:834|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:176|10:835;p;1|1:113|5:131|30:187|3:836|15:802|16:837|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:131|3:838|15:839|16:840|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;p;1|1:113|5:32|3:841|15:767|16:842|4:128|27:25|17:25|18:24|5:32|5:32;n;11'
  7317. ..'|22:118|24:129;13|28:205|29:157;9|9:162|10:843;p;1|1:113|5:84|3:844|15:845|16:846|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:847;9|9:258|10:848;p;1|5:19|3:849|15:787|16:850|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:851;9|9:217|10:852;9|9:260|10:853;p;1|1:113|5:131|3:854|15:802|16:855|4:135|17:25|18:25|5:131|5:131;n;11;9|9:221|10:856;9|9:804|10:805;p;1|1:113|5:131|30:187|3:857|15:802|16:858|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:859;9|9:192|10:860;p;1|1:113|5:84|3:861|15:845|16:862|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:863;9|9:258|10:864;p;1|1:113|5:131|3:865|15:839|16:866|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:867;p;1|5:19|3:868|15:787|16:869|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:870;9|9:217|10:871;p;1|1:113|5:19|3:872|15:767|16:873|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:124|10:794;9|9:237|10:874;p;1|1:113|5:19|3:875|15:876|16:877|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:84|3:878|15:787|16:879|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:124|10:880;9|9:260|10:881;p;1|1:113|5:19|3:882|15:808|16:883|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:884;p;1|1:113|3:885|15:787|16:886|4:247|27:25|17:157|18:25;n;11|24:25;9|9:256|10:887;4|9:258|10:888;9|9:260|10:889;p;1|5:84|3:890|15:767|16:891|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:892;9|9:265|10:893;9|9:221|10:894;9|9:268|10:895;9|9:265|10:896;9|9:10|10:897;p;1|5:32|3:898|15:823|16:899|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:900;9|9:270|10:901;p;1|5:19|3:902|15:787|16:903|4:213|17:24|18:214|5:19|5:19;n;9|9:904|10:905;9|9:260|10:906;p;1|1:113|5:9|3:907|15:908|16:909|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:910;9|9:169|10:911;9|9:171|10:912;p;1|1:113|5:84|3:913|15:767|16:914|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:15'
  7318. ..'8|10:915;9|9:158|10:916;9|9:162|10:917;9|9:160|10:918;9|9:162|10:919;9|9:158|10:920;p;1|1:113|5:19|3:921|15:922|16:923|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:924|15:767|16:925|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:217|10:926;9|9:306|10:927;4|9:340|10:928;p;1|5:19|3:929|15:787|16:930|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:931;9|9:318|10:932;9|9:124|10:870;9|9:124|10:933;9|9:904|10:934;p;1|1:113|5:84|3:935|15:845|16:936|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:19|3:937|15:938|16:939|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:940;9|9:178|10:941;p;1|1:113|5:19|3:942|15:808|16:943|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:944;9|9:178|10:945;9|9:391|10:946;p;1|1:113|5:19|3:947|15:876|16:948|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:949|15:938|16:950|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:951;9|9:252|10:952;9|9:119|10:953;p;1|1:113|5:32|3:954|15:767|16:955|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|1:113|5:84|3:956|15:845|16:957|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:958;p;1|5:19|3:959|15:767|16:960|4:349|31:7|5:19|5:19;n;4|9:350|10:961;9|9:158|10:962;p;1|1:113|5:84|3:963|15:845|16:964|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:965;9|9:258|10:966;p;1|1:113|5:19|3:967|15:922|16:968|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:969;9|9:308|10:970;9|9:904|10:971;9|9:904|10:972;9|9:904|10:973;4|9:303|10:974;p;1|1:113|5:9|3:975|15:908|16:976|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:162|10:977;p;1|1:113|5:19|3:978|15:839|16:979|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:980;p;1|1:113|5:84|3:981|15:982|16:983|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:984|15:767|16:985|4:349|31:7|5:19|5:19;n;4|9:350|10:986;9|9:162|10:987;4|9:353|10:988;p;1|'
  7319. ..'1:113|5:380|30:187|14:381|3:989|15:938|16:990|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:991;9|9:178|10:992;p;1|1:113|5:32|3:993|15:938|16:994|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;2;n;1|2:2|5:131|14:395|3:995|15:996|4:398|5:131|5:131;n;4|9:141|10:997;p;1|2:2|5:131|14:395|3:998|15:21|4:398|5:131|5:131;1|1:403|2:2|5:404|3:999|15:1000|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1001|15:996|4:414|5:131|5:131;n;4|9:141|10:1002;p;1|2:2|5:131|14:395|3:1003|15:21|4:398|5:131|5:131;n;4|9:141|10:1004;p;1|2:2|5:131|14:395|3:1005|15:996|4:419|18:24|5:131|5:131;n;4|9:258|10:1006;p;7|1:420;p;1|1:421|2:2|5:19|3:1007|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1008|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1009|15:996|4:427;n;4|9:428|10:1010;p;1|2:2|3:1011|15:996|4:467;n;4|9:428|10:1012;4|9:468|10:1013;p;1|2:2|3:1014|15:21|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:1015;p;1|2:2|3:1016|15:153|4:15;n;4|9:428|10:1017;p;1|1:421|2:2|5:460|14:461|3:1018|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1019|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1020|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1021|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1022|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1023|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1024|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1025|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5'
  7320. ..':424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1026|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1027|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1028|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1029|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1030|15:996|4:15;n;4|9:428|10:1031;p;1|1:421|2:2|3:1032|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1033|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1034|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1035|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1036|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1037|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1038|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1039|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1040|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1041|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1042|15:21|4:467;n;4|9:428|10:1043;p;1|1:421|2:2|5:19|3:1044|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1045|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1046|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1047|15:153|4:427;n;4|9:428|10:429;p;1|1:421|2:2|5:'
  7321. ..'19|3:1048|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1049|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1050|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1051|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1052|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1053|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1054|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1055|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1056|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1057|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1058|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1059|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1060|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1061|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1062|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1063|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1064|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1065|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1066|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3'
  7322. ..':1067|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1068|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1069|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1070|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1071|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1072|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1073|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1074|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1075|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1076|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1077|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1078|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1079|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1080|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1081|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1082|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1083|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1084|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1085|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450'
  7323. ..';p;1|1:421|2:2|5:19|3:1086|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1087|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1088|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1089|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1090|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1091|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1092|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1093|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1094|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1095|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1096|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1097|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1098|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1099|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1100|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1101|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1102|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1103|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1104|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:'
  7324. ..'421|2:2|5:19|3:1105|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1106|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1107|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1108|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1109|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1110|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1111|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1112|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1113|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1114|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1115|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1116|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1117|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1118|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1119|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1120|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1121|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1122|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1123|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3'
  7325. ..':1124|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1125|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1126|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1127|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1128|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1129|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1130|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1131|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1132|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1133|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1134|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1135|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1136|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1137|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1138|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1139|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1140|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1141|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1142|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1143|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7'
  7326. ..':8|8:425|5:424|5:424;p;1|1:421|2:2|3:1144|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1145|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1146|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1147|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1148|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1149|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1150|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1151|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1152|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1154|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1155|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1156|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1157|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1158|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1159|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1160|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1161|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1162|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2'
  7327. ..'|5:19|3:1163|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1164|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1165|15:21|4:584|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1166|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1167|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1168|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1169|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1170|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1171|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1172|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1173|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1174|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1175|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1176|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1177|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1178|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1179|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1180|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1181|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1182|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7'
  7328. ..'|1:450;p;1|1:421|2:2|5:19|3:1183|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1184|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1185|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1186|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1187|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1188|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1189|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1190|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1191|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1192|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1193|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1194|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1195|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1196|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1197|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1198|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1199|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1200|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1201|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1202|1'
  7329. ..'5:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1203|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1204|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1205|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1206|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1207|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1208|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1209|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1210|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1211|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1212|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1213|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1214|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1215|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1216|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1217|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1219|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1220|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1221|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1222|15:325|4:423|17:24|18:24|5:19|5:19;n;'
  7330. ..'3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1223|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1224|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1225|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1226|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1227|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1228|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1229|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1230|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1231|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1232|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1233|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1234|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1235|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1236|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1237|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1238|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1239|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1240|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2'
  7331. ..'|5:19|3:1241|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1242|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1243|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1244|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1245|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1246|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1247|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1248|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1249|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1250|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1251|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:460|14:461|3:1252|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1253|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1254|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1255|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1256|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1257|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1258|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1259|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1260|'
  7332. ..'15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1261|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1262|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1263|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1264|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1265|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1266|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1267|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1268|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1269|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1270|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:1271;4|9:10|10:1272;4|9:10|10:1273;p;1|1:421|2:2|3:1274|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1275|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1276|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1277|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1278|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1279|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1280|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1281|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:'
  7333. ..'19|3:1282|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1283|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|5:131|14:395|3:1284|15:1285|4:398|5:131|5:131;1|2:2|5:131|14:395|3:1286|15:1287|4:398|5:131|5:131;1|1:403|2:2|5:404|3:1288|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1290|15:1285|4:414|5:131|5:131;1|2:2|5:131|14:395|3:1291|15:1287|4:398|5:131|5:131;1|2:2|5:131|14:395|3:1292|15:1285|4:419|18:24|5:131|5:131;n;4|9:258|10:1293;4|9:258|10:1294;4|9:258|10:1295;4|9:258|10:1296;p;7|1:420;p;1|2:2|3:1297|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1298|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;p;10|5:32|3:1299|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1301|15:153|16:1302|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1303|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1305|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1307|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:1309|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;9|9:185|10:1311;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12'
  7334. ..'|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1312|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:1315|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:1317;9|9:124|10:125;p;1|1:113|5:32|3:1318|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:158|10:1320;p;1|1:113|5:131|3:1321|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1324;p;1|1:113|5:19|3:1325|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1327;p;1|1:113|5:19|3:1328|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:1330|15:297|16:1331|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:19|3:1332|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:1334;p;1|1:113|5:84|3:1335|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1337;9|9:162|10:1338;9|9:162|10:1339;9|9:162|10:1340;9|9:160|10:161;9|9:160|10:164;9|9:158|10:159;9|9:158|10:1341;9|9:158|10:1342;9|9:162|10:1343;9|9:158|10:1344;p;1|1:113|5:9|3:1345|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:1347|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:1349;9|9:178|10:179;p;1|1:113|5:9|3:1350|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:131|30:187|3:1352|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:1354;p;1|1:113|5:131|3:1355|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1357;9|9:158|10:199;9|9:158|10:1358;9|9:162|10'
  7335. ..':1359;9|9:158|10:202;p;1|1:113|5:32|3:1360|15:153|16:1361|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:162|10:1362;9|9:178|10:253;9|9:237|10:1363;9|9:391|10:1364;p;1|1:113|5:84|3:1365|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1367;p;1|5:19|3:1368|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;p;1|1:113|5:131|3:1370|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;p;1|1:113|5:131|30:187|3:1373|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1375|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1377;p;1|1:113|5:131|3:1378|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1380;9|9:158|10:1381;p;1|5:19|3:1382|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:1384;9|9:124|10:1385;9|9:318|10:1386;p;1|1:113|5:19|3:1387|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:162|10:1389;p;1|1:113|5:19|3:1390|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:84|3:1392|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1394;p;1|1:113|5:19|3:1395|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:253;9|9:119|10:251;p;1|1:113|3:1397|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:256|10:1399;9|9:124|10:248;4|9:258|10:259;p;1|5:84|3:1400|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:270|10:1402;9|9:10|10:267;p;1|5:32|3:1403|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;1|5:19|3:1405|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;9|9:904|10:1407;p;1|1:113|5:9|3:1408|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:84|3:1410|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:15'
  7336. ..'7;9|9:162|10:288;9|9:162|10:286;9|9:162|10:287;9|9:158|10:290;9|9:158|10:1412;9|9:160|10:295;9|9:158|10:289;9|9:160|10:1413;9|9:158|10:1414;p;1|1:113|5:19|3:1415|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:306|10:1417;9|9:217|10:302;9|9:217|10:1418;9|9:217|10:301;9|9:217|10:1419;4|9:303|10:304;9|9:308|10:1420;p;1|1:113|5:32|3:1421|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|5:19|3:1423|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1425;9|9:124|10:1426;9|9:124|10:1385;p;1|1:113|5:84|3:1427|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1430|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:1432;p;1|1:113|5:19|3:1433|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:1435|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1437;p;1|1:113|5:19|3:1438|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:1440;4|9:350|10:1441;p;1|1:113|5:32|3:1442|15:153|16:1443|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;p;1|1:113|5:84|3:1444|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:1446;9|9:252|10:1447;4|9:340|10:1448;p;1|5:19|3:1449|15:153|16:1450|4:349|31:7|5:19|5:19;1|1:113|5:84|3:1451|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:19|3:1453|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:308|10:1455;9|9:904|10:1456;p;1|1:113|5:9|3:1457|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:1459;9|9:162|10:1460;9|9:176|10:1461;p;1|1:113|5:19|3:1462|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:1464;9|9:119|10:368;4|9:350|10:1465;9|9:119|10:1466;9|9:119|10:367;p;1|1:113|5:84|3:1467|15:207|16:1468|4:344|31:7|17:157|18:25'
  7337. ..'|5:84|5:84;n;11|24:25;9|9:372|10:1469;9|9:252|10:1470;4|9:340|10:374;p;1|5:19|3:1471|15:153|16:1472|4:349|31:7|5:19|5:19;n;9|9:162|10:1473;p;1|1:113|5:380|30:187|14:381|3:1474|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:1476;p;1|1:113|5:32|3:1477|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;1|2:2|3:1479|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:1480;p;1|2:2|3:1481|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:11;4|9:10|10:1482;4|9:10|10:12;4|9:10|10:13;p;1|2:2|3:1483|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:1484|15:153|4:467;n;4|9:428|10:470;p;1|1:421|2:2|3:1485|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1486|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1487|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1488|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1489|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:460|14:461|3:1490|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1491|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1492|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1493|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1494|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1495|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1496|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1497|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5'
  7338. ..':424|5:424;p;1|1:421|2:2|5:19|3:1498|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1499|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1500|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:1501|15:21|4:427;n;4|9:428|10:1502;4|9:468|10:1503;p;2;n;1|2:2|5:131|14:395|3:1504|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:1505|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:1506|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1507|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:1508|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:1509|15:397|4:419|18:24|5:131|5:131;7|1:420;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1510|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:30;9|9:10|10:31;9|9:10|10:1511;9|9:10|10:1512;p;10|5:32|3:1513|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1514|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1515|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1516|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1517|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:1518;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|2'
  7339. ..'5:82;12|1:45|25:81;1|1:83|5:84|3:1519|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;9|9:185|10:1520;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1521|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:1522;p;1|1:113|5:84|3:1523|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:237|10:796;9|9:124|10:240;p;1|1:113|5:32|3:1524|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;p;1|1:113|5:131|3:1525|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:1526|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:119|10:1527;9|9:141|10:1528;p;1|1:113|5:19|3:1529|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:1530;p;1|1:113|5:32|3:1531|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:119|10:1522;p;1|1:113|5:19|3:1532|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:252|10:251;p;1|1:113|5:84|3:1533|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1341;p;1|1:113|5:9|3:1534|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;9|9:171|10:1536;p;1|1:113|5:19|3:1537|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:1538;9|9:176|10:177;p;1|1:113|5:9|3:1539|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:183;9|9:158|10:184;9|9:176|10:186;p;1|1:113|5:131|30:187|3:1540|15:133|16:189|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:192|10:193;p'
  7340. ..';1|1:113|5:131|3:1541|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:200;p;1|1:113|5:32|3:1542|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:1543|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:1544|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:260|10:1545;9|9:217|10:218;p;1|1:113|5:131|3:1546|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:223|10:224;9|9:221|10:222;p;1|1:113|5:131|30:187|3:1548|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1549|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|1:113|5:131|3:1550|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1551;9|9:158|10:1552;9|9:162|10:201;p;1|5:19|3:1553|15:115|16:233|4:234|17:24|18:24|5:19|5:19;n;9|9:260|10:1554;9|9:217|10:1555;p;1|1:113|5:19|3:1556|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:237|10:238;9|9:124|10:240;p;1|1:113|5:19|3:1557|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1558;9|9:119|10:1559;p;1|1:113|5:84|3:1560|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:260|10:1561;p;1|1:113|5:19|3:1562|15:137|16:250|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:1563|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;p;1|5:84|3:1564|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;1|5:32|3:1565|15:153|16:273|4:274|31:7|18:24|5:32|5:32;n;9|9:221|10:276;9|9:303|10:1566;9|9:265|10:275;9|9:265|10:1567;p;1|5:19|3:1568|15:115|16:278|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:904|10:1407;9|9:260|10:279;p;1|1:113|5:9|3:1569|15:281|16:282|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:1571;9|9:169|10:1572;p;1|1:113|5:84|3:1573|15:21|16:284|4:155|17:24|2'
  7341. ..'6:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:286;9|9:162|10:288;9|9:158|10:290;9|9:158|10:291;9|9:160|10:294;9|9:162|10:285;9|9:160|10:295;p;1|1:113|5:19|3:1574|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:301;9|9:217|10:302;9|9:308|10:309;4|9:303|10:304;9|9:217|10:305;9|9:217|10:1418;9|9:306|10:307;p;1|1:113|5:32|3:1575|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:1576|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:260|10:1554;9|9:904|10:1577;p;1|1:113|5:84|3:1578|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1579|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;p;1|1:113|5:19|3:1580|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:19|3:1581|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:332;p;1|1:113|5:19|3:1582|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1441;9|9:119|10:1440;9|9:119|10:336;9|9:119|10:337;p;1|1:113|5:32|3:1583|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:306|10:313;9|9:904|10:1584;p;1|1:113|5:84|3:1585|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;4|9:340|10:1448;9|9:345|10:346;p;1|5:19|3:1586|15:21|16:348|4:349|31:7|5:19|5:19;1|1:113|5:84|3:1587|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1588;p;1|1:113|5:19|3:1589|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:1590;9|9:904|10:1591;p;1|1:113|5:9|3:1592|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:363;p;1|1:113|5:19|3:1593|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1594;9|9:252|10:366;9|9:119|10:1466;9|9:119|10:367;9|9:119|10:368;p;1|1:113|5:84|3'
  7342. ..':1595|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;4|9:340|10:374;9|9:372|10:373;9|9:252|10:375;p;1|5:19|3:1596|15:21|16:377|4:349|31:7|5:19|5:19;1|1:113|5:380|30:187|14:381|3:1597|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;p;1|1:113|5:32|3:1598|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;p;p;p;p;1|2:2|3:1599|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;2;n;1|2:2|5:131|14:395|3:1600|15:397|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:1601|15:401|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:1602|15:406|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:1603|15:397|4:414|5:131|5:131;n;4|9:141|10:415;p;1|2:2|5:131|14:395|3:1604|15:401|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:1605|15:397|4:419|18:24|5:131|5:131;7|1:420;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:1606|15:21|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:1607;9|9:10|10:29;9|9:10|10:1608;9|9:10|10:1511;9|9:10|10:1512;p;10|5:32|3:1609|15:21|16:34|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:1610|15:21|16:39|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:1611|15:21|16:57|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:1612|15:21|16:72|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:1613|15:21|16:75|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:1518;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;'
  7343. ..'12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:1614|15:21|16:86|4:87|17:24|5:84|5:84;n;7;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:1615|15:115|16:116|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:1616|15:21|16:122|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:1617;9|9:237|10:796;9|9:124|10:240;p;1|1:113|5:32|3:1618|15:21|16:127|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;p;1|1:113|5:131|3:1619|15:133|16:134|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:270|10:1620;9|9:223|10:88;p;1|1:113|5:19|3:1621|15:137|16:138|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:119|10:1527;9|9:141|10:142;p;1|1:113|5:19|3:1622|15:137|16:145|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:32|3:1623|15:115|16:148|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1624;9|9:119|10:1522;p;1|1:113|5:19|3:1625|15:150|16:151|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:84|3:1626|15:153|16:154|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1341;9|9:162|10:163;9|9:160|10:161;p;1|1:113|5:9|3:1627|15:150|16:167|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:169|10:1628;p;1|1:113|5:19|3:1629|15:150|16:174|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:178|10:1630;9|9:391|10:1538;9|9:176|10:177;p;1|1:113|5:9|3:1631|15:150|16:181|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:176|10:186;p;1|1:113|5:131|30:187|3:1632|15:133|16:189|4:190|17:25|18:25|5:1'
  7344. ..'31|5:131;n;11|22:191;p;1|1:113|5:131|3:1633|16:195|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;p;1|1:113|5:32|3:1634|15:21|16:204|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;p;1|1:113|5:84|3:1635|15:207|16:208|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1636;p;1|5:19|3:1637|15:115|16:212|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:1545;9|9:217|10:218;p;1|1:113|5:131|3:1638|15:133|16:220|4:135|17:25|18:25|5:131|5:131;n;11;9|9:804|10:1547;9|9:223|10:224;9|9:221|10:222;p;1|1:113|5:131|30:187|3:1639|15:133|16:226|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:84|3:1640|15:207|16:229|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:1641;p;1|1:113|5:131|3:1642|16:231|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1381;9|9:158|10:1643;p;1|5:19|3:1644|15:115|16:233|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:217|10:1555;p;1|1:113|5:19|3:1645|15:21|16:236|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;9|9:124|10:125;p;1|1:113|5:19|3:1646|15:242|16:243|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1647;9|9:141|10:1558;9|9:119|10:1648;p;1|1:113|5:84|3:1649|15:115|16:246|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1650;9|9:124|10:248;4|9:258|10:259;9|9:260|10:1561;p;1|1:113|5:19|3:1651|15:137|16:250|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:1652|15:115|16:255|4:247|27:25|17:157|18:25;n;11|24:25;9|9:124|10:248;4|9:258|10:259;9|9:260|10:261;p;1|5:84|3:1653|15:21|16:263|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:265|10:896;9|9:265|10:266;9|9:265|10:1654;9|9:270|10:271;9|9:221|10:1655;9|9:10|10:267;9|9:268|10:1656;9|9:268|10:1657;p;1|5:32|3:1658|15:153|16:273|4:274|31:7|18:24|5:32|5:32;1|5:19|3:1659|15:115|16:278|4:213|17:24|18:214|5:19|5:19;1|1:113|5:9|3:1660|15:281|16:282|4:168'
  7345. ..'|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:1571;9|9:169|10:1572;p;1|1:113|5:84|3:1661|15:21|16:284|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:289;9|9:158|10:1662;9|9:162|10:285;9|9:158|10:293;9|9:160|10:1413;9|9:160|10:294;9|9:158|10:290;p;1|1:113|5:19|3:1663|15:297|16:298|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:300;9|9:217|10:1664;9|9:217|10:305;p;1|1:113|5:32|3:1665|15:21|16:311|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:306|10:313;9|9:217|10:314;p;1|5:19|3:1666|15:115|16:316|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:317;9|9:124|10:320;p;1|1:113|5:84|3:1667|15:207|16:322|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:1668|15:325|16:326|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:178|10:1669;9|9:391|10:1432;p;1|1:113|5:19|3:1670|15:137|16:329|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:1671;9|9:178|10:1538;9|9:391|10:179;p;1|1:113|5:19|3:1672|15:242|16:331|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:1673|15:325|16:334|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:1674|15:21|16:339|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|1:113|5:84|3:1675|15:207|16:343|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:1676|15:21|16:348|4:349|31:7|5:19|5:19;n;4|9:350|10:351;9|9:158|10:352;4|9:353|10:354;p;1|1:113|5:84|3:1677|15:207|16:356|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1588;p;1|1:113|5:19|3:1678|15:297|16:358|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:904|10:1679;9|9:904|10:1680;4|9:303|10:304;p;1|1:113|5:9|3:1681|15:281|16:360|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:1682|16:365|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;4|9:350|10:1594;9|9:252|10:366;9|9:119|10:1466;p;1|1:'
  7346. ..'113|5:84|3:1683|15:370|16:371|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;p;1|5:19|3:1684|15:21|16:377|4:349|31:7|5:19|5:19;n;4|9:350|10:1685;9|9:162|10:378;p;1|1:113|5:380|30:187|14:381|3:1686|15:325|16:383|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:178|10:1476;9|9:391|10:1476;p;1|1:113|5:32|3:1687|15:325|16:387|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:391|10:392;p;p;p;p;1|2:2|3:1688|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:468|10:1689;4|9:428|10:1690;p;1|2:2|3:1691|4:15;n;4|9:428|10:1692;p;1|2:2|3:1693|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:1694|15:153|4:427;n;4|9:468|10:1695;4|9:428|10:429;p;1|1:421|2:2|5:19|3:1696|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1697|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1698|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1699|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1700|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1701|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1702|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1703|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1704|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1705|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1706|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1707|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1708|15:325|4:423|17:24|'
  7347. ..'18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1709|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1710|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1711|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1712|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1713|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1714|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1715|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1716|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1717|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1718|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1719|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1720|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:460|14:461|3:1721|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1722|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1723|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1724|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1725|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1726|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1727|15:325|4:423|17:24|18:24'
  7348. ..'|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1728|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1729|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1730|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1731|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1732|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1733|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1734|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1735|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1736|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1737|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1738|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1739|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1740|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1741|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1742|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1743|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1744|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1745|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1746|15:325|4:423|17:24|18:24|5:19|5:'
  7349. ..'19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1747|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1748|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1749|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1750|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1751|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1752|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1753|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1754|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1755|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1756|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1757|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1758|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1759|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1760|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1761|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1762|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1763|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1764|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1765|1'
  7350. ..'5:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1766|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1767|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1768|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:1769|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1770|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1771|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1772|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1773|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1774|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1775|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1776|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1777|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1778|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1779|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:1781|15:1782|4:1783;1|2:2|5:1784|3:1785|15:153|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1787|15:1218|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:1790;p;1|2:2|5:1784|3:1791|15:1218|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;9|9:1789|10:1792;p;1|33:1793|3:1794|4:1795|27:25|17:2'
  7351. ..'5|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:1800|10:1801;p;1|2:2|5:1784|3:1802|15:21|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1804|15:1805|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1807|15:1805|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:1808|15:1809|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;1|2:2|5:1784|3:1812|15:1813|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;9|9:1800|10:1815;p;1|1:421|2:2|5:19|3:1816|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1817|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1818|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1819|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1820|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1821|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1822|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1823|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1824|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1825|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1826|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1827|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1828|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:'
  7352. ..'425|5:424|5:424;p;1|1:421|2:2|5:19|3:1829|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1830|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:1780|2:2|3:1831|15:1832|4:1783;1|1:1780|2:2|3:1833|15:1834|4:1783;1|1:1780|2:2|3:1835|15:1836|4:1783;1|1:1780|2:2|3:1837|15:1838|4:1783;1|1:1780|2:2|3:1839|15:1840|4:1783;1|1:1780|2:2|3:1841|15:1842|4:1783;1|1:421|2:2|3:1843|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:1844|15:1845|4:1783;1|1:1780|2:2|3:1846|15:1847|4:1783;1|5:1848|14:395|3:1849|15:1850|16:1851|4:1852|5:1848|5:1848;1|1:421|2:2|3:1853|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:1854|16:1855|4:1852|5:1848|5:1848;1|1:421|2:2|3:1856|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|5:131|3:1858|15:1859|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;18|5:84|3:1862|15:115|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|1:421|2:2|3:1865|15:1866|4:1867|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1868|15:1869|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:1871|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1872|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1873|15:325|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1874|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1875|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|2:2|3:1876|15:1866|4:1877|17:24;1|1:421|2:2|3:1878|15:1866|4:1879|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1880|15:1218|4:1881|17:24|18:24;n;3|5:424|4:6|6:7|7:'
  7353. ..'8|8:425|5:424|5:424;p;1|1:421|2:2|3:1882|15:1883|4:1884|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1885|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1886|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1887|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1888|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1889|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1890|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:1891|15:1892|16:1893|4:1852|5:1848|5:1848;1|1:421|2:2|5:19|3:1894|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1895|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1896|15:115|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1898|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1899|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1900|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1901|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1902|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1903|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1904|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1905|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1906|15:563|4:423|17:24|18:2'
  7354. ..'4|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1907|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1908|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1909|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:1910|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1911|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:1912|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1913|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1914|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1915|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:1916|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1917|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1918|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1919|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:1920|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1921|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1922|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1926;p;19|5:84|3:1927|4:1923|5:84|5:84;19|5:84|3:1928|4:1923|5:84|5:84;n;4|9:1929|10:1930;p;19|5:84|3:1931|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;p;19|5:84|3:1932|4:1923|5:84|5:84;n;4|9:904|10:1926;4|9:1924|10:1933;p;19|5:84|3:1934|4:1923'
  7355. ..'|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;19|5:84|3:1935|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:1936|4:1923|5:84|5:84;19|5:84|3:1937|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;4|9:1924|10:1925;p;19|5:84|3:1938|4:1923|5:84|5:84;19|5:84|3:1939|4:1923|5:84|5:84;n;4|9:1924|10:1925;p;19|5:84|3:1940|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1941;4|9:904|10:1942;p;19|5:84|3:1943|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1942;4|9:1924|10:1925;p;19|5:84|3:1944|4:1923|5:84|5:84;1|1:421|2:2|3:1945|15:1809|4:1946|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1947|4:1923|5:84|5:84;n;4|9:1929|10:1941;p;19|5:84|3:1948|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:1924|10:1925;p;1|1:421|2:2|3:1949|15:537|4:1950|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:1951|10:1952;9|9:1951|10:1953;p;19|5:84|3:1954|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:1929|10:1941;p;19|5:84|3:1955|4:1923|5:84|5:84;1|1:421|2:2|3:1956|15:537|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1957|15:537|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:1958|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:1959|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;19|5:84|3:1960|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:217|10:1961;p;19|5:84|3:1962|4:1923|5:84|5:84;n;4|9:217|10:1963;p;19|5:84|3:1964|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:217|10:1961;p;19|5:84|3:1965|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;1|1:421|2:2|3:1966|15:1809|4:1967|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1968|4:1923|5:84|5:84;n;4|9:217|10:1969;p;19|5:84|3:1970|4:1923|5:84|5:84;19|5:84|3:1971|4:1923|5:84|5:84;19|5:84|3:1972|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;4|9:217|10:1961;p;19|5:84|3:1973|4:1923|5:84|5:84;n;4|9:1929|10:19'
  7356. ..'30;4|9:217|10:1963;4|9:1924|10:1925;p;19|5:84|3:1974|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:1924|10:1925;p;19|5:84|3:1975|4:1923|5:84|5:84;n;4|9:217|10:1961;4|9:1924|10:1933;p;19|5:84|3:1976|4:1923|5:84|5:84;n;4|9:1929|10:1930;p;19|5:84|3:1977|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:217|10:1961;p;19|5:84|3:1978|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:1979|4:1923|5:84|5:84;19|5:84|3:1980|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1941;4|9:217|10:1961;p;19|5:84|3:1981|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:217|10:1963;p;19|5:84|3:1982|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:217|10:1963;4|9:1924|10:1933;p;19|5:84|3:1983|4:1923|5:84|5:84;19|5:84|3:1984|4:1923|5:84|5:84;19|5:84|3:1985|4:1923|5:84|5:84;n;4|9:217|10:1961;4|9:1929|10:1941;4|9:1924|10:1933;p;19|5:84|3:1986|4:1923|5:84|5:84;19|5:84|3:1987|4:1923|5:84|5:84;n;4|9:217|10:1963;4|9:1929|10:1930;p;19|5:84|3:1988|4:1923|5:84|5:84;n;4|9:217|10:1963;p;1|1:421|2:2|3:1989|15:1809|4:1946|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:1990|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:1929|10:1930;4|9:217|10:1963;p;1|5:1848|14:395|3:1991|15:153|16:1992|4:1852|5:1848|5:1848;1|1:1993|3:1994|15:1995|16:1996|4:1997|17:24|18:24;n;11|22:1998|23:1999|34:2000|24:43;p;18|2:2|3:2001|15:537|4:1877|17:24;19|5:84|3:2002|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:1929|10:1930;p;19|5:84|3:2003|4:1923|5:84|5:84;n;4|9:904|10:1926;p;19|5:84|3:2004|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1926;p;19|5:84|3:2005|4:1923|5:84|5:84;19|5:84|3:2006|4:1923|5:84|5:84;19|5:84|3:2007|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1942;p;19|5:84|3:2008|4:1923|5:84|5:84;n;4|9:1924|10:1925;p;19|5:84|3:2009|4:1923|5:84|5:84;n;4|9:1924|10:1925;4|9:904|10:1942;4|9:1929|10:1930;p;19|5:84|3:2010|4:1923|5:84|5:84;n;4|9:1924|10:1933;4|9:904|10:1926;p;19|5:84|3:2011|4:1923|5:84|5:84;n;4|9:1924|10:1933;p;19|5:84|3:201'
  7357. ..'2|4:1923|5:84|5:84;n;4|9:1929|10:1930;4|9:904|10:1942;p;19|5:84|3:2013|4:1923|5:84|5:84;1|2:2|3:2014|15:2015|4:2016;n;15|22:2017;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|3:2019|15:2020|4:2021|18:24;1|2:2|3:2022|15:2023|4:2024;n;16|22:2025;p;1|2:2|5:84|33:1793|3:2026|4:2027|18:24|5:84|5:84;n;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|3:2028|15:2020|4:2029;n;16;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|2:2|5:84|3:2030|15:2020|4:2031|18:24|5:84|5:84;n;4|9:1789|10:2032;p;1|2:2|5:84|33:1793|3:2033|4:2034|5:84|5:84;19|5:84|3:2035|15:2036|4:1923|5:84|5:84;n;4|9:2037|10:2038;4|9:1924|10:1925;4|9:169|10:2039;p;19|5:84|3:2040|15:2036|4:1923|5:84|5:84;19|5:84|3:2041|15:2036|4:1923|5:84|5:84;19|5:84|3:2042|15:2036|4:1923|5:84|5:84;19|5:84|3:2043|15:2036|4:1923|5:84|5:84;n;4|9:2037|10:2044;4|9:1929|10:2045;p;1|1:421|2:2|3:2046|15:21|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|2:2|33:1793|3:2047|15:2048|4:2024;n;16|22:2025;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|33:1793|3:2049|15:996|4:1795|27:25|17:25|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:1800|10:2050;9|9:2051|10:2052;9|9:185|10:2053;p;18|2:2|3:2054|15:115|4:1877|17:24;1|1:421|2:2|3:2055|15:1883|4:2056|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2057|15:1883|4:2058|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2059|15:1883|4:2060|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2061|15:2062|16:2063|4:1852|5:1848|5:1848;1|1:421|2:2|3:2064|15:537|4:2065|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2066|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1848|30:2067|14:2068|3:2069|15:2070|4:2071|17:24|18:24|5:1848|5:1848;n;7;11|22:2072|24:129;20|35:2073;7;15;p;1|1:421|2:2|3:2074|15:1809|4:1967|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:'
  7358. ..'425|5:424|5:424;p;1|2:2|5:84|33:1793|3:2075|15:2076|4:2077|5:84|5:84;n;15|22:2078;p;1|1:421|2:2|5:19|3:2079|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2080|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2081|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2082|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2083|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2084|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2085|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2086|15:115|4:1897|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2087|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2088|15:21|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|5:460|14:461|3:2089|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;18|5:131|3:2090|15:2091|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;1|2:2|5:1784|3:2092|15:2093|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|3:2094|15:1883|4:2095|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2096|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2097|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2098|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2099|15:537|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:2100;p;1|2:2|5:1784|3:2101|15:2070|4:1810|17:24|18:24|5:1784|'
  7359. ..'5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;18|5:84|3:2102|15:297|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|2:2|5:1784|3:2103|15:2104|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;p;1|2:2|3:2105|4:2106;n;15|22:2107;p;1|1:421|2:2|5:19|3:2108|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2109|15:2110|16:2111|4:1852|5:1848|5:1848;1|2:2|5:1784|3:2112|15:2093|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2113|15:153|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|1:421|2:2|3:2114|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2115|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2116|15:537|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;9|9:1789|10:2117;p;1|1:421|2:2|3:2118|15:537|4:1881|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2119|15:115|4:2120|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2121|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1848|30:2067|14:2068|3:2122|15:2070|4:2071|17:24|18:24|5:1848|5:1848;n;7;11|22:2072|24:129;20|35:2073;7;15;p;1|1:421|2:2|5:19|3:2123|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2124|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2125|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2126|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2127|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:4'
  7360. ..'21|2:2|5:19|3:2128|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2129|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2130|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2131|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2132|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2133|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2134|15:325|4:582|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2135|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2136|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2137|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2138|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:2139|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2140|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2141|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;19|5:84|3:2142|4:1923|5:84|5:84;n;4|9:1929|10:1941;4|9:217|10:1961;4|9:1924|10:1925;p;19|5:84|3:2143|4:1923|5:84|5:84;n;4|9:217|10:1963;p;19|5:84|3:2144|4:1923|5:84|5:84;n;4|9:1929|10:1941;p;19|5:84|3:2145|15:2036|4:1923|5:84|5:84;n;4|9:169|10:2146;4|9:1929|10:2147;p;1|2:2|5:84|3:2148|15:2020|4:2149|18:24|5:84|5:84;1|2:2|3:2150|15:2151|4:2152;n;15|22:2078;3|5:2018|4:6|6:7|7:8|8:9|5:2018|5:2018;p;1|1:421|2:2|5:19|3:2153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:42'
  7361. ..'4|5:424;p;1|1:421|2:2|5:19|3:2154|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|5:1848|14:395|3:2155|16:2156|4:1852|5:1848|5:1848;1|1:421|2:2|3:2157|15:537|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2158|15:2159|4:2152;n;15|22:2078;p;1|1:421|2:2|5:19|3:2160|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2161|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2162|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2163|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2164|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2165|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2166|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2167|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2168|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|3:2169|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2170|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2171|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2172|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2173|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2174|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2175|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2176|15:325|4:423|17:24'
  7362. ..'|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2177|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2178|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2179|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2180|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2181|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2182|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2183|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2184|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2185|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2186|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2187|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2188|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2189|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2190|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2191|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2192|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2193|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2194|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:42'
  7363. ..'4;p;1|1:421|2:2|5:19|3:2195|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2196|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2197|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2198|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2199|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|3:2200|15:325|4:560|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2201|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2202|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2203|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2204|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2205|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2206|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2207|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2208|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2209|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2210|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2211|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2212|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2213|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460'
  7364. ..'|14:461|3:2214|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2215|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2216|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2217|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2218|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2219|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2220|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2221|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2222|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2223|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2224|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2225|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2226|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2227|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2228|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2229|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2230|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2231|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2232|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19'
  7365. ..'|3:2233|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2234|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2235|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2236|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2237|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:2238;p;1|2:2|3:2239|15:996|4:15;n;4|9:468|10:2240;p;1|2:2|3:2241|15:21|4:467;n;4|9:468|10:2242;p;1|1:421|2:2|5:19|3:2243|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2244|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2245|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2246|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2247|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2248|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2249|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2250|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2251|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2252|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2253|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2254|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2255|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2256|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:'
  7366. ..'2|5:19|3:2257|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2258|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2259|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2260|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2261|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2262|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2263|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2264|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2265|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2266|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2;n;1|2:2|5:131|14:395|3:2267|15:1285|4:398|5:131|5:131;n;4|9:141|10:399;p;1|2:2|5:131|14:395|3:2268|15:1287|4:398|5:131|5:131;n;4|9:141|10:402;p;1|1:403|2:2|5:404|3:2269|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:2270|15:1285|4:414|5:131|5:131;n;4|9:141|10:2271;p;1|2:2|5:131|14:395|3:2272|15:1287|4:398|5:131|5:131;n;4|9:141|10:417;p;1|2:2|5:131|14:395|3:2273|15:1285|4:419|18:24|5:131|5:131;7|1:420;p;1|2:2|3:2274|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:2275;4|9:192|10:2276;4|9:192|10:2277;4|9:192|10:2278;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:2279|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:2280;9|9:10|10:2281;9|9:10|10:2282;p;10|5:32|3:2283|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;n;9|9:192|10:2284;p;1|1:36|5:37|3:2285|15:153|16:1302|4:40|17:24|21:25'
  7367. ..'|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:2286|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:2287|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;1|1:73|5:37|3:2288|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:2289|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:2290|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:84|3:2291|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:237|10:796;p;1|1:113|5:32|3:2292|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:178|10:253;9|9:158|10:1320;9|9:237|10:799;9|9:391|10:1364;p;1|1:113|5:131|3:2293|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;p;1|1:113|5:19|3:2294|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;p;1|1:113|5:19|3:2295|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:2296;p;1|1:113|5:32|3:2297|15:297|16:1331|4:117|27'
  7368. ..':25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;p;1|1:113|5:19|3:2298|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:2299;9|9:252|10:251;p;1|1:113|5:84|3:2300|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:160|10:165;9|9:158|10:159;9|9:158|10:1342;9|9:162|10:2301;9|9:158|10:2302;p;1|1:113|5:9|3:2303|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;9|9:171|10:172;p;1|1:113|5:19|3:2304|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|5:9|3:2305|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:185|10:125;9|9:158|10:184;9|9:176|10:2306;9|9:158|10:2307;p;1|1:113|5:131|30:187|3:2308|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;p;1|1:113|5:131|3:2309|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;9|9:158|10:1357;9|9:158|10:202;p;1|1:113|5:32|3:2310|15:153|16:1361|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:178|10:253;9|9:391|10:1364;p;1|1:113|5:84|3:2311|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:2312|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;1|1:113|5:131|3:2313|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;9|9:221|10:2314;p;1|1:113|5:131|30:187|3:2315|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:2316|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;p;1|1:113|5:131|3:2317|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:1643;p;1|5:19|3:2318|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:124|10:1385;p;1|1:113|5:19|3:2319|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2320|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|2'
  7369. ..'4:25;9|9:141|10:1647;9|9:119|10:1648;9|9:141|10:244;p;1|1:113|5:84|3:2321|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:260|10:1561;9|9:256|10:1394;9|9:124|10:248;4|9:258|10:259;p;1|1:113|5:19|3:2322|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;p;1|1:113|3:2323|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:124|10:248;4|9:258|10:259;p;1|5:84|3:2324|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:1656;9|9:265|10:266;9|9:10|10:267;p;1|5:32|3:2325|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;n;9|9:265|10:2326;p;1|5:19|3:2327|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;1|1:113|5:9|3:2328|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:169|10:1572;9|9:171|10:2329;p;1|1:113|5:84|3:2330|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:290;9|9:160|10:295;9|9:162|10:2331;9|9:158|10:1412;9|9:160|10:1413;9|9:158|10:289;9|9:158|10:293;9|9:162|10:286;9|9:160|10:294;9|9:158|10:1414;p;1|1:113|5:19|3:2332|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;9|9:217|10:302;9|9:306|10:1417;9|9:217|10:301;9|9:217|10:1419;9|9:308|10:1420;4|9:303|10:304;p;1|1:113|5:32|3:2333|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;p;1|5:19|3:2334|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;1|1:113|5:84|3:2335|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:2336|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:391|10:1432;p;1|1:113|5:19|3:2337|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:179;9|9:178|10:266;p;1|1:113|5:19|3:2338|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2339|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:2340|15:153|16:1443|4:312'
  7370. ..'|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:2341;p;1|1:113|5:84|3:2342|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:345|10:1446;9|9:252|10:1447;p;1|5:19|3:2343|15:153|16:1450|4:349|31:7|5:19|5:19;n;9|9:158|10:2344;4|9:350|10:2345;4|9:353|10:354;p;1|1:113|5:84|3:2346|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:2347;p;1|1:113|5:19|3:2348|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;9|9:306|10:1417;9|9:904|10:1591;9|9:308|10:1455;9|9:904|10:1679;9|9:904|10:2349;4|9:303|10:304;9|9:904|10:1456;p;1|1:113|5:9|3:2350|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:2351|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:119|10:368;9|9:119|10:1466;9|9:119|10:367;p;1|1:113|5:84|3:2352|15:207|16:1468|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:372|10:1469;p;1|5:19|3:2353|15:153|16:1472|4:349|31:7|5:19|5:19;n;9|9:162|10:1473;4|9:350|10:1685;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:2354|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:391|10:1476;p;1|1:113|5:32|3:2355|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:391|10:392;p;p;p;p;1|2:2|3:2356|15:153|4:467;n;4|9:468|10:469;4|9:428|10:470;p;1|1:1780|2:2|3:2357|15:2358|4:1783;1|1:1780|2:2|3:2359|15:2360|4:1783;1|1:1780|2:2|3:2361|15:2362|4:1783;1|1:1780|2:2|3:2363|15:2364|4:1783;1|1:1780|2:2|5:32|3:2365|15:2366|4:2367|17:24|18:24|5:32|5:32;n;11|22:2368|24:157;p;1|1:1780|2:2|3:2369|15:2370|4:1783;1|1:1780|2:2|3:2371|15:2372|4:1783;1|1:1780|2:2|3:2373|15:2374|4:1783;1|1:1780|2:2|3:2375|4:2376|17:24|18:24;n;15;p;1|1:1780|2:2|3:2377|4:2378|17:24|18:24;n;15;p;1|1:1780|2:2|3:2379|4:2380|17:24|18:24;1|1:1780|2:2|3:2381|15:21|4:2380|17:24|18:24;1|1:1780|2:2|3:2382|4:2376|17:24|18:24;n;15;p;1|1:1780|2:2|3:2383|15:2384|4:1783;1|1:1780|2:2|3:2385|15:2386|4'
  7371. ..':1783;1|1:1780|2:2|3:2385|15:2387|4:1783;1|1:1780|2:2|3:2388|15:2389|4:1783;1|1:1780|2:2|3:2385|15:2390|4:1783;1|1:1780|2:2|3:2385|15:2391|4:1783;1|1:1780|2:2|3:2392|15:2393|4:1783;1|1:1780|2:2|3:2394|15:2395|4:1783;1|1:1780|2:2|3:2396|15:2397|4:1783;1|1:1780|2:2|3:2385|15:2398|4:1783;1|1:1780|2:2|3:2385|15:2399|4:1783;1|1:1780|2:2|3:2400|15:2401|4:1783;1|1:1780|2:2|3:2385|15:2402|4:1783;1|1:1780|2:2|3:2403|15:325|4:2380|17:24|18:24;1|1:1780|2:2|3:2404|15:2405|4:1783;1|1:1780|2:2|3:2406|15:2407|4:1783;1|1:1780|2:2|3:2408|15:2409|4:1783;1|1:1780|2:2|3:2410|15:2411|4:1783;1|1:1780|2:2|3:2385|15:2412|4:1783;1|1:1780|2:2|3:2413|15:2414|4:1783;1|1:1780|2:2|3:2415|15:2416|4:1783;1|1:1780|2:2|3:2385|15:2417|4:1783;1|1:1780|2:2|3:2385|15:2418|4:1783;1|1:1780|2:2|3:2385|15:2419|4:1783;1|1:1780|2:2|3:2420|15:2421|4:1783;1|1:1780|2:2|3:2422|15:2423|4:1783;1|1:1780|2:2|3:2385|15:2424|4:1783;1|1:1780|2:2|3:2425|15:2426|4:1783;1|1:1780|2:2|3:2385|15:2427|4:1783;1|1:1780|2:2|3:2428|15:2429|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2430|15:2431|4:1783;1|1:1780|2:2|3:2432|15:2433|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2434|15:325|4:2435|17:24|18:24;n;16;p;1|1:1780|2:2|3:2436|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2438|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2439|15:325|4:2437|17:24|18:24;n;16;p;1|1:1780|2:2|3:2440|4:2378|17:24|18:24;n;15;9|9:345|10:2441;p;1|1:1780|2:2|3:2442|15:2443|4:1783;1|1:1780|2:2|3:2444|15:325|4:2435|17:24|18:24;n;16;p;1|1:1780|2:2|3:2445|15:2446|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2447|15:2448|4:1783;1|1:1780|2:2|3:2449|15:2450|4:1783;1|1:1780|2:2|3:2451|15:2452|4:1783;1|1:1780|2:2|3:2453|15:2454|4:2376|17:24|18:24;n;16;p;1|1:1780|2:2|3:2455|15:2456|4:1783;1|1:1780|2:2|3:2457|15:325|4:2437|17:24|18:24;n;16;p;1|1:421|2:2|3:2458|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:1780|2:2|3:2459|15:246'
  7372. ..'0|4:1783;1|1:1780|2:2|3:2385|15:2461|4:1783;1|1:1780|2:2|3:2462|15:2463|4:1783;1|1:1780|2:2|3:2385|15:2464|4:1783;1|1:1780|2:2|3:2385|15:2465|4:1783;1|1:1780|2:2|3:2385|15:2466|4:1783;1|1:1780|2:2|3:2467|15:2468|4:1783;1|1:1780|2:2|3:2385|15:2469|4:1783;1|1:1780|2:2|3:2470|15:2471|4:1783;1|1:1780|2:2|3:2472|15:2473|4:1783;1|1:1780|2:2|3:2385|15:2474|4:1783;1|1:1780|2:2|3:2385|15:2475|4:1783;1|1:1780|2:2|3:2385|15:2476|4:1783;1|1:1780|2:2|3:2477|15:2478|4:1783;1|1:1780|2:2|3:2385|15:2479|4:1783;1|1:1780|2:2|3:2480|15:2481|4:1783;1|1:1780|2:2|3:2482|15:2483|4:1783;1|1:1780|2:2|3:2484|15:2485|4:1783;1|1:1780|2:2|3:2385|15:2486|4:1783;1|1:1780|2:2|3:2487|15:2488|4:1783;1|1:1780|2:2|3:2385|15:2489|4:1783;1|1:1780|2:2|3:2385|15:2490|4:1783;1|1:1780|2:2|3:2385|15:2491|4:1783;1|1:1780|2:2|3:2385|15:2492|4:1783;1|1:1780|2:2|3:2493|15:2494|4:1783;1|1:1780|2:2|3:2495|15:2496|4:1783;1|1:1780|2:2|3:2497|15:2498|4:1783;1|1:1780|2:2|3:2499|15:2500|4:1783;1|1:1780|2:2|3:2385|15:2501|4:1783;1|1:1780|2:2|3:2385|15:2502|4:1783;1|5:1848|14:395|3:2503|15:2504|16:2505|4:1852|5:1848|5:1848;1|1:1780|2:2|3:2506|15:21|4:2507|36:24|17:24|18:24;1|1:1780|2:2|3:2508|15:2509|4:1783;1|1:1780|2:2|3:2385|15:2510|4:1783;1|1:1780|2:2|3:2511|15:2512|4:2367|17:24|18:24;n;16|37:2504|22:2513;p;1|1:1780|2:2|3:2514|15:2515|4:1783;1|1:1780|2:2|3:2516|15:21|4:2380|17:24|18:24;1|1:1780|2:2|3:2517|4:2376|17:24|18:24;n;15;p;1|1:421|2:2|3:2518|15:2519|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:1780|2:2|3:2520|4:2376|17:24|18:24;n;15;9|9:162|10:2521;p;1|1:1780|2:2|3:2522|15:2366|4:2367|17:24|18:24;n;16|37:2523|22:2524;p;18|5:84|3:2525|15:370|4:1863|27:25|17:25|32:25|21:25|26:25|18:25|5:84|5:84;n;13|28:1864;p;1|33:1793|3:2526|15:21|4:1795|27:25|17:25|32:25|21:25|26:25|18:25;n;17|1:1796|9:1797|10:1798;17|1:1796|9:1797|10:1799;9|9:2527|10:2528;p;1|1:421|2:2|3:2529|15:1883|4:730|17'
  7373. ..':24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:318|10:2530;p;18|5:131|3:2531|15:2532|4:1860|27:25|17:25|32:25|21:25|26:25|18:25|5:131|5:131;n;13|28:1861;p;1|5:1848|14:395|3:2533|15:2534|16:2535|4:1852|5:1848|5:1848;1|2:2|5:1784|3:2536|15:150|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2537|15:996|4:1803|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2538|15:2539|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1814|29:214;9|9:1800|10:2540;p;1|2:2|5:1784|3:2541|15:115|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;7|1:450;p;1|1:421|2:2|5:19|3:2542|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2543|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2544|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2545|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2546|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2547|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2548|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2549|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2550|15:115|4:1788|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1789|10:2551;p;1|2:2|5:1784|3:2552|15:150|4:1806|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;p;1|2:2|5:1784|3:2553|4:389|17:25|18:24|5:1784|5:1784;n;11|24:25;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;9|9:1951|10:2554;p;1|1:421|2:2|3:2555|15:1883|4:2376|17:24|18:24;n;3|5:424|4'
  7374. ..':6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|5:1784|3:2556|15:1883|4:1810|17:24|18:24|5:1784|5:1784;n;3|5:1786|4:6|6:7|7:8|8:425|5:1786|5:1786;13|28:1811|29:214;p;18|2:2|3:2557|15:1218|4:1877|17:24;1|5:1848|14:395|3:2558|15:153|16:2559|4:1852|5:1848|5:1848;1|1:421|2:2|3:2560|15:115|4:2561|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2562|15:115|4:175|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2563|15:2564|4:1870|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|5:1848|14:395|3:2565|15:2566|16:2567|4:1852|5:1848|5:1848;1|5:1848|14:395|3:2568|15:2504|16:2569|4:1852|5:1848|5:1848;1|1:421|2:2|3:2570|15:537|4:1857|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2571|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2572|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2573|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2574|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2575|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2576|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2577|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2578|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2579|15:21|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|2:2|3:2580|15:21|4:427;n;4|9:468|10:1503;p;1|2:2|3:2581|4:15;n;4|9:468|10:2582;4|9:428|10:1692;p;1|2:2|3:2583|15:996|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:428|10:1690;p;1|1:1780|2:2|3:2584|15:2585|4:1783;1|1:1780|2:2|3:2586|15:2587|4:1783;1|1:1780|2:2|3:2588|15:2589|4:1783;1|1:1780|2:2|3:2590'
  7375. ..'|15:2591|4:1783;1|1:1780|2:2|3:2592|15:2593|4:1783;1|1:1780|2:2|3:2594|15:2595|4:1783;1|1:1780|2:2|3:2596|15:2597|4:1783;1|1:421|2:2|5:19|3:2598|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2599|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2600|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2601|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2602|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2603|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2604|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2605|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2606|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2607|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2608|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2609|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2610|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2611|15:996|4:15;1|2:2|3:2612|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:468|10:2613;p;1|1:421|2:2|5:19|3:2614|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2615|15:325|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2616|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2617|15:153|4:423|1'
  7376. ..'7:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2618|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2619|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2620|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2621|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2622|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2623|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2624|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2625|15:153|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2626|15:21|4:467;n;4|9:428|10:1043;4|9:468|10:2242;p;1|1:421|2:2|3:2627|15:21|4:608|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2628|15:563|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;p;1|3:2629|15:2630|4:2631|27:25|17:25|32:25|21:25|26:25|18:25;n;9|9:119|10:2632;9|9:119|10:2633;9|9:119|10:2634;9|9:119|10:2635;9|9:2636|10:2637;9|9:119|10:2638;9|9:119|10:2639;9|9:119|10:2640;p;1|2:2|3:2641|15:133|4:2642;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:2643|15:1322|4:2642;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|5:131|14:395|3:2644|15:1285|4:398|5:131|5:131;1|2:2|5:131|14:395|3:2645|15:1287|4:398|5:131|5:131;1|1:403|2:2|5:404|3:2646|15:1289|4:407|18:24|5:404|5:404;n;14|1:408;n;7|1:409;n;7|1:410;p;8|1:411;7|1:412;p;p;1|2:2|5:131|14:395|3:2647|15:1287|4:398|5:131|5:131;1|2:2|5:131|14:395|3:2648|15:1285|4:414|5:131|5:131;n;4|9:141|10:2271;p;1|2:2|5:131|14:395|3:2649|15:1285|4:419|18:24|5:131|5:131;n;4|9:258|10:2650;4|9:258|10:1294;4|9:258|10:1296;p;1|1:421|2:2|5:'
  7377. ..'19|3:2651|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2652|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2653|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2654|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2655|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2656|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2657|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2658|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2659|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2660|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2661|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2662|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2663|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2664|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2665|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2666|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2667|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2668|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2669|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:1'
  7378. ..'9|3:2670|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2671|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2672|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2673|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:2674|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2675|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2676|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2677|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2678|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2679|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2680|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2681|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2682|4:455|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2683|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2684|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2685|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2686|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2687|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2688|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2689|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6'
  7379. ..'|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2690|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2691|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2692|15:325|4:437|17:24|18:24;n;3|5:438|4:6|6:7|7:8|8:9|5:438|5:438;p;1|1:421|2:2|5:19|3:2693|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2694|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2695|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2696|15:457|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2697|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2698|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2699|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2700|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2701|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2702|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2703|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2704|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2705|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2706|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2707|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2708|15:435|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2709|15:325|4:42'
  7380. ..'3|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2710|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:10|10:1272;4|9:10|10:1273;p;1|1:421|2:2|5:19|3:2711|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2712|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2713|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2714|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2715|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2716|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2717|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2718|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2719|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2720|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2721|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2722|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2723|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2724|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2725|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2726|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2727|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19'
  7381. ..'|3:2728|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2729|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2730|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2731|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2732|15:1218|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2733|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2734|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2735|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2736|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2737|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2738|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2739|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2740|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|5:19|3:2741|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2742|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2743|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2744|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2745|15:996|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2746|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:'
  7382. ..'424|5:424;p;1|1:421|2:2|5:19|3:2747|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2748|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2749|15:537|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2750|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2751|15:153|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2752|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2753|15:441|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2754|15:21|4:427;n;4|9:468|10:1503;4|9:428|10:1502;p;1|1:421|2:2|5:19|3:2755|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:460|14:461|3:2756|15:21|4:423|17:24|18:24|5:460|5:460;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2757|15:325|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2758|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2759|15:325|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2760|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2761|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2762|15:553|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2763|15:445|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2764|4:423|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|2:2|3:2765|4:15;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2766|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;'
  7383. ..'p;1|1:421|2:2|3:2767|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2768|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2769|15:153|4:327|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;7|1:450;p;1|1:421|2:2|3:2770|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|3:2771|15:567|4:442|17:24|18:24;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;9|9:677|10:2772;p;1|2:2|3:2773|15:2630|4:755;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2774|15:153|4:757|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;2|1:765;n;2|1:16;n;2|1:17;n;1|1:18|5:19|14:2|3:2775|15:153|16:22|4:23|17:24|18:25|5:19|5:19;n;5|3:26|19:27;6|20:27;7;8|1:28;9|9:10|10:29;9|9:10|10:1607;p;10|5:32|3:2776|15:153|16:1300|4:35|17:25|18:24|5:32|5:32;1|1:36|5:37|3:2777|15:153|16:1302|4:40|17:24|21:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;7;12|1:45|25:46;12|1:45|25:46;12|1:45|25:47;12|1:45|25:48;12|1:45|25:49;12|1:45|25:50;12|1:45|25:51;12|1:45|25:52;12|1:45|25:53;12|1:45|25:54;1|1:55|5:37|3:2778|15:153|16:1304|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;p;12|1:45|25:58;12|1:45|25:59;12|1:45|25:60;12|1:45|25:61;12|1:45|25:62;12|1:45|25:63;12|1:45|25:64;12|1:45|25:65;12|1:45|25:66;12|1:45|25:67;12|1:45|25:68;12|1:45|25:67;12|1:45|25:69;1|1:70|5:37|3:2779|15:153|16:1306|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;1|1:73|5:37|3:2780|15:153|16:1308|4:40|17:24|26:25|18:24|5:37|5:37;n;11|22:41|23:42|24:43;9|9:10|10:44;p;12|1:45|25:76;12|1:45|25:77;12|1:45|25:78;12|1:45|25:79;12|1:45|25:80;12|1:45|25:81;12|1:45|25:82;12|1:45|25:81;1|1:83|5:84|3:2781|15:153|16:1310|4:87|17:24|5:84|5:84;n;7;9|9:185|10:1311;9|9:10|10:88;p;12|1:45|25:89;12|1:45|25:90;12|1:45|25:91;12|1:45|25:92;12|1:45|25:93;12|1:45|25:94;12|1:'
  7384. ..'45|25:95;12|1:45|25:96;12|1:45|25:97;12|1:45|25:98;12|1:45|25:99;12|1:45|25:100;12|1:45|25:101;12|1:45|25:102;12|1:45|25:103;12|1:45|25:104;12|1:45|25:105;12|1:45|25:106;12|1:45|25:107;12|1:45|25:108;12|1:45|25:109;p;7;8|1:110;8|1:111;2|1:112;n;1|1:113|5:32|3:2782|15:297|16:1313|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1314;9|9:119|10:120;p;1|1:113|5:84|3:2783|15:153|16:1316|4:123|27:25|17:25|18:25|5:84|5:84;n;11|22:118|24:25;9|9:158|10:2784;9|9:237|10:796;9|9:124|10:125;p;1|1:113|5:32|3:2785|15:153|16:1319|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:130|29:24;9|9:237|10:799;p;1|1:113|5:131|3:2786|15:1322|16:1323|4:135|17:25|18:25|5:131|5:131;n;11;p;1|1:113|5:19|3:2787|15:150|16:1326|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:143;9|9:141|10:142;p;1|1:113|5:19|3:2788|15:150|16:1329|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:119|10:2789;p;1|1:113|5:32|3:2790|15:297|16:1331|4:117|27:25|17:24|18:25|5:32|5:32;n;11|22:118|24:25;9|9:789|10:1624;9|9:119|10:120;p;1|1:113|5:19|3:2791|15:137|16:1333|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:2299;9|9:252|10:251;p;1|1:113|5:84|3:2792|15:21|16:1336|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:162|10:2793;p;1|1:113|5:9|3:2794|15:137|16:1346|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1535;p;1|1:113|5:19|3:2795|15:137|16:1348|4:175|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:176|10:177;9|9:391|10:266;p;1|1:113|5:9|3:2796|15:137|16:1351|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:158|10:2797;p;1|1:113|5:131|30:187|3:2798|15:1322|16:1353|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:270|10:2799;9|9:192|10:1354;p;1|1:113|5:131|3:2800|15:325|16:1356|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:158|10:199;9|9:158|10:1358;9|9:158|10:202;p;1|1:113|5:32|3:2801|15:153|16:1361'
  7385. ..'|4:128|27:25|17:25|18:24|5:32|5:32;n;11|22:118|24:129;13|28:205|29:157;9|9:237|10:1363;9|9:391|10:1364;p;1|1:113|5:84|3:2802|15:370|16:1366|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;p;1|5:19|3:2803|15:297|16:1369|4:213|17:24|18:214|5:19|5:19;n;4|9:215|10:216;9|9:217|10:218;p;1|1:113|5:131|3:2804|15:1322|16:1371|4:135|17:25|18:25|5:131|5:131;n;11;9|9:223|10:1372;9|9:804|10:1324;9|9:221|10:2314;p;1|1:113|5:131|30:187|3:2805|15:1322|16:1374|4:190|17:25|18:25|5:131|5:131;n;11|22:191;9|9:221|10:227;p;1|1:113|5:84|3:2806|15:370|16:1376|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:2807;p;1|1:113|5:131|3:2808|15:325|16:1379|4:196|31:7|17:24|26:25|18:24|5:131|5:131;n;11|22:197|24:157;9|9:162|10:1359;p;1|5:19|3:2809|15:297|16:1383|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1386;9|9:260|10:1384;9|9:124|10:1426;9|9:217|10:2810;p;1|1:113|5:19|3:2811|15:153|16:1388|4:123|27:25|17:25|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2812|15:281|16:1391|4:139|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;9|9:141|10:1647;9|9:119|10:1648;9|9:141|10:244;p;1|1:113|5:84|3:2813|15:297|16:1393|4:247|27:25|17:157|18:25|5:84|5:84;n;11|24:25;9|9:256|10:1394;p;1|1:113|5:19|3:2814|15:150|16:1396|4:139|27:25|17:24|18:24|5:19|5:19;n;11|22:118|24:129;9|9:119|10:251;p;1|1:113|3:2815|15:297|16:1398|4:247|27:25|17:157|18:25;n;11|24:25;9|9:260|10:261;9|9:256|10:1399;4|9:258|10:259;p;1|5:84|3:2816|15:153|16:1401|4:264|31:7|17:24|32:25|18:25|5:84|5:84;n;9|9:268|10:1656;9|9:268|10:1657;9|9:265|10:896;9|9:265|10:1654;9|9:270|10:1402;9|9:221|10:2817;9|9:10|10:267;p;1|5:32|3:2818|15:21|16:1404|4:274|31:7|18:24|5:32|5:32;n;9|9:221|10:2819;9|9:270|10:2820;9|9:265|10:2326;p;1|5:19|3:2821|15:297|16:1406|4:213|17:24|18:214|5:19|5:19;n;9|9:260|10:279;9|9:904|10:1407;p;1|1:113|5:9|3:2822|15:242|16:1409|4:168|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;9|9:171|10:1570;9|9:171|10:2'
  7386. ..'329;p;1|1:113|5:84|3:2823|15:153|16:1411|4:155|17:24|26:25|18:24|5:84|5:84;n;11|22:156|24:157;9|9:158|10:1412;9|9:160|10:1413;9|9:162|10:2331;p;1|1:113|5:19|3:2824|15:115|16:1416|4:299|27:25|17:157|26:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:32|3:2825|15:153|16:1422|4:312|27:25|18:25|5:32|5:32;n;11|24:25;9|9:306|10:2341;4|9:340|10:341;9|9:217|10:2826;p;1|5:19|3:2827|15:297|16:1424|4:234|17:24|18:24|5:19|5:19;n;9|9:318|10:1425;9|9:260|10:1384;9|9:124|10:1426;9|9:124|10:1385;9|9:904|10:1577;p;1|1:113|5:84|3:2828|15:370|16:1428|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:256|10:323;9|9:258|10:1429;p;1|1:113|5:19|3:2829|16:1431|4:196|31:7|17:24|18:24|5:19|5:19;n;11|22:327|24:157;9|9:178|10:1669;9|9:391|10:1432;p;1|1:113|5:19|3:2830|15:150|16:1434|4:175|27:25|17:25|18:24|5:19|5:19;n;11|22:118|24:129;9|9:391|10:179;9|9:178|10:266;9|9:176|10:1671;p;1|1:113|5:19|3:2831|15:281|16:1436|4:146|27:25|17:24|18:25|5:19|5:19;n;11|22:118|24:25;p;1|1:113|5:19|3:2832|16:1439|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:2833;4|9:350|10:1441;p;1|1:113|5:32|3:2834|15:153|16:1443|4:312|27:25|18:25|5:32|5:32;n;11|24:25;4|9:340|10:341;9|9:904|10:1584;p;1|1:113|5:84|3:2835|15:370|16:1445|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:1447;4|9:340|10:1448;p;1|5:19|3:2836|15:153|16:1450|4:349|31:7|5:19|5:19;n;9|9:158|10:2344;p;1|1:113|5:84|3:2837|15:370|16:1452|4:209|17:25|18:25|5:84|5:84;n;11|22:210|24:129;9|9:258|10:2347;p;1|1:113|5:19|3:2838|15:115|16:1454|4:299|27:25|17:157|21:25|18:25|5:19|5:19;n;11|24:25;p;1|1:113|5:9|3:2839|15:242|16:1458|4:182|27:25|17:25|18:25|5:9|5:9;n;11|22:118|24:25;p;1|1:113|5:19|3:2840|15:325|16:1463|4:335|31:7|27:25|18:25|5:19|5:19;n;11|24:25;9|9:252|10:1464;p;1|1:113|5:84|3:2841|15:207|16:1468|4:344|31:7|17:157|18:25|5:84|5:84;n;11|24:25;9|9:252|10:1470;p;1|5:19|3:2842|15:153|16:1472|4:349|31:7|5:19|5:19;n;4|9:350|10:'
  7387. ..'1685;9|9:162|10:1473;4|9:353|10:379;p;1|1:113|5:380|30:187|14:381|3:2843|16:1475|4:384|31:7|18:24|5:380|5:380;n;11|22:385|24:157;9|9:178|10:1476;9|9:391|10:1476;p;1|1:113|5:32|3:2844|16:1478|4:388|31:7|17:24|18:24|5:32|5:32;n;11|22:389|24:157;9|9:178|10:390;9|9:391|10:392;p;p;p;p;1|3:2845|15:2630|4:2631|27:25|17:25|32:25|21:25|26:25|18:25;n;9|9:252|10:2846;9|9:252|10:2847;9|9:252|10:2848;p;1|2:2|3:2849|15:996|4:4;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;4|9:192|10:2277;4|9:192|10:2278;p;1|1:2850|2:2|3:2851|15:1218|4:2852|17:24|18:24;n;15;p;18|1:2850|2:2|3:2853|15:153|4:156|17:24;1|1:2854|2:2|3:2855|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2858|15:115|4:156|17:24;18|1:2850|2:2|3:2859|15:21|4:156|17:24;1|1:2854|2:2|3:2860|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2861|15:1866|4:156|17:24;18|1:2854|2:2|3:2862|15:115|4:156|17:24;1|1:421|2:2|5:19|3:2863|15:996|4:2864|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2868|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2850|2:2|5:19|33:1793|3:2869|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2871|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2850|2:2|5:19|33:1793|3:2872|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2873|15:996|4:2874|17:24|18:24;1|1:421|2:2|5:19|3:2875|4:2864|17:24|18:24|5:19|5:19;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2876|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2877|15:325|4:398|17:24|18:24|5:2865|5:2865;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2878|15:996|4:2879|17:24|18:24|5:2865|5:2865;n;15;p;1|1:2854|2:2|3:2880|15:996|4:2852|17:24|18:24;n;15;13|28:2881;13|28:2881|29:25;p;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2882|15:325|4:398|17:24|18:24|5:2865|5:2865;1|1:2854|2:2|3:2883|15:1218|4:2874|17:24|18'
  7388. ..':24;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2884|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2885|15:996|4:2852|17:24|18:24;n;15;13|28:2881;13|28:2881|29:25;p;1|1:2854|2:2|5:19|33:1793|3:2886|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2887|15:996|4:2852|17:24|18:24;n;15;13|28:2881|29:25;13|28:2881;p;1|1:2854|2:2|5:19|33:1793|3:2888|15:996|4:2870|17:24|18:24|5:19|5:19;18|1:421|2:2|5:19|3:2889|15:115|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2891|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|3:2892|15:1218|4:2874|17:24|18:24;1|1:2854|2:2|3:2893|15:1218|4:2874|17:24|18:24;18|1:421|2:2|5:19|3:2894|15:115|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:2865|30:2866|14:2867|3:2895|15:996|4:2879|17:24|18:24|5:2865|5:2865;n;15;p;1|1:2854|2:2|5:19|33:1793|3:2896|15:996|4:2870|17:24|18:24|5:19|5:19;1|2:2|3:2897|15:137|4:2898;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2899|15:153|4:2900|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:421|2:2|5:19|3:2901|15:996|4:2902|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2903|15:996|4:2904|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2905|15:996|4:2902|17:24|18:24|5:19|5:19;n;15;p;18|1:421|2:2|5:19|3:2906|15:1866|4:2890|17:24|5:19|5:19;1|1:421|2:2|5:2907|30:2908|14:2867|3:2909|15:996|4:2910|17:24|18:24|5:2907|5:2907;n;15;p;18|1:421|2:2|5:19|3:2911|15:1866|4:2890|17:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2912|15:996|4:2870|17:24|18:24|5:19|5:19;1|1:2854|2:2|5:19|33:1793|3:2913|15:996|4:2870|17:24|18:24|5:19|5:19;1|2:2|3:2914|15:137|4:2915;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|2:2|3:2916|15:137|4:2917;n;3|5:5|4:6|6:7|7:8|8:9|5:5|5:5;p;1|1:421|2:2|5:19|3:2918|15:153|4:2900|17:24|18:24|5:19|5:19;n;3|5:424|4:6|6:7|7:8|8:425|5:424|5:424;p;1|1:2850|2:2|3:2919|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:19|33:1793|3:2920|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:19|33:1793|'
  7389. ..'3:2921|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|5:19|33:1793|3:2922|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2923|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:19|33:1793|3:2924|15:1218|4:2870|17:24|18:24|5:19|5:19;1|1:2850|2:2|3:2925|15:996|4:2874|17:24|18:24;1|1:2850|2:2|5:2865|30:2866|14:2867|3:2926|15:207|4:398|17:24|18:24|5:2865|5:2865;1|1:2927|2:2|5:2907|30:2908|14:2867|3:2928|15:996|4:2910|17:24|18:24|5:2907|5:2907;n;15;p;1|1:421|2:2|5:19|3:2929|15:1809|4:2930|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2931|15:1809|4:2930|17:24|18:24|5:19|5:19;n;15;p;1|1:421|2:2|5:19|3:2932|15:996|4:2904|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|3:2933|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2850|2:2|3:2934|15:153|4:156|17:24;1|1:2850|2:2|3:2935|15:1218|4:2852|17:24|18:24;n;15;p;18|1:421|2:2|5:19|3:2861|15:153|4:2056|17:24|5:19|5:19;1|1:2854|2:2|3:2936|15:996|4:2852|17:24|18:24;n;15;13|28:2881|29:25;13|28:2881;p;1|1:2854|2:2|3:2937|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2850|2:2|3:2938|15:153|4:156|17:24;1|1:421|2:2|5:19|3:2939|15:996|4:2940|17:24|18:24|5:19|5:19;n;15;p;1|1:2850|2:2|3:2941|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:2854|2:2|3:2942|15:115|4:156|17:24;18|1:2854|2:2|3:2943|15:1866|4:156|17:24;1|1:2854|2:2|3:2944|15:996|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;1|1:2850|2:2|3:2945|15:1218|4:2852|17:24|18:24;n;15;p;18|1:2854|2:2|3:2946|15:115|4:156|17:24;18|1:2854|2:2|3:2947|15:1866|4:156|17:24;18|1:2854|2:2|3:2948|15:1866|4:156|17:24;18|1:2850|2:2|3:2949|15:21|4:156|17:24;1|1:2850|2:2|3:2950|15:1218|4:2856|17:24|18:24;n;21|38:2073|39:2073|28:2857;21|38:2073|39:2073|28:2857|29:25;p;18|1:421|2:2|5:19|3:2946|15:21|4:2056|17:24|'
  7390. ..'5:19|5:19;1|1:421|2:2|5:19|3:2951|4:2940|17:24|18:24|5:19|5:19;n;15;p;18|1:2850|2:2|3:2952|15:21|4:156|17:24;p;')
  7391. for _,Object in pairs(Objects) do
  7392. Object.Parent = script and script.Parent==workspace and script or workspace
  7393. end
  7394. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement