Advertisement
lafur

Untitled

May 6th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 77.64 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 72416
  3. local genv={}
  4. local Scripts = {
  5. function() function blow()
  6. for i = 1, 4 do
  7. if script.Parent:FindFirstChild("Engine") ~= nil then
  8. local ex = Instance.new("Explosion")
  9. ex.Position = script.Parent.Parent.Engine.Position + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  10. ex.BlastRadius = 1
  11. ex.BlastPressure = 1000
  12. ex.Parent = game.Workspace
  13. wait()
  14. end
  15. end
  16. wait(1)
  17. script.Parent.Parent:remove()
  18. end
  19.  
  20. script.Parent.Parent.ChildRemoved:connect(blow)
  21.  
  22. while true do
  23. wait(0.1)
  24. if script.Parent.Parent.CarOn.Value == true then
  25. local look = script.Parent.CFrame.lookVector*script.Parent.Parent.Speed.Value
  26. script.Parent.BV.velocity = Vector3.new(look.x, -15, look.z)
  27. else
  28. script.Parent.BV.velocity = Vector3.new(0, -5, 0)
  29. end
  30. end
  31. end;
  32. function() function chng()
  33. script.Parent.Parent.CarOn.Value = not script.Parent.Parent.CarOn.Value
  34. if script.Parent.Parent.CarOn.Value == false then
  35. script.Parent.BrickColor = BrickColor.new(21)
  36. else
  37. script.Parent.BrickColor = BrickColor.new(28)
  38. end
  39. end
  40.  
  41. script.Parent.Click.MouseClick:connect(chng)
  42. end;
  43. function() function chng()
  44. script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value + 3
  45. script.Parent.BrickColor = BrickColor.new(21)
  46. wait(0.2)
  47. script.Parent.BrickColor = BrickColor.new(0)
  48. end
  49.  
  50. script.Parent.Click.MouseClick:connect(chng)
  51. end;
  52. function() function chng()
  53. script.Parent.Parent.Speed.Value = script.Parent.Parent.Speed.Value - 3
  54. script.Parent.BrickColor = BrickColor.new(21)
  55. wait(0.2)
  56. script.Parent.BrickColor = BrickColor.new(0)
  57. end
  58.  
  59. script.Parent.Click.MouseClick:connect(chng)
  60. end;
  61. function() local a = script.Parent.Parent.Cart:clone()
  62. local deb = false
  63.  
  64. function chng()
  65. if deb == true then return end
  66. deb = true
  67. local new = a:clone()
  68. new.Parent = script.Parent.Parent
  69. new:MakeJoints()
  70. script.Parent.BrickColor = BrickColor.new(21)
  71. wait(6)
  72. script.Parent.BrickColor = BrickColor.new(28)
  73. deb = false
  74. end
  75.  
  76. script.Parent.Click.MouseClick:connect(chng)
  77. end;}local ActualScripts = {}
  78. function s(var)
  79. local func = table.remove(Scripts,1)
  80. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  81. __index = getfenv(func),
  82. }))
  83. table.insert(ActualScripts,coroutine.wrap(func))
  84. end
  85. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  86. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  87. function(t,f)
  88. for a,b in pairs(t) do
  89. f(a,b)
  90. end
  91. end
  92. local Types = {
  93. Color3 = Color3.new,
  94. Vector3 = Vector3.new,
  95. Vector2 = Vector2.new,
  96. UDim = UDim.new,
  97. UDim2 = UDim2.new,
  98. CFrame = CFrame.new,
  99. Rect = Rect.new,
  100. NumberRange = NumberRange.new,
  101. BrickColor = BrickColor.new,
  102. PhysicalProperties = PhysicalProperties.new,
  103. NumberSequence = function(...)
  104. local a = {...}
  105. local t = {}
  106. repeat
  107. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  108. until #a==0
  109. return NumberSequence.new(t)
  110. end,
  111. ColorSequence = function(...)
  112. local a = {...}
  113. local t = {}
  114. repeat
  115. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  116. until #a==0
  117. return ColorSequence.new(t)
  118. end,
  119. number = tonumber,
  120. boolean = function(a)
  121. return a=="1"
  122. end
  123. }
  124. split = function(str,sep)
  125. if not str then return end
  126. local fields = {}
  127. local ConcatNext = false
  128. str:gsub(("([^%s]+)"):format(sep),function(c)
  129. if ConcatNext == true then
  130. fields[#fields] = fields[#fields]..sep..c
  131. ConcatNext = false
  132. else
  133. fields[#fields+1] = c
  134. end
  135. if c:sub(#c)=="\\" then
  136. c = fields[#fields]
  137. fields[#fields] = c:sub(1,#c-1)
  138. ConcatNext = true
  139. end
  140. end)
  141. return fields
  142. end
  143. RemoveAndSplit = function(t)
  144. return split(table_remove(t,1),comma)
  145. end
  146. t = split(str,";")
  147. props = RemoveAndSplit(t)
  148. classes = RemoveAndSplit(t)
  149. values = split(table_remove(t,1),'|')
  150. ICList = RemoveAndSplit(t)
  151. InstanceList = {}
  152. Model = inst"Model"
  153. CurPar = Model
  154. table_foreach(t,function(ct,c)
  155. if c=="n" or c=="p" then
  156. CurPar = c=="n" and LastIns or CurPar[parnt]
  157. else
  158. ct = split(c,"|")
  159. local class = classes[tonum(table_remove(ct,1))]
  160. if class=="UnionOperation" then
  161. LastIns = {UsePartColor="1"}
  162. else
  163. LastIns = inst(class)
  164. if LastIns:IsA"Script" then
  165. s(LastIns)
  166. elseif LastIns:IsA("ModuleScript") then
  167. ms(LastIns)
  168. end
  169. end
  170.  
  171. local function SetProperty(LastIns,p,str,s)
  172. s = Types[typeof(LastIns[p])]
  173. if p=="CustomPhysicalProperties" then
  174. s = PhysicalProperties.new
  175. end
  176. if s then
  177. LastIns[p] = s(unpack(split(str,comma)))
  178. else
  179. LastIns[p] = str
  180. end
  181. end
  182.  
  183. local UnionData
  184. table_foreach(ct,function(s,p,a,str)
  185. a = p:find":"
  186. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  187. if p=="UnionData" then
  188. UnionData = split(str," ")
  189. return
  190. end
  191. if class=="UnionOperation" then
  192. LastIns[p] = str
  193. return
  194. end
  195. SetProperty(LastIns,p,str)
  196. end)
  197.  
  198. if UnionData then
  199. local LI_Data = LastIns
  200. LastIns = DecodeUnion(UnionData)
  201. table_foreach(LI_Data,function(p,str)
  202. SetProperty(LastIns,p,str)
  203. end)
  204. end
  205. table.insert(InstanceList,LastIns)
  206. LastIns[parnt] = CurPar
  207. end
  208. end)
  209. table_remove(ICList,1)
  210. table_foreach(ICList,function(a,b)
  211. b = split(b,">")
  212. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  213. end)
  214.  
  215. return Model:GetChildren()
  216. end
  217.  
  218. local Objects = Decode('Name,PrimaryPart,Anchored,Color,Position,Orientation,Size,FrontSurface,C0,C1,Part0,Part1,BackSurface,TopSurface,NameOcclusion,Health,Velocity,BottomSurface,MeshType,Shape,RightSurface,Force,LeftSurface,MaxTorque,MaxForce,Transparency,MaxActivationDistance,Value,Texture,Face,CanCollide;Part,Model,Snap,Weld,Humanoid,SpecialMesh,Seat,Rotate,BodyForce,Script,BodyGyro,BodyVelocity,ClickDetector,BoolValue,IntValue,Decal;Part|Roller Coaster|1|0.949,0.9529,0.9529|83.4481,15.8,201.3526|'
  219. ..'0,-180,0|1,0.4,4|83.4481,16.1999,198.8526|1,3.6,1|2|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|-2.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0.3999,2,-1,-0,-0,0,1,0,-0,-0,-1|83.4481,16.1999,203.8526|0,0,0.5,1,0,0,0,1,0,0,0,1|0,0.3999,-2,1,-0,0,0,1,0,0,-0,1|Rail|0.1058,0.1647,0.2078|85.9481,18.4,203.8526|6,0.8,1|0|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|2.5,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|-2.5,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|0.8549,0.5215,0.2549|85.9481,16.4,201.3526|6,0.8,2|2.5,0.1'
  220. ..'999,0,-1,-0,0,0,0,-1,-0,-1,0|-2.5,0.1999,0,-1,-0,0,0,0,-1,-0,-1,0|85.9481,18.4,198.8526|88.4481,16.1999,203.8526|88.4481,15.8,201.3526|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|0,-0.4,0.5,-1,-0,-0,0,1,0,-0,-0,-1|88.4481,16.1999,198.8526|2.5,-0.4001,0,1,0,0,0,0,1,0,-1,0|77.2727,32.8012,102.2156|0,27,0|2,0.8,1|82.4481,31.8,100.8526|1,1.2,1|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|0,-0.4001,0,0,-1,0,0,0,1,-1,0,-0|79.085,32.8012,101.4648|0,18,0|80.9923,32.8012,101.0067|0,9,0|82.4481,32.8,100.8526|0,-90,0'
  221. ..'|1,0.8,1|75.6003,32.8012,103.2406|0,36,0|75.3545,32.8012,97.5864|0,25.7199,0|4,0.8,1|82.4481,30.2,98.3526|72.8347,32.8012,106.0063|0,54,0|74.1088,32.8012,104.5147|0,45,0|82.4481,31.8,95.8526|0.5006,-0.4013,-0.0002,1,0,-0.0001,0,0,1,0,-1,0|79.0535,32.8012,96.2918|0,12.8599,0|0.9607,0.8039,0.1882|82.4481,32.8,95.8526|0,0.5999,0,-0,1,0,0,0,-1,-1,0,0|81.9475,32.8012,95.8528|0,0.0099,0|71.0593,32.8012,109.491|0,72,0|71.8099,32.8012,107.6788|0,63,0|70.4481,23.4,112.8526|0,90,0|1,18,1'
  222. ..'|0,9,0,-1,-0,-0,0,0,1,0,1,0|0,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|72.0364,32.8012,99.6716|0,38.5699,0|70.6014,32.8012,111.3982|0,81,0|70.4481,32.8,112.8526|69.2654,32.8012,102.4428|0,51.43,0|67.9481,30.2,112.8526|65.8861,32.8012,109.46|0,77.1399,0|67.1804,32.8012,105.7611|0,64.29,0|65.4481,23.4,112.8526|65.4481,32.8,112.8526|0,9,0,-1,0,0,0,0,-1,0,-1,0|65.4474,32.801,112.3541|0.4984,9.001,-0.0008,1,0,0,0,-0.0001,-1.0001,-0.0001,1,0|70.4481,30.6,113.8526|0,0.4,-2,1,0,0,0,1,0,-0,-0,1|7'
  223. ..'0.4481,32.8,119.8526|13,0.8,1|-6,1.8,0,-1,0,0,0,0,-1,0,-1,0|6,1.8,0,-1,0,0,0,0,-1,0,-1,0|67.9481,30.8,119.8526|13,0.8,2|-6,0.2,0,-1,0,0,0,0,-1,0,-1,0|6,0.2,0,-1,0,0,0,0,-1,0,-1,0|67.9481,30.2,113.8526|0,0,2,1,0,0,0,1,0,0,0,1|0,-0.4001,-0.5,1,0,0,0,1,0,-0,-0,1|65.4481,32.8,119.8526|65.4481,30.6,113.8526|67.9481,30.2,125.8526|0,-0.4001,0.5,-1,0,0,0,1,0,0,-0,-1|70.4481,30.6,125.8526|65.4481,30.6,125.8526|67.9481,15.8,185.8526|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|0.5,-0.4,0.5,1,0,0,0,0,1,-'
  224. ..'0,-1,-0|0,-0.4,-0.5,1,-0,-0,0,1,0,0,0,1|0.5,-0.4,-0.5,1,0,0,0,0,1,-0,-1,-0|65.4481,16.1999,185.8526|0.5,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|0,0.3999,-2,1,-0,-0,0,1,0,0,0,1|67.4481,16.4,185.3526|70.4481,18.4,185.3526|0.5,1.8,0,-1,0,0,0,0,-1,0,-1,0|70.4481,16.1999,185.8526|68.4481,16.4,185.3526|65.4481,18.4,185.3526|68.4474,20.0221,171.2765|0,-90,-15.4701|27,0.8,1|67.4474,20.0221,171.2765|65.4474,22.0221,171.2765|70.4475,22.0221,171.2765|65.4481,19.8,156.8526|1,10.8,1|70.4481,19.8,156'
  225. ..'.8526|67.9481,23,156.8526|-0.5,-0.4,0.5,1,0,0,0,0,1,-0,-1,-0|-0.5,-0.4,-0.5,1,0,0,0,0,1,-0,-1,-0|0,3.2,-0.5,1,-0,-0,0,1,0,0,0,1|0,3.2,0.5,-1,-0,0,0,1,0,0,0,-1|67.4481,23.6,157.3526|68.4481,23.6,157.3526|70.4481,25.6,157.3526|-0.5,5.3999,0,-1,0,0,0,0,-1,0,-1,0|65.4481,25.6,157.3526|67.9481,23,155.8526|65.4481,23.4,155.8526|67.4481,23.6,155.3526|0.5,0.1999,-0.5,-1,0,0,0,0,-1,0,-1,0|70.4481,25.6,155.3526|70.4481,23.4,155.8526|0,0.3999,2,-1,-0,0,0,1,0,0,0,-1|68.4481,23.6,155.3526|0'
  226. ..'.5,0.1999,0.5,-1,0,0,0,0,-1,0,-1,0|65.4481,25.6,155.3526|68.4476,27.2225,141.2763|67.4476,27.2225,141.2763|65.4476,29.2225,141.2763|70.4476,29.2225,141.2763|65.4481,27,126.8526|0,-3.2,-2,1,-0,-0,0,1,0,0,0,1|70.4481,27,126.8526|67.9481,30.2,126.8526|0,3.1999,-0.5,1,-0,-0,0,1,0,0,0,1|67.4481,30.8,127.3526|-0.5,0.2,-0.5,-1,0,0,0,0,-1,0,-1,0|68.4481,30.8,127.3526|-0.5,0.2,0.5,-1,0,0,0,0,-1,0,-1,0|70.4481,32.8,127.3526|65.4481,32.8,127.3526|71.8099,18.4008,192.0286|0,117,0|70.4481,1'
  227. ..'7.4,186.8526|71.0592,18.4008,190.2164|0,108,0|70.6011,18.4008,188.3091|0,99,0|70.4481,18.4,186.8526|0,0.5999,0,0,1,0,0,0,-1,-1,-0,0|72.835,18.4008,193.701|0,126,0|67.1807,18.4008,193.9468|0,115.72,0|67.9481,15.8,186.8526|75.6006,18.4008,196.4666|0,144,0|74.109,18.4008,195.1924|0,135,0|65.4481,17.4,186.8526|0.5013,-0.4008,0.001,1,0,0,-0.0001,0,1,0,-1,0|65.8861,18.4008,190.248|0,102.86,0|65.4481,18.4,186.8526|65.4471,18.4008,187.3539|79.0853,18.4008,198.242|0,162,0|77.2731,18.400'
  228. ..'8,197.4913|0,153,0|82.4481,9,198.8526|69.2659,18.4008,197.2649|0,128.57,0|80.9925,18.4008,198.6997|0,171,0|82.4481,18.4,198.8526|0,8.9999,0,-1,-0,0,0,0,-1,-0,-1,0|72.037,18.4008,200.0359|0,141.4299,0|82.4481,15.8,201.3526|79.0542,18.4008,203.4151|0,167.1399,0|75.3553,18.4008,202.1209|0,154.2899,0|82.4481,9,203.8526|0,-0.4,0,1,0,0,0,0,1,0,-1,0|-0.4981,-0.4011,0.001,-1.0001,-0.0001,0,-0.0001,-0.0001,1,-0.0001,1,0|82.4481,18.4,203.8526|81.9501,18.401,203.8537|148.4481,1.4,201.3526'
  229. ..'|0.5,-0.4001,0.5,1,0,0,0,0,1,0,-1,0|0.5,-0.4001,-0.5,1,0,0,0,0,1,0,-1,0|0,-0.4001,0.5,-1,-0,-0,0,1,0,-0,-0,-1|148.4481,1.8,203.8526|147.9481,2,201.8526|147.9481,4,198.8526|0.5,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|148.4481,1.8,198.8526|0,0.4,2,-1,-0,-0,0,1,0,-0,-0,-1|147.9481,2,200.8526|147.9481,4,203.8526|133.8706,5.622,200.8531|0,0,-15.4701|133.8706,5.6219,201.8531|133.8706,7.6219,203.8531|133.8706,7.6219,198.8531|119.4481,5.4,203.8526|0,-3.2001,-2,1,-0,0,0,1,0,0,-0,1|119.4481,5.4,198'
  230. ..'.8526|0,5.4,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-0.4,0,1,0,0,0,0,1,0,-1,0|0,-3.2001,2,-1,-0,-0,0,1,0,-0,-0,-1|119.4481,8.6,201.3526|119.9481,9.1999,201.8526|-0.5,0.1999,-0.5,-1,-0,0,0,0,-1,-0,-1,0|119.9481,9.1999,200.8526|-0.5,0.1999,0.5,-1,-0,0,0,0,-1,-0,-1,0|119.9481,11.1999,198.8526|119.9481,11.1999,203.8526|-0.5,5.3999,0,-1,-0,0,0,0,-1,-0,-1,0|118.4481,8.6,201.3526|0.5,-0.4,-0.5,1,0,0,0,0,1,0,-1,0|0.5,-0.4,0.5,1,0,0,0,0,1,0,-1,0|118.4481,9,203.8526|117.9481,9.1999,201.8526|117.9481'
  231. ..',11.1999,198.8526|118.4481,9,198.8526|0.5,-0.4,0,1,0,0,0,0,1,0,-1,0|117.9481,9.1999,200.8526|117.9481,11.1999,203.8526|0.5,1.7999,0,-1,-0,0,0,0,-1,-0,-1,0|103.8705,12.8221,200.8532|103.8705,12.8221,201.8532|103.8705,14.8221,203.8533|103.8705,14.8221,198.8532|89.4481,12.6,203.8526|89.4481,12.6,198.8526|89.4481,15.8,201.3526|89.9481,16.4,201.8526|89.9481,16.4,200.8526|89.9481,18.4,198.8526|89.9481,18.4,203.8526|143.4481,4,146.8526|19,0.8,1|-9,1.8,0,-1,0,0,0,0,-1,0,-1,0|138.4481,4'
  232. ..',146.8526|140.9481,3.2,146.8526|19,0.8,2|101.6229,18.4008,141.4905|0,-153,0|96.4481,17.4,142.8526|99.8108,18.4008,142.2413|0,-162,0|97.9034,18.4008,142.6994|0,-171,0|96.4481,18.4,142.8526|0,0.5999,0,0,1,0,0,0,-1,-1,0,0|103.2954,18.4008,140.4655|0,-144,0|103.5413,18.4008,146.1197|0,-154.28,0|96.4481,15.8,145.3526|106.0609,18.4008,137.6997|0,-126,0|104.7869,18.4008,139.1913|0,-135,0|96.4481,17.4,147.8526|0.5,-0.4008,0.0007,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|0,-0.4001,0,0,-1,-0,'
  233. ..'0,0,1,-1,0,0|99.8423,18.4008,147.4143|0,-167.14,0|96.4481,18.4,147.8526|96.9481,18.4008,147.8533|0,-179.9901,0|107.8364,18.4008,134.215|0,-108,0|107.0858,18.4008,136.0273|0,-117,0|108.4481,9,130.8526|106.8594,18.4008,144.0345|0,-141.43,0|108.2942,18.4008,132.3078|0,-99,0|108.4481,18.4,130.8526|0,8.9999,0,-1,0,0,0,0,-1,0,-1,0|109.6304,18.4008,141.2633|0,-128.5701,0|110.9481,15.8,130.8526|113.0095,18.4008,134.246|0,-102.8601,0|111.7153,18.4008,137.9449|0,-115.71,0|113.4481,9,130.'
  234. ..'8526|113.4481,18.4,130.8526|113.4481,18.401,131.3525|0.4998,9.0009,0,1,0,-0.0001,-0.0001,0,-1.0001,-0.0001,1,-0.0001|84.8104,18.4008,136.0284|83.4481,17.4,130.8526|0,-0.4001,0,0,-1,0,0,0,1,-1,0,0|84.0596,18.4008,134.2161|83.6014,18.4008,132.3088|83.4481,18.4,130.8526|85.8353,18.4008,137.7007|80.1811,18.4008,137.9466|80.9481,15.8,130.8526|88.6009,18.4008,140.4662|87.1094,18.4008,139.1922|78.4481,17.4,130.8526|0.5009,-0.4008,0.0006,1,0,0,-0.0001,0,1,0,-1,0|78.8865,18.4008,134.247'
  235. ..'6|78.4481,18.4,130.8526|78.4475,18.4008,131.3536|92.0857,18.4008,142.2416|90.2734,18.4008,141.491|95.4481,9,142.8526|82.2662,18.4008,141.2647|93.9929,18.4008,142.6994|95.4481,18.4,142.8526|85.0375,18.4008,144.0357|95.4481,15.8,145.3526|92.0546,18.4008,147.4148|88.3557,18.4008,146.1205|95.4481,9,147.8526|95.4481,18.4,147.8526|94.9486,18.401,147.8531|0.4995,9.0009,-0.0006,1,0,-0.0001,0,0,-1.0001,-0.0001,1,0|143.4481,1.8,137.8526|140.9481,1.4,137.8526|0,-0.4001,0.5,-1,-0,0,0,1,0,0'
  236. ..',0,-1|0,-0.4001,-0.5,1,-0,-0,0,1,0,0,0,1|138.4481,1.8,137.8526|152.4481,2,201.3526|7,0.8,2|3,0.2,0,-1,-0,0,0,0,-1,-0,-1,0|152.4481,4,198.8526|7,0.8,1|152.4481,4,203.8526|155.4481,1.8,198.8526|3,-0.4001,0,1,0,0,0,0,1,0,-1,0|155.4481,1.4,201.3526|155.4481,1.8,203.8526|0,0.4,-2,1,-0,0,0,1,0,0,-0,1|138.4481,1.8,136.8526|7,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|-7,-0.8,-2,1,-0,-0,0,1,0,0,0,1|143.4481,1.8,136.8526|-7,-0.8,2,-1,-0,0,0,1,0,0,0,-1|140.9481,2.6,129.8526|15,0.4,4|140.9481,3.2,129'
  237. ..'.8526|15,0.8,2|0,0.1999,0,-1,0,0,0,0,-1,0,-1,0|143.4481,4,129.8526|15,0.8,1|138.4481,4,129.8526|143.4481,1.8,122.8526|-7,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|7,-0.8,2,-1,-0,0,0,1,0,0,0,-1|138.4481,1.8,122.8526|7,-0.8,-2,1,-0,-0,0,1,0,0,0,1|146.4481,7.1999,128.8526|0,180,0|1,14.4,1|0,7.2,0,-1,-0,-0,0,0,1,0,1,0|10.5,-0.6001,-8.5,0,-1,0,0,0,1,-1,0,-0|137.9481,15,118.3526|22,1.2,18|133.4481,1.8,118.3526|22,3.6,9|0,-1.2001,10.5,0,-1,0,0,0,1,-1,0,0|4.5,-1.2001,4,-1,-0,-0,0,0,1,0,1,0|-0.5,-'
  238. ..'1.2001,-10.5,-0,-1,-0,0,0,1,-1,-0,-0|133.4481,4.8,128.8526|7,2.4,1|129.4481,10.1999,128.8526|1,8.4,1|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|10.5,-0.6001,8.5,0,-1,0,0,0,1,-1,0,-0|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|-6,1.1999,0,0,1,0,0,0,-1,-1,0,0|129.4481,4.8,122.8526|13,2.4,1|83.4481,16.1999,113.8526|-8,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|80.9481,15.8,113.8526|-8,-0.4,0,1,0,0,0,0,1,-0,-1,-0|78.4481,16.1999,113.8526|83.4481,18.4,121.8526|17,0.8,1|78.4481,18.4,121.8526|80.9481,16.4,121.8526|17,0.8'
  239. ..',2|8,0.1999,0,-1,0,0,0,0,-1,0,-1,0|80.9481,15.8,129.8526|78.4481,16.1999,129.8526|8,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|83.4481,16.1999,129.8526|166.0615,18.4008,107.6992|164.7874,18.4008,109.1909|166.8599,18.4008,114.034|163.2959,18.4008,110.465|161.6235,18.4008,111.4899|156.4481,17.4,112.8526|159.8112,18.4008,112.2408|163.5418,18.4008,116.1191|157.9039,18.4008,112.6989|156.4481,18.4,112.8526|156.4481,17.4,117.8526|156.4481,15.8,115.3526|159.8428,18.4008,117.4139|156.4481,18.4,117.'
  240. ..'8526|156.9487,18.4008,117.8528|0.5005,0.6007,0.0002,-1,-0.0001,-0.0001,0,-0.0001,-1,0,-1,0|155.4481,17.4,117.8526|155.4481,17.4,112.8526|140.9481,16.4,115.3526|30,0.8,2|-14.5,0.1999,0,1,0,0,-0,-0,-1,0,1,0|140.9481,18.4,117.8526|30,0.8,1|14.5,0.5999,0,-1,-0,0,0,0,-1,-0,-1,0|-14.5,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|140.9481,18.4,112.8526|126.4481,16.1999,112.8526|126.4481,15.8,115.3526|0,-0.4,-0.5,1,-0,0,0,1,0,0,-0,1|126.4481,16.1999,117.8526|146.4481,7.2,107.8526|-10.5,-0.6001,-8.5,0,'
  241. ..'-1,0,0,0,1,-1,0,-0|138.4481,1.8,121.8526|143.4481,1.8,121.8526|140.9481,2.6,114.8526|-7,0.7999,0.5,-1,-0,0,0,1,0,0,0,-1|0,-0.4,0,1,0,0,0,0,1,-0,-1,-0|140.9481,3.2,114.8526|143.4481,4,114.8526|138.4481,4,114.8526|7,1.8,0,-1,0,0,0,0,-1,0,-1,0|-7,1.8,0,-1,0,0,0,0,-1,0,-1,0|143.4481,1.8,107.8526|138.4481,1.8,107.8526|132.9481,4.8,107.8526|8,2.4,1|129.4481,10.1999,107.8526|-10.5,-0.6001,8.5,0,-1,0,0,0,1,-1,0,-0|3.5,1.1999,0,1,0,0,-0,-0,-1,0,1,0|127.9481,1.2,112.3526|8,2.4,2|125.9481'
  242. ..',0.6,112.3526|8,1.2,2|120.2728,18.4008,119.2154|125.4481,17.4,117.8526|122.0851,18.4008,118.4646|123.9924,18.4008,118.0065|125.4481,18.4,117.8526|118.6005,18.4008,120.2404|118.3546,18.4008,114.5862|125.4481,15.8,115.3526|115.8348,18.4008,123.0061|117.1089,18.4008,121.5144|125.4481,17.4,112.8526|122.0536,18.4008,113.2915|125.4481,18.4,112.8526|124.9476,18.4008,112.8526|0.5004,0.6007,0,-1,-0.0001,0,-0.0001,0,-1,0,-1,-0.0001|114.0594,18.4008,126.4909|114.8101,18.4008,124.6785|113.'
  243. ..'4481,9,129.8526|115.0365,18.4008,116.6714|113.6016,18.4008,128.3981|113.4481,18.4,129.8526|112.2655,18.4008,119.4425|110.9481,15.8,129.8526|108.8863,18.4008,126.4598|110.1805,18.4008,122.7609|108.4481,9,129.8526|-0.5,-0.4011,0.0001,-1.0001,-0.0001,0,0,-0.0001,1,-0.0001,1,-0.0001|108.4481,18.4,129.8526|108.448,18.401,129.3526|140.9481,1.4,106.8526|138.4481,1.8,106.8526|140.4481,2,106.3526|0.5,0.2,-0.5,-1,0,0,0,0,-1,0,-1,0|143.4481,4,106.3526|143.4481,1.8,106.8526|0,0.4,2,-1,-0,0'
  244. ..',0,1,0,0,0,-1|141.4481,2,106.3526|0.5,0.2,0.5,-1,0,0,0,0,-1,0,-1,0|138.4481,4,106.3526|141.4484,5.6219,92.2756|140.4484,5.6219,92.2756|138.4482,7.6219,92.2756|143.4484,7.6219,92.2756|138.4481,5.4,77.8526|0,-3.2001,-2,1,-0,-0,0,1,0,0,0,1|143.4481,5.4,77.8526|140.9481,8.6,77.8526|140.4481,9.1999,78.3526|-0.5,0.1999,-0.5,-1,0,0,0,0,-1,0,-1,0|141.4481,9.1999,78.3526|143.4481,11.1999,78.3526|138.4481,11.1999,78.3526|167.8369,18.4008,104.2145|167.0863,18.4008,106.0268|118.6233,18.400'
  245. ..'8,94.4901|113.4481,17.4,95.8526|116.8112,18.4008,95.2409|114.9038,18.4008,95.699|113.4481,18.4,95.8526|120.2958,18.4008,93.4651|120.5416,18.4008,99.1194|113.4481,15.8,98.3526|123.0613,18.4008,90.6995|121.7872,18.4008,92.1911|113.4481,17.4,100.8526|116.8426,18.4008,100.414|113.4481,18.4,100.8526|113.9486,18.4008,100.853|0.5004,0.6008,0.0004,-1,-0.0001,-0.0001,0,-0.0001,-1,0,-1,0|124.8368,18.4008,87.2148|124.0862,18.4008,89.027|125.4481,9,83.8526|123.8597,18.4008,97.0342|125.2946'
  246. ..',18.4008,85.3075|125.4481,18.4,83.8526|126.6307,18.4008,94.263|127.9481,15.8,83.8526|130.0099,18.4008,87.2458|128.7157,18.4008,90.9446|130.4481,9,83.8526|130.4481,18.4,83.8526|130.4468,18.401,84.3518|0.4992,9.0009,0.0013,1,0,-0.0001,-0.0001,0,-1.0001,-0.0001,1,-0.0001|96.4481,16.1999,95.8526|96.4481,15.8,98.3526|-8,-0.4,0,1,0,0,0,0,1,0,-1,0|96.4481,16.1999,100.8526|104.4481,18.4,95.8526|8,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|-8,1.8,0,-1,-0,0,0,0,-1,-0,-1,0|104.4481,18.4,100.8526|104.44'
  247. ..'81,16.4,98.3526|112.4481,15.8,98.3526|8,-0.4,0,1,0,0,0,0,1,0,-1,0|112.4481,16.1999,100.8526|112.4481,16.1999,95.8526|90.2728,18.4008,102.2156|95.4481,17.4,100.8526|92.0851,18.4008,101.4648|93.9923,18.4008,101.0066|95.4481,18.4,100.8526|88.6005,18.4008,103.2405|88.3546,18.4008,97.5863|95.4481,15.8,98.3526|85.8348,18.4008,106.0062|87.1089,18.4008,104.5146|95.4481,17.4,95.8526|0.5004,-0.4009,-0.0001,1,0,-0.0001,0,0,1,0,-1,0|92.0535,18.4008,96.2917|95.4481,18.4,95.8526|94.9476,18.4'
  248. ..'008,95.8527|84.0594,18.4008,109.4909|84.8101,18.4008,107.6787|83.4481,9,112.8526|85.0365,18.4008,99.6716|83.6016,18.4008,111.3982|83.4481,18.4,112.8526|82.2655,18.4008,102.4427|80.9481,15.8,112.8526|78.8862,18.4008,109.4599|80.1805,18.4008,105.761|78.4481,9,112.8526|-0.499,-0.4011,0.0005,-1.0001,-0.0001,0,0,-0.0001,1,-0.0001,1,-0.0001|78.4481,18.4,112.8526|78.4475,18.401,112.3537|161.6229,4.0006,197.4903|156.4481,3,198.8526|159.8107,4.0006,198.2411|157.9034,4.0006,198.6993|156.'
  249. ..'4481,4,198.8526|0,0.6,0,0,1,0,0,0,-1,-1,0,0|163.2953,4.0006,196.4654|163.5412,4.0006,202.1195|156.4481,1.4,201.3526|166.0609,4.0006,193.6996|164.7869,4.0006,195.1912|156.4481,3,203.8526|0.5,-0.4006,0.0006,1,0,0,-0.0001,-0.0001,1,0,-1,-0.0001|0,-0.4,0,0,-1,-0,0,0,1,-1,0,0|159.8423,4.0006,203.4142|156.4481,4,203.8526|156.9481,4.0006,203.8532|167.8364,4.0006,190.2149|167.0858,4.0006,192.0271|168.4481,3,186.8526|166.8594,4.0006,200.0343|168.2942,4.0006,188.3077|168.4481,4,186.8526|'
  250. ..'0,0.6,0,-1,0,0,0,0,-1,0,-1,0|169.6304,4.0006,197.2631|170.9481,1.4,186.8526|173.0095,4.0006,190.2459|171.7153,4.0006,193.9449|173.4481,3,186.8526|0,-0.4,0,1,0,-0,0,0,1,0,-1,0|173.4481,4,186.8526|173.4482,4.0005,187.3518|0.4992,0.6004,-0.0002,1,0,-0.0001,-0.0001,0,-1.0001,-0.0001,1,-0.0001|167.0853,4.0006,180.6775|0,-63,0|168.4481,3,185.8526|0,-0.4,0,-0,-1,-0,0,0,1,-1,-0,-0|167.8361,4.0006,182.4898|0,-72,0|168.2942,4.0006,184.3971|0,-81,0|168.4481,4,185.8526|166.0603,4.0006,179.'
  251. ..'0052|0,-54,0|171.7145,4.0006,178.7593|0,-64.28,0|170.9481,1.4,185.8526|163.2947,4.0006,176.2397|0,-36,0|164.7863,4.0006,177.5137|0,-45,0|173.4481,3,185.8526|0.5002,-0.4006,0,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|173.0092,4.0006,182.4583|0,-77.14,0|173.4481,4,185.8526|173.4481,4.0006,185.3523|159.8099,4.0006,174.4643|0,-18,0|161.6222,4.0006,175.2149|0,-27,0|156.4481,3,173.8526|0,-0.4,0,1,-0,-0,0,0,1,0,-1,-0|169.6294,4.0006,175.4412|0,-51.4301,0|157.9027,4.0006,174.0065|0,-9,0|156'
  252. ..'.4481,4,173.8526|166.8583,4.0006,172.6702|0,-38.57,0|156.4481,1.4,171.3526|159.8411,4.0006,169.2911|0,-12.86,0|163.5399,4.0006,170.5854|0,-25.71,0|156.4481,3,168.8526|156.4481,4,168.8526|156.947,4.0005,168.8525|0.4989,0.6004,-0.0002,1,0,0,-0.0001,0,-1.0001,-0.0001,1,0|144.8105,4.0006,162.028|143.4481,3,156.8526|0,-0.4,0,0,-1,0,0,0,1,-1,0,0|144.0597,4.0006,160.2158|143.6016,4.0006,158.3085|143.4481,4,156.8526|145.8354,4.0006,163.7005|140.1813,4.0006,163.9463|140.9481,1.4,156.852'
  253. ..'6|148.6011,4.0006,166.466|147.1096,4.0006,165.1919|138.4481,3,156.8526|0.5007,-0.4006,0.0005,1,0,0,-0.0001,0,1,0,-1,0|138.8866,4.0006,160.2474|138.4481,4,156.8526|0,0.6,0,0,1,0,0,0,-1,-1,-0,0|138.4476,4.0006,157.3533|152.0859,4.0006,168.2414|150.2736,4.0006,167.4908|155.4481,3,168.8526|142.2665,4.0006,167.2644|153.993,4.0006,168.6991|155.4481,4,168.8526|0,0.6,0,-1,-0,0,0,0,-1,-0,-1,0|145.0375,4.0006,170.0354|155.4481,1.4,171.3526|152.0547,4.0006,173.4145|148.3559,4.0006,172.120'
  254. ..'3|155.4481,3,173.8526|155.4481,4,173.8526|154.9488,4.0005,173.8532|0.4993,0.6004,-0.0007,1,0,-0.0001,0,-0.0001,-1.0001,-0.0001,1,-0.0001|169.6309,18.4008,111.2628|173.4481,16.1999,92.8526|170.9481,15.8,92.8526|-3.5,-0.4,0,1,0,0,0,0,1,-0,-1,-0|0,-0.4,0.5,-1,-0,0,0,1,0,0,0,-1|168.4481,16.1999,92.8526|173.4481,18.4,96.3526|8,0.8,1|3.5,1.8,0,-1,0,0,0,0,-1,0,-1,0|-3.5,1.8,0,-1,0,0,0,0,-1,0,-1,0|168.4481,18.4,96.3526|170.9481,16.4,96.3526|8,0.8,2|170.9481,15.8,99.8526|3.5,-0.4,0,1,0,'
  255. ..'0,0,0,1,-0,-1,-0|168.4481,16.1999,99.8526|3.5,-0.4001,0,1,0,0,0,0,1,-0,-1,-0|173.4481,16.1999,99.8526|171.7158,18.4008,107.9444|168.2947,18.4008,102.3073|170.9481,15.8,100.8526|168.4481,18.4,100.8526|168.4481,9,100.8526|88.6232,32.8012,94.4903|83.4481,31.8,95.8526|86.8109,32.8012,95.2411|84.9037,32.8012,95.6992|83.4481,32.8,95.8526|90.2955,32.8012,93.4654|90.5415,32.8012,99.1195|83.4481,30.2,98.3526|93.0612,32.8012,90.6996|91.7871,32.8012,92.1913|83.4481,31.8,100.8526|86.8425,3'
  256. ..'2.8012,100.4142|83.4481,32.8,100.8526|83.9484,32.8012,100.8532|0.5002,0.6012,0.0006,-1,-0.0001,-0.0001,0,-0.0001,-1,0,-1,0|94.8365,32.8012,87.2149|94.0859,32.8012,89.0272|95.4481,23.4,83.8526|0,-0.4001,0,1,0,-0,0,0,1,0,-1,0|93.8596,32.8012,97.0343|95.2944,32.8012,85.3077|95.4481,32.8,83.8526|96.6306,32.8012,94.2632|97.9481,30.2,83.8526|100.0098,32.8012,87.246|98.7154,32.8012,90.9449|100.4481,23.4,83.8526|-0.5003,-0.4011,-0.0014,-1.0001,-0.0001,-0.0001,-0.0001,0,1,-0.0001,1,0|10'
  257. ..'0.4481,32.8,83.8526|100.4468,32.801,84.3528|173.0101,18.4008,104.2456|173.4481,18.4,100.8526|173.4474,18.401,101.3503|173.4481,9,100.8526|-0.4978,-0.4011,-0.0008,-1.0001,-0.0001,-0.0001,-0.0001,0,1,-0.0001,1,0|168.4481,9,91.8526|171.4481,16.4,91.3526|170.4481,16.4,91.3526|168.4481,18.4,91.3526|0.5,8.9999,0,1,-0,0,0,0,-1,0,1,0|173.4481,18.4,91.3526|173.4481,9,91.8526|-0.5,-0.4,0,-1,-0,-0,0,0,1,0,1,0|170.9481,15.8,91.8526|-0.5,-0.4,-0.5,-1,-0,-0,0,0,1,0,1,0|-0.5,-0.4,0.5,-1,-0,-0'
  258. ..',0,0,1,0,1,0|171.4485,12.8221,77.4294|0,90,-15.4701|173.4486,14.8221,77.4294|168.4486,14.8221,77.4294|173.4481,5.4,62.8526|0.5,-0.4,0,1,0,-0,0,0,1,0,-1,0|168.4481,5.4,62.8526|170.4486,12.8221,77.4294|170.4481,9.1999,63.3526|171.4481,9.1999,63.3526|168.4481,11.1999,63.3526|0.5,5.3999,0,-1,0,0,0,0,-1,0,-1,0|170.9481,8.6,62.8526|0.5,-0.4,-0.5,1,0,-0,0,0,1,0,-1,0|0.5,-0.4,0.5,1,0,-0,0,0,1,0,-1,0|0,3.2,-0.5,1,0,0,0,1,0,-0,-0,1|0,3.2,0.5,-1,0,0,0,1,0,0,-0,-1|173.4481,11.1999,63.3526|'
  259. ..'140.9481,8.6,76.8526|138.4481,9,76.8526|7,-0.4,0,1,0,0,0,0,1,-0,-1,-0|0,0.4,-2,1,-0,-0,0,1,0,0,0,1|143.4481,11.1999,69.8526|138.4481,11.1999,69.8526|140.9481,9.1999,69.8526|7,0.1999,0,-1,0,0,0,0,-1,0,-1,0|-7,0.1999,0,-1,0,0,0,0,-1,0,-1,0|143.4481,9,76.8526|143.4481,9,62.8526|-7,-0.4,0,1,0,0,0,0,1,-0,-1,-0|140.9481,8.6,62.8526|138.4481,9,62.8526|127.9481,15.8,82.8526|125.4481,16.1999,82.8526|127.4481,16.4,82.3526|130.4481,18.4,82.3526|130.4481,16.1999,82.8526|128.4481,16.4,82.35'
  260. ..'26|125.4481,18.4,82.3526|128.4484,20.0222,68.2756|127.4484,20.0222,68.2756|125.4484,22.0222,68.2756|130.4484,22.0222,68.2756|125.4481,19.8,53.8526|-0.5,-0.4,0,1,0,0,0,0,1,-0,-1,-0|130.4481,19.8,53.8526|127.9481,23,53.8526|127.4481,23.6,54.3526|128.4481,23.6,54.3526|130.4481,25.6,54.3526|125.4481,25.6,54.3526|97.9481,23,53.8526|0,-0.4,0.5,-1,0,0,0,1,0,0,-0,-1|100.4481,23.4,53.8526|98.4481,23.6,54.3526|97.4481,23.6,54.3526|100.4481,25.6,54.3526|95.4481,25.6,54.3526|95.4481,23.4,5'
  261. ..'3.8526|0.5,-0.4001,0,1,0,-0,0,0,1,0,-1,0|0,0.3999,2,-1,0,0,0,1,0,0,-0,-1|97.4482,27.2225,68.4298|98.4482,27.2225,68.4297|100.4482,29.2224,68.4297|95.4482,29.2224,68.4297|95.4481,31.8,82.8526|97.9481,30.2,82.8526|-0.5,-0.4001,-0.5,1,0,-0,0,0,1,0,-1,0|98.4481,30.8,82.3526|97.4481,30.8,82.3526|95.4481,32.8,82.3526|-0.5,0.5999,0,-1,0,0,0,0,-1,0,-1,0|100.4481,32.8,82.3526|100.4481,31.8,82.8526|-0.5,-0.4001,0,1,0,-0,0,0,1,0,-1,0|156.4481,8.6,47.3526|156.4481,5.4,49.8526|156.4481,5.4,'
  262. ..'44.8526|-0.4999,-0.4009,0.0005,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,1,0|156.4481,11.1999,49.8526|159.8419,11.2008,45.2906|161.6229,11.2007,51.2144|157.9035,11.2007,50.006|159.8107,11.2007,50.4638|156.9479,11.2008,44.852|156.4481,11.1999,44.8526|0,5.3999,0,-1,-0,-0,-0,-0,-1,-0,-1,-0|171.7151,11.2007,54.7587|169.6301,11.2007,51.4406|166.859,11.2007,48.6697|167.8365,11.2007,58.4893|167.0858,11.2007,56.677|164.7869,11.2007,53.5132|163.5408,11.2007,46.5848|173.0095,11.2007,5'
  263. ..'8.4577|166.0609,11.2007,55.0047|163.2953,11.2007,52.2392|168.2946,11.2007,60.3966|168.4481,11.1999,61.8526|173.4484,11.2007,61.3517|-0.5007,5.4001,0.0001,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|173.4481,11.1999,61.8526|170.9484,8.6006,61.8525|168.4485,5.4006,61.8525|-0.0004,-0.3994,0.0001,-0.0001,1,0,0,-0.0001,1,1,0,-0.0001|173.4485,5.4006,61.8524|140.9481,8.6,61.8526|143.4481,5.4,61.8526|138.4481,5.4,61.8526|143.4481,11.1999,61.8526|0,5.3999,0,-1,0,0,0,0,-1,0,-1,0|138.8868,11.200'
  264. ..'7,58.4592|144.8107,11.2007,56.6782|143.6022,11.2007,60.3976|144.0601,11.2007,58.4904|138.4481,11.2007,61.3533|0.4993,5.4007,0,1,0,0,0,0,-1,-0.0001,1,0|138.4481,11.1999,61.8526|148.3551,11.2007,46.586|145.037,11.2007,48.6711|142.266,11.2007,51.4421|152.0856,11.2007,50.4645|150.2734,11.2007,51.2153|147.1094,11.2007,53.5142|140.1811,11.2007,54.7604|152.0541,11.2007,45.2915|148.601,11.2007,52.2402|145.8354,11.2007,55.0058|153.9929,11.2007,50.0065|155.4481,11.1999,49.8526|0,5.3999,0'
  265. ..',0,-1,0,0,0,-1,1,0,0|154.9481,11.2007,44.8526|-0.5,5.4007,0,1,0,-0.0001,-0.0001,0,-1,-0.0001,1,0|155.4481,11.1999,44.8526|155.4481,8.6,47.3526|155.4481,5.4,49.8526|155.4481,5.4,44.8526|124.0859,25.601,47.6773|125.4481,24.6,52.8526|0,-0.4001,0,-0,-1,-0,0,0,1,-1,-0,-0|124.8367,25.601,49.4895|125.2948,25.601,51.3968|125.4481,25.6,52.8526|123.0609,25.601,46.005|128.7151,25.601,45.7591|127.9481,23,52.8526|120.2953,25.601,43.2394|121.7869,25.601,44.5135|130.4481,24.6,52.8526|0.5004,-'
  266. ..'0.4011,0.0006,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|130.0098,25.601,49.458|130.4481,25.6,52.8526|130.4487,25.601,52.3521|116.8105,25.601,41.464|118.6228,25.601,42.2146|113.4481,16.1999,40.8526|0,-0.4001,0,1,-0,-0,0,0,1,0,-1,-0|126.63,25.601,42.441|114.9033,25.601,41.0062|113.4481,25.6,40.8526|123.859,25.601,39.6705|113.4481,23,38.3526|116.8417,25.601,36.2909|120.5405,25.601,37.5851|113.4481,16.1999,35.8526|-0.4972,-0.4011,0.0002,-1.0001,-0.0001,-0.0001,0,0,1,-0.0001,1,-0.0001|11'
  267. ..'3.4481,25.6,35.8526|113.9453,25.601,35.8523|107.2733,25.601,42.2152|112.4481,24.6,40.8526|109.0856,25.601,41.4644|110.9928,25.601,41.0063|112.4481,25.6,40.8526|105.6008,25.601,43.2402|105.355,25.601,37.586|112.4481,23,38.3526|102.8353,25.601,46.0059|104.1092,25.601,44.5143|112.4481,24.6,35.8526|109.054,25.601,36.2913|112.4481,25.6,35.8526|111.9481,25.601,35.8523|0.5,0.601,0.0002,-1,-0.0001,0,-0.0001,0,-1,0,-1,-0.0001|101.0598,25.601,49.4906|101.8105,25.601,47.6784|100.4481,16.1'
  268. ..'999,52.8526|102.037,25.601,39.6712|100.602,25.601,51.3979|100.4481,25.6,52.8526|99.2659,25.601,42.4424|97.9481,23,52.8526|95.8867,25.601,49.4596|97.181,25.601,45.7607|95.4481,16.1999,52.8526|95.4481,25.6,52.8526|95.4458,25.601,52.353|0.4995,9.001,-0.0024,1,0,0,0,-0.0001,-1.0001,-0.0001,1,0|Cart|0|140.9285,6.8239,120.3563|-89.8601,-170.79,-9.4|-0.0227,0.1167,0.0017|4,0.8,3|-0.0001,1.1,2.4999,-1,-0.0001,0,0,0.9999,0,0,0,-1|0.7686,0.1568,0.1098|141.9353,6.32,118.4609|-0.13,-0.2001'
  269. ..',0.0199|-0.0259,0.0792,0.01|2,0.4,3|1|143.4378,4.8384,117.4709|89.15,144.7899,-35|-0.0866,0.7315,0.0833|1,1,1|6|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-0.08,-2,1,0,0,0,1,0,0,0,1|143.446,4.8333,115.4688|27.2199,179.5599,-0.53|0.8417,0.8765,0.8619|0,-0.08,-0.5,1,0,0,0,1,0,0,0,1|143.3385,6.8182,117.4646|-89.8601,-170.79,80.5999|-0.0232,0.0545,0.0014|5,0.8,3|0,-1000,0|2,1.0999,0,-0.0001,-0.0001,-1,0,0.9999,0,0.9999,-0.0001,0|143.4345,4.8402,119.4705|-80.03,-177.9,-2.36|0.2213,0.6715,0.2509'
  270. ..'|0,-0.09,-2,1,0,0,0,1,0,0,0,1|Engine|140.9389,5.7173,117.4588|-0.0295,0.0683,0.0202|4,0.8,5|0,0,0|BV|0,-5,0|20000,2000,20000|0,-30000,0|1,0.2,0,-0.0001,0.9999,0,-0.0001,-0.0001,-1,-1,0,-0.0001|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|-1.0001,-0.2001,-1,-1,-0.0001,-0.0001,0,-0.0001,0.9999,0,0.9999,0|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|-0.0001,-0.4,-1.1,-1,-0.0001,0,-0.0001,0,0.9999,0,0.9999,0|142.4461,4.9133,115.4658|0.0199,-90.2,0.1299|-0.0344,0.0263,0.0334|1.5,-0.4001,-2.0001,0,-1,-0.0001,0,'
  271. ..'0,0.9999,-1,0,-0.0001|142.4489,4.4103,114.4667|-0.12,31.5,89.93|-0.2348,-3.4613,0.1066|0,-0.2,-1.5,-1,-0,-0,0,0,1,0,1,0|140.9426,5.115,116.4602|-0.0331,0.0516,0.0302|140.9485,6.8107,114.5564|-89.8601,-170.79,170.6|-0.0236,0.0197,0.0019|140.9461,4.9127,115.4607|-0.0344,0.0349,0.0336|1,0.8,2|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5,-0.2,-0.0001,0,0,-1,0,0.9999,0,1,0,-0.0001|0,-0.4001,-2,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|On|140.9482,8.5104,114.4525|-0.0138,0.018,-0.0265|1,0.4,2|Click|'
  272. ..'10|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,0.1,1.5,-0.0001,-1,0,-1,-0.0001,0,0,0,-1|140.9357,5.1196,118.4602|-0.0328,0.085,0.0301|0,-0.4001,0.9999,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|140.9494,5.1104,114.4602|-0.0334,0.0181,0.0303|140.9392,4.9173,117.4607|-0.0341,0.0683,0.0335|1,0.8,4|0,-0.4,0,0,-1,-0.0001,0,0,0.9999,-1,0,0|142.436,4.4188,118.4659|-0.04,-64.84,90.0999|0.1431,1.4784,0.0281|Safe|139.9352,6.3192,118.454|-0.0259,0.0907,0.0102|-1,0.4,1,1,-0.0001,0,-0.0001,0,-1,-0.0'
  273. ..'001,0.9999,0|138.5385,6.8164,117.4481|-89.8601,-170.79,-99.4001|-0.0232,0.0819,0.0021|-2.0001,1.1,0,0,-0.0001,1,0,0.9999,-0.0001,-1,0,-0.0001|139.4461,4.9122,115.4555|-0.0344,0.0434,0.0338|-1.5,-0.4,-2.0001,0,-1,-0.0001,0,0,0.9999,-1,0,-0.0001|140.9323,4.9219,119.4606|-0.0339,0.1017,0.0334|-0.0001,-0.4,1.9999,0,-1,-0.0001,0,0,0.9999,-1,0,0|139.4476,4.4103,114.4561|0.1099,173.58,89.98|-1.4468,2.2012,-0.6973|0,-0.2,1.5,-1,-0,-0,0,0,1,0,1,0|138.4371,4.8359,117.4521|-71.85,178.5,-1'
  274. ..'78.6301|-1.1596,-0.5201,-0.2181|0,-0.08,2,-1,-0,-0,0,1,0,-0,-0,-1|138.4456,4.8325,115.4518|-27.6201,0.0399,-0.51|-1.4588,-1.0038,-0.7937|0,-0.08,0.5,-1,-0,-0,0,1,0,-0,-0,-1|138.4307,4.8394,119.4537|84.48,-4.39,-4.24|-0.2571,-0.5437,0.6003|0,-0.09,2,-1,-0,-0,0,1,0,-0,-0,-1|CarOn|Speed|27|Up|142.4482,8.511,114.4576|0.1299,179.8,-0.02|-0.0138,0.0094,-0.0267|1,0.4,1|http://www.roblox.com/asset/?id=2008919|1.5,0.0999,1.4999,-1,0,0,-0.0001,0.9999,0,0,0,-1|Down|139.4482,8.5099,114.447'
  275. ..'3|-0.0138,0.0266,-0.0263|-1.5001,0.0999,1.5,1,-0.0001,0,0,-1,0,-0.0001,0,-1|139.4362,4.4188,118.4566|0.1199,-174.29,90.01|-0.0174,-0.4607,0.0633|Regen|0.1568,0.498,0.2784|136.4481,4.0006,116.3526;0,1>2>347,2>2>12,5>11>4,5>12>15,6>11>4,6>12>3,8>11>7,8>12>3,10>11>9,10>12>16,11>11>9,11>12>7,13>11>12,13>12>17,14>11>12,14>12>3,18>11>17,18>12>16,20>11>19,20>12>15,21>11>19,21>12>17,22>2>92,23>2>45,26>11>25,26>12>29,36>11>35,36>12>40,39>11>38,39>12>35,44>11>43,44>12>47,54>11>53,54>12>5'
  276. ..'2,56>11>55,56>12>52,57>2>63,59>11>58,59>12>66,61>11>60,61>12>75,62>11>60,62>12>58,64>11>63,64>12>72,65>11>63,65>12>66,67>11>66,67>12>71,69>11>68,69>12>76,70>11>68,70>12>71,73>11>72,73>12>76,74>11>72,74>12>75,77>2>92,78>2>92,80>11>79,80>12>90,81>11>79,81>12>89,82>11>79,82>12>86,84>11>83,84>12>91,85>11>83,85>12>79,88>11>87,88>12>89,99>11>98,99>12>104,100>11>98,100>12>103,101>11>98,101>12>97,102>11>98,102>12>96,106>11>105,106>12>97,108>11>107,108>12>96,109>2>123,112>11>111,112>12>'
  277. ..'110,114>11>113,114>12>110,117>11>116,117>12>115,118>11>116,118>12>110,120>11>119,120>12>110,122>11>121,122>12>111,128>11>127,128>12>130,131>11>130,131>12>129,133>11>132,133>12>130,135>11>134,135>12>130,137>11>136,137>12>129,139>11>138,139>12>127,140>2>161,146>11>145,146>12>142,153>11>152,153>12>157,156>11>155,156>12>152,164>11>163,164>12>160,170>11>169,170>12>172,171>11>169,171>12>173,174>2>189,175>2>189,177>11>176,177>12>186,178>11>176,178>12>181,179>11>176,179>12>180,183>11>1'
  278. ..'82,183>12>184,185>11>184,185>12>176,188>11>187,188>12>180,194>11>193,194>12>198,196>11>195,196>12>203,197>11>195,197>12>198,200>11>199,200>12>198,202>11>201,202>12>198,205>11>204,205>12>193,206>2>220,208>11>207,208>12>212,209>11>207,209>12>211,210>11>207,210>12>217,215>11>214,215>12>213,216>11>214,216>12>207,219>11>218,219>12>211,225>11>224,225>12>236,226>11>224,226>12>230,228>11>227,228>12>235,229>11>227,229>12>230,232>11>231,232>12>230,234>11>233,234>12>230,238>11>237,238>12>'
  279. ..'310,240>11>239,240>12>314,242>2>263,248>11>247,248>12>244,255>11>254,255>12>259,256>11>254,256>12>258,266>11>265,266>12>262,273>11>272,273>12>271,275>11>274,275>12>271,276>2>298,279>11>278,279>12>282,289>11>288,289>12>293,292>11>291,292>12>288,297>11>296,297>12>300,307>11>306,307>12>305,309>11>308,309>12>305,312>11>311,312>12>314,313>11>311,313>12>310,315>2>316,317>11>316,317>12>323,321>11>320,321>12>323,322>11>320,322>12>318,325>11>324,325>12>323,326>11>324,326>12>319,327>2>33'
  280. ..'4,329>11>328,329>12>338,330>11>328,330>12>334,332>11>331,332>12>337,333>11>331,333>12>334,336>11>335,336>12>334,340>11>339,340>12>337,341>11>339,341>12>334,343>11>342,343>12>338,344>11>342,344>12>334,346>11>345,346>12>347,349>11>348,349>12>352,350>11>348,350>12>356,351>11>348,351>12>432,354>11>353,354>12>347,355>11>353,355>12>356,357>2>368,359>11>358,359>12>366,360>11>358,360>12>361,362>11>361,362>12>368,364>11>363,364>12>367,365>11>363,365>12>361,369>11>368,369>12>370,372>11>3'
  281. ..'71,372>12>367,373>11>371,373>12>370,375>11>374,375>12>366,376>11>374,376>12>370,383>11>382,383>12>387,392>11>391,392>12>388,394>11>393,394>12>388,398>11>397,398>12>408,399>2>400,401>11>400,401>12>395,402>11>400,402>12>411,404>11>403,404>12>396,405>11>403,405>12>407,406>2>408,409>11>408,409>12>411,410>11>408,410>12>407,413>11>412,413>12>347,414>2>420,416>11>415,416>12>420,418>11>417,418>12>424,419>11>417,419>12>420,421>11>420,421>12>431,422>11>420,422>12>423,426>11>425,426>12>41'
  282. ..'5,427>11>425,427>12>431,429>11>428,429>12>424,430>11>428,430>12>420,434>11>433,434>12>347,435>11>433,435>12>432,438>2>459,444>11>443,444>12>440,453>11>452,453>12>450,455>11>454,455>12>450,462>11>461,462>12>458,468>11>467,468>12>471,469>11>467,469>12>470,472>2>486,474>11>473,474>12>475,476>11>475,476>12>485,478>11>477,478>12>473,481>11>480,481>12>479,482>11>480,482>12>473,484>11>483,484>12>473,491>11>490,491>12>493,494>11>493,494>12>498,495>11>493,495>12>492,497>11>496,497>12>49'
  283. ..'3,500>11>499,500>12>492,502>11>501,502>12>490,505>2>526,508>11>507,508>12>511,520>11>519,520>12>517,522>11>521,522>12>517,529>11>528,529>12>525,536>11>535,536>12>534,538>11>537,538>12>534,539>2>552,542>11>541,542>12>545,543>11>541,543>12>552,544>11>541,544>12>540,547>11>546,547>12>558,548>11>546,548>12>540,550>11>549,550>12>557,551>11>549,551>12>545,554>11>553,554>12>557,555>11>553,555>12>558,556>11>553,556>12>552,559>2>580,565>11>564,565>12>561,572>11>571,572>12>576,573>11>571'
  284. ..',573>12>575,583>11>582,583>12>579,589>11>588,589>12>592,590>11>588,590>12>591,593>2>650,594>2>615,600>11>599,600>12>596,607>11>606,607>12>611,608>11>606,608>12>610,618>11>617,618>12>614,624>11>623,624>12>625,627>11>626,627>12>623,628>2>650,631>11>630,631>12>634,641>11>640,641>12>644,642>11>640,642>12>645,649>11>648,649>12>652,658>11>657,658>12>659,661>11>660,661>12>657,662>2>683,665>11>664,665>12>668,675>11>674,675>12>679,678>11>677,678>12>674,686>11>685,686>12>682,693>11>692,6'
  285. ..'93>12>691,695>11>694,695>12>691,697>2>709,700>11>699,700>12>709,701>11>699,701>12>703,702>11>699,702>12>698,705>11>704,705>12>715,706>11>704,706>12>698,708>11>707,708>12>703,711>11>710,711>12>709,713>11>712,713>12>710,714>11>712,714>12>707,716>11>715,716>12>710,721>11>720,721>12>722,723>2>745,726>11>725,726>12>729,738>11>737,738>12>735,740>11>739,740>12>735,744>11>743,744>12>747,753>11>752,753>12>756,754>11>752,754>12>755,759>11>758,759>12>761,762>11>761,762>12>760,763>2>775,76'
  286. ..'8>11>767,768>12>764,771>11>770,771>12>769,773>11>772,773>12>765,774>11>772,774>12>766,779>11>778,779>12>791,785>11>784,785>12>780,787>11>786,787>12>783,788>11>786,788>12>782,789>11>786,789>12>780,790>11>786,790>12>778,792>2>799,795>11>794,795>12>798,796>11>794,796>12>793,800>11>799,800>12>793,801>11>799,801>12>808,803>11>802,803>12>797,804>11>802,804>12>793,806>11>805,806>12>808,807>11>805,807>12>797,810>11>809,810>12>808,811>11>809,811>12>798,812>2>826,814>11>813,814>12>822,81'
  287. ..'5>11>813,815>12>824,817>11>816,817>12>825,818>11>816,818>12>813,820>11>819,820>12>813,823>11>822,823>12>821,831>11>830,831>12>842,834>11>833,834>12>832,835>11>833,835>12>839,836>11>833,836>12>838,837>11>833,837>12>830,841>11>840,841>12>832,843>2>858,845>11>844,845>12>849,846>11>844,846>12>850,847>11>844,847>12>848,852>11>851,852>12>848,855>11>854,855>12>853,856>11>854,856>12>844,863>11>862,863>12>864,866>11>865,866>12>862,868>11>867,868>12>861,871>11>870,871>12>869,872>2>887,87'
  288. ..'5>11>874,875>12>878,877>11>876,877>12>883,885>11>884,885>12>876,899>11>898,899>12>904,903>11>902,903>12>897,905>11>904,905>12>900,906>2>921,911>11>910,911>12>908,917>11>916,917>12>909,919>11>918,919>12>909,932>11>931,932>12>938,934>11>933,934>12>939,936>11>935,936>12>939,943>2>965,946>11>945,946>12>949,956>11>955,956>12>960,957>11>955,957>12>959,964>11>963,964>12>967,973>11>972,973>12>976,974>11>972,974>12>975,977>2>998,980>11>979,980>12>983,992>11>991,992>12>989,994>11>993,994'
  289. ..'>12>989,1001>11>1000,1001>12>997,1007>11>1006,1007>12>1008,1010>11>1009,1010>12>1006,1011>2>1029,1013>2>1029,1014>2>1029,1017>11>1015,1017>12>1029,1020>11>1019,1020>12>1054,1022>11>1021,1022>12>1037,1026>11>1023,1026>12>1029,1028>11>1027,1028>12>1066,1034>11>1029,1034>12>1041,1035>11>1029,1035>12>1018,1036>11>1029,1036>12>1042,1038>11>1037,1038>12>1029,1040>11>1039,1040>12>1053,1045>11>1044,1045>12>1053,1046>11>1044,1046>12>1029,1050>11>1047,1050>12>1042,1052>11>1051,1052>12>10'
  290. ..'29,1055>11>1054,1055>12>1029,1057>11>1056,1057>12>1051,1059>11>1058,1059>12>1029,1063>11>1060,1063>12>1029,1065>11>1064,1065>12>1029,1067>11>1066,1067>12>1029,1069>11>1068,1069>12>1053,1071>11>1070,1071>12>1054,1073>11>1072,1073>12>1064,1075>11>1074,1075>12>1066,1082>11>1078,1082>12>1042,1087>11>1083,1087>12>1042,1089>11>1088,1089>12>1051;2|1:2;n;2;n;1|3:3|4:4|5:5|6:6|7:7|4:4|4:4;1|3:3|4:4|5:8|6:6|7:9|8:10|4:4|4:4;n;3|9:11|10:12;4|9:13|10:14;p;1|3:3|4:4|5:15|6:6|7:9|13:10|4:4|4'
  291. ..':4;n;4|9:16|10:17;p;1|1:18|3:3|4:19|5:20|7:21|14:22|4:19|4:19;n;3|9:23|10:24;3|9:23|10:25;p;1|1:18|3:3|4:26|5:27|7:28|14:22|4:26|4:26;n;3|9:23|10:29;3|9:23|10:30;p;1|1:18|3:3|4:19|5:31|7:21|14:22|4:19|4:19;1|3:3|4:4|5:32|6:6|7:9|13:10|4:4|4:4;1|3:3|4:4|5:33|6:6|7:7|4:4|4:4;n;4|9:34|10:35;p;1|3:3|4:4|5:36|6:6|7:9|8:10|4:4|4:4;n;3|9:11|10:37;4|9:13|10:14;p;p;2;n;2;n;1|1:18|3:3|4:19|5:38|6:39|7:40|14:22|4:19|4:19;1|3:3|4:19|5:41|6:6|7:42|4:19|4:19;n;3|9:43|10:44;p;1|1:18|3:3|4:19|'
  292. ..'5:45|6:46|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:47|6:48|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:49|6:50|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:52|6:53|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:54|6:55|7:56|14:22|4:19|4:19;1|3:3|4:19|5:57|6:6|7:7|4:19|4:19;1|1:18|3:3|4:19|5:58|6:59|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:60|6:61|7:40|14:22|4:19|4:19;1|3:3|4:4|5:62|6:6|7:42|4:4|4:4;n;3|9:43|10:63;p;1|1:18|3:3|4:19|5:64|6:65|7:56|14:22|4:19|4:19;1|1:18|3:3|4:66|5:67|6:50|7:51|14:22|4:'
  293. ..'66|4:66;n;3|9:23|10:68;p;1|1:18|3:3|4:19|5:69|6:70|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:71|6:72|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:73|6:74|7:40|14:22|4:19|4:19;1|3:3|4:4|5:75|6:76|7:77|4:4|4:4;n;3|9:78|10:79;p;1|1:18|3:3|4:19|5:80|6:81|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:82|6:83|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:84|6:50|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:85|6:86|7:56|14:22|4:19|4:19;1|3:3|4:4|5:87|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:88|6:89|7:56|14:22|4:19|4:19'
  294. ..';1|1:18|3:3|4:19|5:90|6:91|7:56|14:22|4:19|4:19;1|3:3|4:19|5:92|6:76|7:77|4:19|4:19;1|1:18|3:3|4:66|5:93|6:50|7:51|14:22|4:66|4:66;n;3|9:23|10:94;p;1|1:18|3:3|4:19|5:95|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:96;p;p;2;n;1|3:3|4:4|5:97|6:50|7:9|13:10|4:4|4:4;n;4|9:16|10:98;p;1|1:18|3:3|4:19|5:99|6:76|7:100|14:22|4:19|4:19;n;3|9:23|10:101;3|9:23|10:102;p;1|1:18|3:3|4:26|5:103|6:76|7:104|14:22|4:26|4:26;n;3|9:23|10:105;3|9:23|10:106;p;1|3:3|4:4|5:107|6:50|7:7|4:4|4:4;n;4|9:108|10:10'
  295. ..'9;p;1|1:18|3:3|4:19|5:110|6:76|7:100|14:22|4:19|4:19;n;3|9:23|10:101;3|9:23|10:102;p;1|3:3|4:4|5:111|6:50|7:9|8:10|4:4|4:4;1|3:3|4:4|5:112|6:50|7:7|4:4|4:4;n;4|9:108|10:109;4|9:34|10:113;p;1|3:3|4:4|5:114|6:50|7:9|13:10|4:4|4:4;1|3:3|4:4|5:115|6:50|7:9|8:10|4:4|4:4;p;2;n;2;n;1|3:3|4:4|5:116|6:76|7:7|4:4|4:4;n;3|9:117|10:118;4|9:108|10:119;3|9:117|10:120;p;1|3:3|4:4|5:121|6:76|7:9|13:10|4:4|4:4;n;3|9:11|10:122;4|9:16|10:123;p;1|1:18|3:3|4:26|5:124|6:50|7:40|14:22|4:26|4:26;1|1:1'
  296. ..'8|3:3|4:19|5:125|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:126;p;1|3:3|4:4|5:127|6:76|7:9|8:10|4:4|4:4;1|1:18|3:3|4:26|5:128|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:129|6:50|7:40|14:22|4:19|4:19;1|1:18|3:3|4:26|5:130|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:133|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:134|6:131|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:135|6:131|7:132|14:22|4:19|4:19;1|3:3|4:4|5:136|6:76|7:137|13:10|4:4|4:4;1|3:3|4:4|5:138|6:76|7:137|8:10|4:4|4:4;1|3:3|'
  297. ..'4:4|5:139|6:76|7:7|4:4|4:4;n;3|9:117|10:140;3|9:117|10:141;4|9:108|10:142;4|9:34|10:143;p;1|1:18|3:3|4:26|5:144|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:26|5:145|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:146|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;1|1:18|3:3|4:19|5:148|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;p;2;n;1|3:3|4:4|5:149|6:76|7:7|4:4|4:4;1|3:3|4:4|5:150|6:76|7:9|13:10|4:4|4:4;n;4|9:16|10:123;p;1|1:18|3:3|4:26|5:151|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:152;p;1|'
  298. ..'1:18|3:3|4:19|5:153|6:50|7:40|14:22|4:19|4:19;1|3:3|4:4|5:154|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:122;4|9:13|10:155;p;1|1:18|3:3|4:26|5:156|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:157;p;1|1:18|3:3|4:19|5:158|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:126;p;1|1:18|3:3|4:26|5:159|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:160|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:161|6:131|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:162|6:131|7:132|14:22|4:19|4:19;1|3:3|4:4|5:163|6:76|7:137|13:10|4'
  299. ..':4|4:4;n;4|9:16|10:164;p;1|3:3|4:4|5:165|6:76|7:137|8:10|4:4|4:4;1|3:3|4:4|5:166|6:76|7:7|4:4|4:4;n;4|9:108|10:167;p;1|1:18|3:3|4:26|5:168|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:169;p;1|1:18|3:3|4:26|5:170|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:171;p;1|1:18|3:3|4:19|5:172|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;1|1:18|3:3|4:19|5:173|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;p;p;2;n;1|1:18|3:3|4:19|5:174|6:175|7:40|14:22|4:19|4:19;1|3:3|4:4|5:176|6:50|7:42|4:4|4:4;1|1:18|3:3'
  300. ..'|4:19|5:177|6:178|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:179|6:180|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:181|7:51|14:22|4:19|4:19;n;3|9:23|10:182;p;1|1:18|3:3|4:19|5:183|6:184|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:185|6:186|7:56|14:22|4:19|4:19;1|3:3|4:4|5:187|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:188|6:189|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:190|6:191|7:40|14:22|4:19|4:19;1|3:3|4:4|5:192|6:50|7:42|4:4|4:4;n;3|9:43|10:193;p;1|1:18|3:3|4:19|5:194|6:195|7:56|14:22|4:19|4:19;1|1'
  301. ..':18|3:3|4:19|5:196|7:51|14:22|4:19|4:19;n;3|9:23|10:182;p;1|1:18|3:3|4:19|5:197|6:76|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:198|6:199|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:200|6:201|7:40|14:22|4:19|4:19;1|3:3|4:4|5:202|6:6|7:77|4:4|4:4;1|1:18|3:3|4:19|5:203|6:204|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:205|6:206|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:207|7:51|14:22|4:19|4:19;n;3|9:23|10:208;p;1|1:18|3:3|4:19|5:209|6:210|7:56|14:22|4:19|4:19;1|3:3|4:4|5:211|6:6|7:7|4:4|4:4;1|1:1'
  302. ..'8|3:3|4:19|5:212|6:213|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:214|6:215|7:56|14:22|4:19|4:19;1|3:3|4:4|5:216|6:6|7:77|4:4|4:4;n;3|9:78|10:217;3|9:78|10:218;p;1|1:18|3:3|4:19|5:219|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:220|6:6|7:40|14:22|4:19|4:19;p;p;2;n;2;n;1|3:3|4:4|5:221|6:6|7:7|4:4|4:4;n;3|9:117|10:222;3|9:117|10:223;4|9:34|10:224;p;1|3:3|4:4|5:225|6:6|7:9|13:10|4:4|4:4;1|1:18|3:3|4:26|5:226|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:227|7:40|14:22|4:19|4:19;n;3|9:23|10:228;p;'
  303. ..'1|3:3|4:4|5:229|6:6|7:9|8:10|4:4|4:4;n;4|9:13|10:230;p;1|1:18|3:3|4:26|5:231|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:232|7:40|14:22|4:19|4:19;n;3|9:23|10:228;p;1|1:18|3:3|4:26|5:233|6:234|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:235|6:234|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:236|6:234|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:237|6:234|7:132|14:22|4:19|4:19;1|3:3|4:4|5:238|6:6|7:137|13:10|4:4|4:4;n;4|9:16|10:239;p;1|3:3|4:4|5:240|6:6|7:137|8:10|4:4|4:4;n;3|9:241|10:242;4|9:13|10'
  304. ..':243;p;1|3:3|4:4|5:244|6:6|7:7|4:4|4:4;1|1:18|3:3|4:26|5:245|7:40|14:22|4:26|4:26;n;3|9:23|10:246;p;1|1:18|3:3|4:26|5:247|7:40|14:22|4:26|4:26;n;3|9:23|10:248;p;1|1:18|3:3|4:19|5:249|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:250|7:40|14:22|4:19|4:19;n;3|9:23|10:251;p;p;2;n;1|3:3|4:4|5:252|6:6|7:7|4:4|4:4;n;3|9:117|10:253;4|9:34|10:224;3|9:117|10:254;p;1|3:3|4:4|5:255|6:6|7:9|13:10|4:4|4:4;1|1:18|3:3|4:26|5:256|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:257|7:40|14:22|4:19|4:19;1|3:3|4'
  305. ..':4|5:258|6:6|7:9|8:10|4:4|4:4;n;3|9:11|10:259;4|9:13|10:230;p;1|1:18|3:3|4:26|5:260|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:261|7:40|14:22|4:19|4:19;n;3|9:23|10:262;p;1|1:18|3:3|4:26|5:263|6:234|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:264|6:234|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:265|6:234|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:266|6:234|7:132|14:22|4:19|4:19;1|3:3|4:4|5:267|6:6|7:137|13:10|4:4|4:4;n;3|9:241|10:242;4|9:16|10:239;p;1|3:3|4:4|5:268|6:6|7:137|8:10|4:4|4:4;n;3|'
  306. ..'9:241|10:242;4|9:13|10:243;p;1|3:3|4:4|5:269|6:6|7:7|4:4|4:4;1|1:18|3:3|4:26|5:270|7:40|14:22|4:26|4:26;n;3|9:23|10:246;p;1|1:18|3:3|4:26|5:271|7:40|14:22|4:26|4:26;n;3|9:23|10:248;p;1|1:18|3:3|4:19|5:272|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:273|7:40|14:22|4:19|4:19;p;p;1|1:18|3:3|4:19|5:274|6:50|7:275|14:22|4:19|4:19;n;3|9:23|10:276;p;1|1:18|3:3|4:19|5:277|6:50|7:275|14:22|4:19|4:19;n;3|9:23|10:276;p;1|1:18|3:3|4:26|5:278|6:50|7:279|14:22|4:26|4:26;2;n;1|1:18|3:3|4:19|5:280|'
  307. ..'6:281|7:40|14:22|4:19|4:19;1|3:3|4:4|5:282|7:42|4:4|4:4;1|1:18|3:3|4:19|5:283|6:284|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:285|6:286|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:287|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:288;p;1|1:18|3:3|4:19|5:289|6:290|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:291|6:292|7:56|14:22|4:19|4:19;1|3:3|4:4|5:293|7:7|4:4|4:4;1|1:18|3:3|4:19|5:294|6:295|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:296|6:297|7:40|14:22|4:19|4:19;1|3:3|4:4|5:298|7:42|4:4|4:4;n;3|9:43|'
  308. ..'10:299;3|9:43|10:300;p;1|1:18|3:3|4:19|5:301|6:302|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:303|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:304|6:305|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:306|6:307|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:308|6:309|7:40|14:22|4:19|4:19;1|3:3|4:4|5:310|6:50|7:77|4:4|4:4;1|1:18|3:3|4:19|5:311|6:312|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:313|6:314|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:315|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5'
  309. ..':317|6:318|7:56|14:22|4:19|4:19;1|3:3|4:4|5:319|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:320|6:321|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:322|6:323|7:56|14:22|4:19|4:19;1|3:3|4:4|5:324|6:50|7:77|4:4|4:4;1|1:18|3:3|4:19|5:325|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5:326|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:327;p;p;2;n;1|1:18|3:3|4:19|5:328|6:175|7:40|14:22|4:19|4:19;1|3:3|4:4|5:329|6:50|7:42|4:4|4:4;n;3|9:43|10:330;p;1|1:18|3:3|4:19|5:331|6:178|7:40|14:22|4:19|4:'
  310. ..'19;1|1:18|3:3|4:19|5:332|6:180|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:333|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:334|6:184|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:335|6:186|7:56|14:22|4:19|4:19;1|3:3|4:4|5:336|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:337|6:189|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:338|6:191|7:40|14:22|4:19|4:19;1|3:3|4:19|5:339|6:50|7:42|4:19|4:19;n;3|9:43|10:340;p;1|1:18|3:3|4:19|5:341|6:195|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:342|7:51|14:22|4:19|4:19;n;3|9:23|10'
  311. ..':182;p;1|1:18|3:3|4:19|5:343|6:76|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:344|6:199|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:345|6:201|7:40|14:22|4:19|4:19;1|3:3|4:4|5:346|6:6|7:77|4:4|4:4;n;3|9:78|10:217;p;1|1:18|3:3|4:19|5:347|6:204|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:348|6:206|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:349|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:350|6:210|7:56|14:22|4:19|4:19;1|3:3|4:4|5:351|6:6|7:7|4:4|4:4;1|1:18|3:3|4:19|5:352|6:213|7:56|14:22|4:19|4:19;1|1:18|'
  312. ..'3:3|4:19|5:353|6:215|7:56|14:22|4:19|4:19;1|3:3|4:4|5:354|6:6|7:77|4:4|4:4;1|1:18|3:3|4:19|5:355|7:51|14:22|4:19|4:19;n;3|9:23|10:208;p;1|1:18|3:3|4:19|5:356|6:6|7:40|14:22|4:19|4:19;n;3|9:23|10:357;p;p;1|3:3|4:4|5:358|6:76|7:9|8:10|4:4|4:4;1|3:3|4:4|5:359|6:76|7:7|4:4|4:4;n;4|9:34|10:360;4|9:108|10:361;p;1|3:3|4:4|5:362|6:76|7:9|13:10|4:4|4:4;2;n;1|1:18|3:3|4:26|5:363|7:364|14:22|4:26|4:26;n;3|9:23|10:365;p;1|1:18|3:3|4:19|5:366|7:367|14:22|4:19|4:19;1|1:18|3:3|4:19|5:368|7:36'
  313. ..'7|14:22|4:19|4:19;1|3:3|4:4|5:369|6:6|7:9|8:10|4:4|4:4;n;4|9:13|10:230;3|9:11|10:370;p;1|3:3|4:4|5:371|6:6|7:7|4:4|4:4;1|3:3|4:4|5:372|6:6|7:9|13:10|4:4|4:4;n;4|9:16|10:373;3|9:11|10:370;p;p;2;n;1|3:3|4:4|5:374|6:76|7:9|13:10|4:4|4:4;n;3|9:11|10:375;4|9:16|10:376;p;1|3:3|4:4|5:377|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:375;4|9:13|10:378;p;1|3:3|4:4|5:379|6:76|7:380|4:4|4:4;1|1:18|3:3|4:26|5:381|6:50|7:382|14:22|4:26|4:26;n;3|9:23|10:383;p;1|1:18|3:3|4:19|5:384|6:50|7:385|14:22|4:19|'
  314. ..'4:19;1|1:18|3:3|4:19|5:386|6:50|7:385|14:22|4:19|4:19;1|3:3|4:4|5:387|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:388;4|9:13|10:389;p;1|3:3|4:4|5:390|6:76|7:9|13:10|4:4|4:4;n;3|9:11|10:388;4|9:16|10:391;p;p;1|4:26|5:392|6:393|7:394|4:26|4:26;n;3|9:395|10:396;p;1|3:3|4:26|5:397|6:50|7:398|4:26|4:26;1|4:4|5:399|6:76|7:400|4:4|4:4;n;3|9:11|10:401;3|9:11|10:402;3|9:11|10:403;p;1|4:26|5:404|6:393|7:405|4:26|4:26;1|4:26|5:406|6:393|7:407|4:26|4:26;n;3|9:408|10:409;3|9:410|10:411;p;1|3:3|4:26|5'
  315. ..':412|6:76|7:413|4:26|4:26;2;n;1|3:3|4:4|5:414|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:415;4|9:13|10:155;p;1|3:3|4:4|5:416|6:76|7:7|4:4|4:4;n;3|9:117|10:417;p;1|3:3|4:4|5:418|6:76|7:9|13:10|4:4|4:4;n;3|9:11|10:415;4|9:16|10:123;p;1|1:18|3:3|4:19|5:419|6:50|7:420|14:22|4:19|4:19;1|1:18|3:3|4:19|5:421|6:50|7:420|14:22|4:19|4:19;1|1:18|3:3|4:26|5:422|6:50|7:423|14:22|4:26|4:26;n;3|9:23|10:424;p;1|3:3|4:4|5:425|6:76|7:7|4:4|4:4;1|3:3|4:19|5:426|6:76|7:9|13:10|4:19|4:19;n;3|9:11|10:427;4|9'
  316. ..':16|10:123;p;1|3:3|4:4|5:428|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:427;4|9:13|10:155;p;p;1|1:18|3:3|4:19|5:429|6:295|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:430|6:297|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:431|6:312|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:432|6:290|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:433|6:281|7:40|14:22|4:19|4:19;1|3:3|4:4|5:434|7:42|4:4|4:4;n;3|9:43|10:300;p;1|1:18|3:3|4:19|5:435|6:284|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:436|6:292|7:56|14:22|4:19|4:19;1|1:18|'
  317. ..'3:3|4:19|5:437|6:286|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:438|6:76|7:51|14:22|4:19|4:19;1|3:3|4:4|5:439|7:42|4:4|4:4;1|3:3|4:4|5:440|7:7|4:4|4:4;1|1:18|3:3|4:19|5:441|6:302|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:442|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:288;p;1|1:18|3:3|4:19|5:443|6:305|7:40|14:22|4:19|4:19;n;3|9:23|10:444;p;1|3:3|4:4|5:445|6:6|7:42|13:10|4:4|4:4;1|3:3|4:4|5:446|6:6|7:42|8:10|4:4|4:4;1|1:18|3:3|4:26|5:447|6:6|7:448|14:22|4:26|4:26;n;3|9:23|10:449;p;2;n;1|1:18'
  318. ..'|3:3|4:19|5:450|7:451|14:22|4:19|4:19;n;3|9:23|10:452;3|9:23|10:453;p;1|1:18|3:3|4:19|5:454|7:451|14:22|4:19|4:19;n;3|9:23|10:452;3|9:23|10:453;p;p;2;n;1|3:3|4:4|5:455|6:6|7:9|8:10|4:4|4:4;1|3:3|4:4|5:456|6:6|7:7|4:4|4:4;n;4|9:34|10:35;4|9:108|10:457;p;1|3:3|4:4|5:458|6:6|7:9|13:10|4:4|4:4;p;1|3:3|4:26|5:459|6:6|7:394|4:26|4:26;n;3|9:395|10:460;p;2;n;1|3:3|4:4|5:461|6:76|7:9|13:10|4:4|4:4;n;4|9:16|10:376;p;1|3:3|4:4|5:462|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:375;4|9:13|10:378;p;1|'
  319. ..'3:3|4:4|5:463|6:76|7:380|4:4|4:4;n;4|9:34|10:464;3|9:117|10:465;p;1|1:18|3:3|4:26|5:466|6:50|7:382|14:22|4:26|4:26;1|1:18|3:3|4:19|5:467|6:50|7:385|14:22|4:19|4:19;1|1:18|3:3|4:19|5:468|6:50|7:385|14:22|4:19|4:19;n;3|9:23|10:469;3|9:23|10:470;p;1|3:3|4:4|5:471|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:388;4|9:13|10:389;p;1|3:3|4:4|5:472|6:76|7:9|13:10|4:4|4:4;p;1|3:3|4:26|5:473|6:6|7:474|4:26|4:26;1|3:3|4:26|5:475|6:6|7:407|4:26|4:26;n;3|9:408|10:476;3|9:410|10:477;p;1|3:3|4:4|5:478|6:'
  320. ..'76|7:479|4:4|4:4;1|3:3|4:4|5:480|6:76|7:481|4:4|4:4;2;n;1|1:18|3:3|4:19|5:482|6:39|7:40|14:22|4:19|4:19;1|3:3|4:4|5:483|6:6|7:42|4:4|4:4;1|1:18|3:3|4:19|5:484|6:46|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:485|6:48|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:486|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:68;p;1|1:18|3:3|4:19|5:487|6:53|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:488|6:55|7:56|14:22|4:19|4:19;1|3:3|4:4|5:489|6:6|7:7|4:4|4:4;1|1:18|3:3|4:19|5:490|6:59|7:40|14:22|4:19|4:19;1|1:18|3'
  321. ..':3|4:19|5:491|6:61|7:40|14:22|4:19|4:19;1|3:3|4:4|5:492|6:6|7:42|4:4|4:4;1|1:18|3:3|4:19|5:493|6:65|7:56|14:22|4:19|4:19;1|1:18|3:3|4:66|5:494|6:50|7:51|14:22|4:66|4:66;n;3|9:23|10:68;p;1|1:18|3:3|4:19|5:495|6:70|7:40|14:22|4:19|4:19;n;3|9:23|10:496;p;1|1:18|3:3|4:19|5:497|6:72|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:498|6:74|7:40|14:22|4:19|4:19;1|3:3|4:4|5:499|6:76|7:77|4:4|4:4;1|1:18|3:3|4:19|5:500|6:81|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:501|6:83|7:40|14:22|4:19|4:19;1|1:'
  322. ..'18|3:3|4:19|5:502|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5:503|6:86|7:56|14:22|4:19|4:19;1|3:3|4:4|5:504|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:505|6:89|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:506|6:91|7:56|14:22|4:19|4:19;1|3:3|4:4|5:507|6:76|7:77|4:4|4:4;n;3|9:78|10:508;3|9:78|10:465;p;1|1:18|3:3|4:19|5:509|6:50|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:510|6:76|7:40|14:22|4:19|4:19;p;2;n;1|3:3|4:4|5:511|6:76|7:7|4:4|4:4;n;4|9:34|10:360;p;1|3:3|4:4|5:512|6:76|7:9'
  323. ..'|13:10|4:4|4:4;n;3|9:11|10:122;p;1|1:18|3:3|4:26|5:513|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:514;p;1|1:18|3:3|4:19|5:515|6:50|7:40|14:22|4:19|4:19;1|3:3|4:4|5:516|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:122;4|9:13|10:517;p;1|1:18|3:3|4:26|5:518|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:519;p;1|1:18|3:3|4:19|5:520|6:50|7:40|14:22|4:19|4:19;1|1:18|3:3|4:26|5:521|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:522|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:523|6:131|7:132|14:22|4:19|4:19;1'
  324. ..'|1:18|3:3|4:19|5:524|6:131|7:132|14:22|4:19|4:19;1|3:3|4:4|5:525|6:76|7:137|13:10|4:4|4:4;n;4|9:16|10:526;p;1|3:3|4:4|5:527|6:76|7:137|8:10|4:4|4:4;1|3:3|4:4|5:528|6:76|7:7|4:4|4:4;n;3|9:117|10:140;4|9:108|10:142;p;1|1:18|3:3|4:26|5:529|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:530;p;1|1:18|3:3|4:26|5:531|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:532|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;1|1:18|3:3|4:19|5:533|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;p;1|1:18|3:3|4:19|5:5'
  325. ..'34|6:307|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:535|6:309|7:40|14:22|4:19|4:19;2;n;1|1:18|3:3|4:19|5:536|6:281|7:40|14:22|4:19|4:19;1|3:3|4:4|5:537|7:42|4:4|4:4;n;3|9:43|10:300;p;1|1:18|3:3|4:19|5:538|6:284|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:539|6:286|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:540|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:541|6:290|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:542|6:292|7:56|14:22|4:19|4:19;1|3:3|4:4|5:543|7:7|4:4|4:4;1|1:18|3:3|4:19|5:544|6:295|7:4'
  326. ..'0|14:22|4:19|4:19;1|1:18|3:3|4:19|5:545|6:297|7:40|14:22|4:19|4:19;1|3:3|4:4|5:546|7:42|4:4|4:4;1|1:18|3:3|4:19|5:547|6:302|7:56|14:22|4:19|4:19;1|1:18|3:3|4:66|5:548|6:76|7:51|14:22|4:66|4:66;n;3|9:23|10:288;p;1|1:18|3:3|4:19|5:549|6:305|7:40|14:22|4:19|4:19;n;3|9:23|10:550;p;1|1:18|3:3|4:19|5:551|6:307|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:552|6:309|7:40|14:22|4:19|4:19;1|3:3|4:4|5:553|6:50|7:77|4:4|4:4;1|1:18|3:3|4:19|5:554|6:312|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:555|6'
  327. ..':314|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:556|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5:557|6:318|7:56|14:22|4:19|4:19;1|3:3|4:4|5:558|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:559|6:321|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:560|6:323|7:56|14:22|4:19|4:19;1|3:3|4:4|5:561|6:50|7:77|4:4|4:4;1|1:18|3:3|4:66|5:562|6:76|7:51|14:22|4:66|4:66;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5:563|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:564;p;p;2;n;1|3:3|4:4|5:565|6:6|7:9|8:10|4:4|4:4;1'
  328. ..'|3:3|4:4|5:566|6:6|7:7|4:4|4:4;n;4|9:34|10:35;3|9:117|10:567;4|9:108|10:457;p;1|3:3|4:4|5:568|6:6|7:9|13:10|4:4|4:4;1|1:18|3:3|4:19|5:569|7:420|14:22|4:19|4:19;n;3|9:23|10:570;3|9:23|10:571;p;1|1:18|3:3|4:19|5:572|7:420|14:22|4:19|4:19;n;3|9:23|10:570;3|9:23|10:571;p;1|1:18|3:3|4:26|5:573|7:423|14:22|4:26|4:26;1|3:3|4:4|5:574|6:6|7:7|4:4|4:4;n;4|9:34|10:35;4|9:108|10:457;3|9:117|10:575;p;1|3:3|4:4|5:576|6:6|7:9|13:10|4:4|4:4;1|3:3|4:4|5:577|6:6|7:9|8:10|4:4|4:4;p;2;n;1|1:18|3:3'
  329. ..'|4:19|5:578|6:39|7:40|14:22|4:19|4:19;1|3:3|4:4|5:579|6:6|7:42|4:4|4:4;1|1:18|3:3|4:19|5:580|6:46|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:581|6:48|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:582|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:68;p;1|1:18|3:3|4:19|5:583|6:53|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:584|6:55|7:56|14:22|4:19|4:19;1|3:3|4:4|5:585|6:6|7:7|4:4|4:4;1|1:18|3:3|4:19|5:586|6:59|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:587|6:61|7:40|14:22|4:19|4:19;1|3:3|4:4|5:588|6:6|7:42|4'
  330. ..':4|4:4;n;3|9:43|10:589;3|9:43|10:44;p;1|1:18|3:3|4:19|5:590|6:65|7:56|14:22|4:19|4:19;1|1:18|3:3|4:66|5:591|6:50|7:51|14:22|4:66|4:66;1|1:18|3:3|4:19|5:592|6:70|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:593|6:72|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:594|6:74|7:40|14:22|4:19|4:19;1|3:3|4:4|5:595|6:76|7:77|4:4|4:4;1|1:18|3:3|4:19|5:596|6:81|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:597|6:83|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:598|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3'
  331. ..':3|4:19|5:599|6:86|7:56|14:22|4:19|4:19;1|3:3|4:4|5:600|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:601|6:89|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:602|6:91|7:56|14:22|4:19|4:19;1|3:3|4:4|5:603|6:76|7:77|4:4|4:4;n;3|9:78|10:604;3|9:78|10:465;p;1|1:18|3:3|4:19|5:605|6:50|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:606|6:76|7:40|14:22|4:19|4:19;p;2;n;2;n;1|1:18|3:3|4:19|5:607|6:281|7:40|14:22|4:19|4:19;1|3:3|4:4|5:608|7:42|4:4|4:4;1|1:18|3:3|4:19|5:609|6:284|7:40|14:22|4:19|4:19;1|1:18|3:3|4:1'
  332. ..'9|5:610|6:286|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:611|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:612;p;1|1:18|3:3|4:19|5:613|6:290|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:614|6:292|7:56|14:22|4:19|4:19;1|3:3|4:4|5:615|7:7|4:4|4:4;1|1:18|3:3|4:19|5:616|6:295|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:617|6:297|7:40|14:22|4:19|4:19;1|3:3|4:4|5:618|7:42|4:4|4:4;n;3|9:43|10:619;3|9:43|10:620;p;1|1:18|3:3|4:19|5:621|6:302|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:622|6:76|7:51|14:22|4:19|4:19'
  333. ..';1|1:18|3:3|4:19|5:623|6:305|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:624|6:307|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:625|6:309|7:40|14:22|4:19|4:19;1|3:3|4:4|5:626|6:50|7:42|4:4|4:4;1|1:18|3:3|4:19|5:627|6:312|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:628|6:314|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:629|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:630;p;1|1:18|3:3|4:19|5:631|6:318|7:56|14:22|4:19|4:19;1|3:3|4:19|5:632|6:50|7:7|4:19|4:19;1|1:18|3:3|4:19|5:633|6:321|7:56|14:22|4:19|4:19;1|'
  334. ..'1:18|3:3|4:19|5:634|6:323|7:56|14:22|4:19|4:19;1|3:3|4:4|5:635|6:50|7:42|4:4|4:4;n;3|9:43|10:636;p;1|1:18|3:3|4:19|5:637|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:638|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:639;p;p;2;n;1|1:18|3:3|4:19|5:640|6:641|7:40|14:22|4:19|4:19;1|3:3|4:4|5:642|6:76|7:42|4:4|4:4;n;3|9:43|10:643;p;1|1:18|3:3|4:19|5:644|6:645|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:646|6:647|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:648|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5'
  335. ..':649|6:650|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:651|6:652|7:56|14:22|4:19|4:19;1|3:3|4:4|5:653|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:654|6:655|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:656|6:657|7:40|14:22|4:19|4:19;1|3:3|4:4|5:658|6:76|7:42|4:4|4:4;n;3|9:43|10:643;3|9:43|10:659;p;1|1:18|3:3|4:19|5:660|6:661|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:662|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:663|6:50|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:664|6:665|7:40|14:22|4:19|4:19;1|1:18|3:3|'
  336. ..'4:19|5:666|6:667|7:40|14:22|4:19|4:19;1|3:3|4:4|5:668|7:42|4:4|4:4;n;3|9:43|10:669;p;1|1:18|3:3|4:19|5:670|6:671|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:672|6:673|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:674|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:675|6:676|7:56|14:22|4:19|4:19;1|3:3|4:4|5:677|7:7|4:4|4:4;1|1:18|3:3|4:19|5:678|6:679|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:680|6:681|7:56|14:22|4:19|4:19;1|3:3|4:4|5:682|7:42|4:4|4:4;n;3|9:43|10:669;p;1|1:18|3:3|4:19|5:683|6:6|7:51'
  337. ..'|14:22|4:19|4:19;1|1:18|3:3|4:19|5:684|7:40|14:22|4:19|4:19;n;3|9:23|10:685;p;p;2;n;1|1:18|3:3|4:19|5:686|6:175|7:40|14:22|4:19|4:19;1|3:3|4:4|5:687|6:50|7:42|4:4|4:4;n;3|9:43|10:688;p;1|1:18|3:3|4:19|5:689|6:178|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:690|6:180|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:691|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:692|6:184|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:693|6:186|7:56|14:22|4:19|4:19;1|3:3|4:4|5:694|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:695|6:1'
  338. ..'89|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:696|6:191|7:40|14:22|4:19|4:19;1|3:3|4:4|5:697|6:50|7:42|4:4|4:4;n;3|9:43|10:698;p;1|1:18|3:3|4:19|5:699|6:195|7:56|14:22|4:19|4:19;1|1:18|3:3|4:66|5:700|7:51|14:22|4:66|4:66;n;3|9:23|10:701;p;1|1:18|3:3|4:19|5:702|6:76|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:703|6:199|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:704|6:201|7:40|14:22|4:19|4:19;1|3:3|4:4|5:705|6:6|7:42|4:4|4:4;1|1:18|3:3|4:19|5:706|6:204|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:7'
  339. ..'07|6:206|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:708|7:51|14:22|4:19|4:19;n;3|9:23|10:709;p;1|1:18|3:3|4:19|5:710|6:210|7:56|14:22|4:19|4:19;1|3:3|4:4|5:711|6:6|7:7|4:4|4:4;1|1:18|3:3|4:19|5:712|6:213|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:713|6:215|7:56|14:22|4:19|4:19;1|3:3|4:4|5:714|6:6|7:42|4:4|4:4;1|1:18|3:3|4:19|5:715|7:51|14:22|4:19|4:19;n;3|9:23|10:709;p;1|1:18|3:3|4:19|5:716|6:6|7:40|14:22|4:19|4:19;n;3|9:23|10:717;p;p;p;1|1:18|3:3|4:19|5:718|6:318|7:56|14:22|4:19|4:19;'
  340. ..'2;n;1|3:3|4:4|5:719|6:76|7:9|8:10|4:4|4:4;1|3:3|4:4|5:720|6:76|7:7|4:4|4:4;n;3|9:117|10:721;4|9:34|10:722;4|9:108|10:119;p;1|3:3|4:4|5:723|6:76|7:9|13:10|4:4|4:4;1|1:18|3:3|4:19|5:724|6:50|7:725|14:22|4:19|4:19;n;3|9:23|10:726;3|9:23|10:727;p;1|1:18|3:3|4:19|5:728|6:50|7:725|14:22|4:19|4:19;n;3|9:23|10:727;p;1|1:18|3:3|4:26|5:729|6:50|7:730|14:22|4:26|4:26;1|3:3|4:4|5:731|6:76|7:7|4:4|4:4;n;3|9:117|10:732;p;1|3:3|4:4|5:733|6:76|7:9|13:10|4:4|4:4;n;4|9:16|10:123;3|9:11|10:734;p;'
  341. ..'1|3:3|4:4|5:735|6:76|7:9|8:10|4:4|4:4;n;4|9:13|10:155;p;p;1|1:18|3:3|4:19|5:736|6:323|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:737|6:314|7:40|14:22|4:19|4:19;1|3:3|4:4|5:738|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:739|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|3:3|4:4|5:740|6:50|7:77|4:4|4:4;2;n;1|1:18|3:3|4:19|5:741|6:281|7:40|14:22|4:19|4:19;1|3:3|4:4|5:742|7:42|4:4|4:4;n;3|9:43|10:300;p;1|1:18|3:3|4:19|5:743|6:284|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:744|6:286|7:40|14:22|4:19|'
  342. ..'4:19;1|1:18|3:3|4:19|5:745|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:746|6:290|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:747|6:292|7:56|14:22|4:19|4:19;1|3:3|4:4|5:748|7:7|4:4|4:4;1|1:18|3:3|4:19|5:749|6:295|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:750|6:297|7:40|14:22|4:19|4:19;1|3:3|4:19|5:751|7:42|4:19|4:19;1|1:18|3:3|4:19|5:752|6:302|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:753|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:288;p;1|1:18|3:3|4:19|5:754|6:305|7:40|14:22|4:19|4:19;n;3|9:23|'
  343. ..'10:755;p;1|1:18|3:3|4:19|5:756|6:307|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:757|6:309|7:40|14:22|4:19|4:19;1|3:3|4:4|5:758|6:50|7:77|4:4|4:4;n;3|9:78|10:759;p;1|1:18|3:3|4:19|5:760|6:312|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:761|6:314|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:762|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:763|6:318|7:56|14:22|4:19|4:19;1|3:3|4:4|5:764|6:50|7:7|4:4|4:4;1|1:18|3:3|4:19|5:765|6:321|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:766|6:323|7:56|14:22|4:19|4:'
  344. ..'19;1|3:3|4:4|5:767|6:50|7:77|4:4|4:4;n;3|9:78|10:768;3|9:78|10:759;p;1|1:18|3:3|4:19|5:769|6:76|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:770|6:50|7:40|14:22|4:19|4:19;p;1|1:18|3:3|4:19|5:771|6:321|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:772|6:76|7:51|14:22|4:19|4:19;n;3|9:23|10:316;p;1|1:18|3:3|4:19|5:773|6:50|7:40|14:22|4:19|4:19;1|3:3|4:4|5:774|6:50|7:77|4:4|4:4;n;3|9:78|10:775;p;2;n;1|3:3|4:4|5:776|6:76|7:77|4:4|4:4;1|1:18|3:3|4:26|5:777|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:2'
  345. ..'6|5:778|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:779|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:780;p;1|1:18|3:3|4:19|5:781|6:76|7:40|14:22|4:19|4:19;1|3:3|4:4|5:782|6:76|7:77|4:4|4:4;n;3|9:78|10:783;p;1|3:3|4:4|5:784|6:76|7:7|4:4|4:4;n;3|9:117|10:785;3|9:117|10:786;p;1|1:18|3:3|4:26|5:787|6:788|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:789|6:788|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:790|6:788|7:132|14:22|4:19|4:19;1|3:3|4:19|5:791|6:50|7:137|13:10|4:19|4:19;n;3|9:241|10:792;p;1|'
  346. ..'3:3|4:4|5:793|6:50|7:137|8:10|4:4|4:4;1|1:18|3:3|4:26|5:794|6:788|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:795|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:26|5:796|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:797|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:798;p;1|3:3|4:4|5:799|6:50|7:7|4:4|4:4;n;3|9:117|10:800;3|9:117|10:801;4|9:108|10:802;4|9:34|10:803;p;1|1:18|3:3|4:19|5:804|6:76|7:40|14:22|4:19|4:19;p;2;n;1|3:3|4:4|5:805|6:76|7:7|4:4|4:4;1|3:3|4:4|5:806|6:76|7:9|13:10|4:4|4:4;n;3|9:11|1'
  347. ..'0:807;4|9:16|10:808;p;1|1:18|3:3|4:19|5:809|6:50|7:385|14:22|4:19|4:19;1|1:18|3:3|4:19|5:810|6:50|7:385|14:22|4:19|4:19;1|1:18|3:3|4:26|5:811|6:50|7:382|14:22|4:26|4:26;n;3|9:23|10:812;3|9:23|10:813;p;1|3:3|4:4|5:814|6:76|7:9|8:10|4:4|4:4;n;3|9:11|10:807;4|9:13|10:517;p;1|3:3|4:4|5:815|6:76|7:9|8:10|4:4|4:4;n;4|9:13|10:517;3|9:11|10:816;p;1|3:3|4:4|5:817|6:76|7:7|4:4|4:4;1|3:3|4:4|5:818|6:76|7:9|13:10|4:4|4:4;n;4|9:16|10:808;3|9:11|10:816;p;p;2;n;1|3:3|4:4|5:819|6:76|7:7|4:4|4:'
  348. ..'4;n;4|9:108|10:119;3|9:117|10:118;p;1|3:3|4:4|5:820|6:76|7:9|13:10|4:4|4:4;n;3|9:11|10:122;4|9:16|10:123;p;1|1:18|3:3|4:26|5:821|6:50|7:40|14:22|4:26|4:26;n;3|9:23|10:152;p;1|1:18|3:3|4:19|5:822|6:50|7:40|14:22|4:19|4:19;1|3:3|4:19|5:823|6:76|7:9|8:10|4:19|4:19;n;3|9:11|10:122;p;1|1:18|3:3|4:26|5:824|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:825|6:50|7:40|14:22|4:19|4:19;1|1:18|3:3|4:26|5:826|6:131|7:132|14:22|4:26|4:26;1|1:18|3:3|4:26|5:827|6:131|7:132|14:22|4:26|4:26;1|1:18'
  349. ..'|3:3|4:19|5:828|6:131|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:829|6:131|7:132|14:22|4:19|4:19;1|3:3|4:4|5:830|6:76|7:137|13:10|4:4|4:4;n;3|9:241|10:831;p;1|3:3|4:4|5:832|6:76|7:137|8:10|4:4|4:4;1|3:3|4:4|5:833|6:76|7:7|4:4|4:4;n;4|9:108|10:142;3|9:117|10:140;3|9:117|10:141;4|9:34|10:143;p;1|1:18|3:3|4:26|5:834|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:26|5:835|6:50|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:836|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:147;p;1|1:18|3:3|4:19|5:837|6:50|7:4'
  350. ..'0|14:22|4:19|4:19;p;2;n;1|3:3|4:4|5:838|6:50|7:7|4:4|4:4;n;3|9:117|10:800;3|9:117|10:801;4|9:34|10:839;p;1|3:3|4:4|5:840|6:50|7:9|13:10|4:4|4:4;1|1:18|3:3|4:26|5:841|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:26|5:842|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:19|5:843|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:126;p;1|1:18|3:3|4:19|5:844|6:76|7:40|14:22|4:19|4:19;1|3:3|4:4|5:845|6:50|7:9|8:10|4:4|4:4;n;3|9:11|10:846;4|9:13|10:847;p;1|1:18|3:3|4:26|5:848|6:788|7:132|14:22|4:26|4:26;1|1:18|3'
  351. ..':3|4:26|5:849|6:788|7:132|14:22|4:26|4:26;1|1:18|3:3|4:19|5:850|6:788|7:132|14:22|4:19|4:19;1|1:18|3:3|4:19|5:851|6:788|7:132|14:22|4:19|4:19;1|3:3|4:4|5:852|6:50|7:42|8:10|4:4|4:4;1|3:3|4:4|5:853|6:50|7:7|4:4|4:4;n;3|9:117|10:854;p;1|1:18|3:3|4:26|5:855|6:76|7:40|14:22|4:26|4:26;1|1:18|3:3|4:26|5:856|6:76|7:40|14:22|4:26|4:26;n;3|9:23|10:171;p;1|1:18|3:3|4:19|5:857|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:858;p;1|1:18|3:3|4:19|5:859|6:76|7:40|14:22|4:19|4:19;1|3:3|4:4|5:860|6:50|'
  352. ..'7:42|13:10|4:4|4:4;n;3|9:43|10:861;p;p;2;n;1|3:3|4:4|5:862|7:7|4:4|4:4;1|3:3|4:4|5:863|7:137|4:4|4:4;n;3|9:241|10:669;p;1|3:3|4:19|5:864|7:137|4:19|4:19;n;3|9:241|10:865;p;1|1:18|3:3|4:19|5:866|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:867|6:679|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:868|6:667|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:869|6:673|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:870|6:665|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:871|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:872|6:'
  353. ..'6|7:51|14:22|4:19|4:19;n;3|9:23|10:873;p;1|1:18|3:3|4:19|5:874|6:652|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:875|6:671|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:876|6:676|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:877|6:645|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:878|6:641|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:879|6:657|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:880|6:681|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:881|6:661|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:882|6:650|7:40|14:22|4:19|4:19;'
  354. ..'1|1:18|3:3|4:19|5:883|6:655|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:884|6:647|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:885|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:886|6:50|7:40|14:22|4:19|4:19;n;3|9:23|10:887;p;1|1:18|3:3|4:66|5:888|6:6|7:51|14:22|4:66|4:66;1|3:3|4:4|5:889|6:50|7:7|4:4|4:4;1|3:3|4:4|5:890|6:50|7:137|4:4|4:4;n;3|9:241|10:891;p;1|3:3|4:19|5:892|6:50|7:137|4:19|4:19;n;3|9:241|10:891;p;p;2;n;1|3:3|4:4|5:893|6:76|7:7|4:4|4:4;1|3:3|4:4|5:894|6:76|7:137|4:4|4:4;1|3:3|'
  355. ..'4:4|5:895|6:76|7:137|4:4|4:4;1|1:18|3:3|4:19|5:896|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:897;p;1|1:18|3:3|4:19|5:898|6:89|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:899|6:74|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:900|6:83|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:901|6:72|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:902|6:76|7:40|14:22|4:19|4:19;n;3|9:23|10:903;p;1|1:18|3:3|4:66|5:904|6:50|7:51|14:22|4:66|4:66;n;3|9:23|10:897;p;1|1:18|3:3|4:19|5:905|6:55|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19'
  356. ..'|5:906|6:81|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:907|6:86|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:908|6:46|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:909|6:39|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:910|6:61|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:911|6:91|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:912|6:65|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:913|6:53|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:914|6:59|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:915|6:48|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5'
  357. ..':916|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:917;p;1|1:18|3:3|4:19|5:918|7:40|14:22|4:19|4:19;n;3|9:23|10:919;p;1|1:18|3:3|4:66|5:920|6:50|7:51|14:22|4:66|4:66;n;3|9:23|10:917;p;1|3:3|4:4|5:921|7:7|4:4|4:4;1|3:3|4:4|5:922|7:137|4:4|4:4;1|3:3|4:19|5:923|7:137|4:19|4:19;p;2;n;2;2;p;2;n;1|1:18|3:3|4:19|5:924|6:641|7:40|14:22|4:19|4:19;1|3:3|4:4|5:925|6:76|7:42|4:4|4:4;n;3|9:43|10:926;p;1|1:18|3:3|4:19|5:927|6:645|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:928|6:647|7:40|14:22|4:19|4:19;'
  358. ..'1|1:18|3:3|4:19|5:929|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:930|6:650|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:931|6:652|7:56|14:22|4:19|4:19;1|3:3|4:4|5:932|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:933|6:655|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:934|6:657|7:40|14:22|4:19|4:19;1|3:3|4:19|5:935|6:76|7:42|4:19|4:19;n;3|9:43|10:936;3|9:43|10:926;p;1|1:18|3:3|4:19|5:937|6:661|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:938|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:939|6:50|7:40|14:22|4:1'
  359. ..'9|4:19;1|1:18|3:3|4:19|5:940|6:665|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:941|6:667|7:40|14:22|4:19|4:19;1|3:3|4:4|5:942|7:77|4:4|4:4;n;3|9:78|10:943;p;1|1:18|3:3|4:19|5:944|6:671|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:945|6:673|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:946|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:947|6:676|7:56|14:22|4:19|4:19;1|3:3|4:4|5:948|7:7|4:4|4:4;1|1:18|3:3|4:19|5:949|6:679|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:950|6:681|7:56|14:22|4:19|4:19;1|3:3|4:19'
  360. ..'|5:951|7:77|4:19|4:19;n;3|9:78|10:952;3|9:78|10:943;p;1|1:18|3:3|4:19|5:953|6:6|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:954|7:40|14:22|4:19|4:19;p;2;n;1|1:18|3:3|4:19|5:955|6:39|7:40|14:22|4:19|4:19;1|3:3|4:4|5:956|6:6|7:42|4:4|4:4;n;3|9:43|10:44;p;1|1:18|3:3|4:19|5:957|6:46|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:958|6:48|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:959|6:50|7:51|14:22|4:19|4:19;1|1:18|3:3|4:19|5:960|6:53|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:961|6:55|7:56|14:22|4:19'
  361. ..'|4:19;1|3:3|4:4|5:962|6:6|7:7|4:4|4:4;1|1:18|3:3|4:19|5:963|6:59|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:964|6:61|7:40|14:22|4:19|4:19;1|3:3|4:19|5:965|6:6|7:42|4:19|4:19;1|1:18|3:3|4:19|5:966|6:65|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:967|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:68;p;1|1:18|3:3|4:19|5:968|6:70|7:40|14:22|4:19|4:19;n;3|9:23|10:969;p;1|1:18|3:3|4:19|5:970|6:72|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:971|6:74|7:40|14:22|4:19|4:19;1|3:3|4:4|5:972|6:76|7:77|4:4|4:4;1|1'
  362. ..':18|3:3|4:19|5:973|6:81|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:974|6:83|7:40|14:22|4:19|4:19;1|1:18|3:3|4:19|5:975|6:50|7:51|14:22|4:19|4:19;n;3|9:23|10:94;p;1|1:18|3:3|4:19|5:976|6:86|7:56|14:22|4:19|4:19;1|3:3|4:4|5:977|6:76|7:7|4:4|4:4;1|1:18|3:3|4:19|5:978|6:89|7:56|14:22|4:19|4:19;1|1:18|3:3|4:19|5:979|6:91|7:56|14:22|4:19|4:19;1|3:3|4:4|5:980|6:76|7:77|4:4|4:4;n;3|9:78|10:79;p;1|1:18|3:3|4:66|5:981|6:50|7:51|14:22|4:66|4:66;1|1:18|3:3|4:19|5:982|6:76|7:40|14:22|4:19|4:19;'
  363. ..'n;3|9:23|10:983;p;p;2|1:984;n;5|15:22|16:985;2;n;2|1:984;n;1|4:19|5:986|6:987|17:988|7:989|13:10|18:22|14:22|4:19|4:19;n;6|19:10;4|9:23|10:990;p;7|4:991|5:992|6:993|17:994|7:995|14:996|4:991|4:991;1|4:19|5:997|6:998|17:999|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1003;p;1|4:19|5:1004|6:1005|17:1006|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1007;p;1|4:19|5:1008|6:1009|17:1010|7:1011|18:22|4:19|4:19;n;6|19:10;9|22:1012;4|9:23|10:1013;p;1|4:19|5:1014'
  364. ..'|6:1015|17:1016|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1017;p;1|1:1018|4:19|5:1019|6:993|17:1020|7:1021|13:10|8:10|23:10|21:10|4:19|4:19;n;10;11|24:1022;12|1:1023|17:1024|25:1025;9|22:1026;3|9:23|10:1027;3|9:1028|10:1029;4|9:1030|10:1031;p;1|4:19|5:1032|6:1033|17:1034|7:51|4:19|4:19;n;3|9:1028|10:1035;p;1|26:3|5:1036|6:1037|17:1038|7:1000|20:10|18:22|21:1001|14:22;n;8|9:1002|10:1039;p;1|4:19|5:1040|6:1033|17:1041|7:7|4:19|4:19;1|4:19|5:1042|6:1043|17:1044|7:98'
  365. ..'9|13:10|18:10|4:19|4:19;n;6|19:10;p;1|4:19|5:1045|6:1033|17:1046|7:1047|23:10|4:19|4:19;n;4|9:1048|10:1049;3|9:1028|10:1050;p;1|1:1051|4:991|5:1052|6:1033|17:1053|7:1054|14:22|4:991|4:991;n;13|1:1055|27:1056;10;4|9:1057|10:1058;p;1|4:19|5:1059|6:1033|17:1060|7:7|4:19|4:19;n;3|9:117|10:1061;p;1|4:19|26:3|5:1062|6:1033|17:1063|7:7|4:19|4:19;1|4:19|5:1064|6:1033|17:1065|7:1066|4:19|4:19;n;3|9:1028|10:1067;p;1|5:1068|6:1069|17:1070|7:1000|20:10|18:22|21:1001|14:22;n;8|9:1002|10:103'
  366. ..'9;p;7|1:1071|4:991|5:1072|6:993|17:1073|7:995|14:996|4:991|4:991;n;3|9:1057|10:1074;p;1|4:19|5:1075|6:1076|17:1077|7:1011|18:22|4:19|4:19;n;6|19:10;9|22:1012;4|9:23|10:1078;p;1|4:19|5:1079|6:1033|17:1080|7:51|4:19|4:19;n;3|9:1028|10:1081;p;1|4:19|5:1082|6:1033|17:1083|7:1066|4:19|4:19;n;3|9:1028|10:1084;p;1|26:3|5:1085|6:1086|17:1087|7:1000|20:10|18:22|21:1001|14:22;n;8|9:1002|10:1088;p;1|4:19|5:1089|6:1090|17:1091|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1092;p'
  367. ..';1|4:19|5:1093|6:1094|17:1095|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1096;p;1|4:19|5:1097|6:1098|17:1099|7:1000|20:10|18:22|21:1001|14:22|4:19|4:19;n;8|9:1002|10:1100;p;14|1:1101;15|1:1102|28:1103;1|1:1104|5:1105|6:1106|17:1107|7:1108|14:22;n;13|1:1055|27:1056;16|29:1109|30:996;10;4|9:1057|10:1110;p;1|1:1111|5:1112|6:993|17:1113|7:1108|14:22;n;13|1:1055|27:1056;10;16|29:1109|30:996;4|9:1057|10:1114;p;1|5:1115|6:1116|17:1117|7:1000|20:10|18:22|21:1001|14:22;n;8'
  368. ..'|9:1002|10:1088;p;p;1|1:1118|3:3|4:1119|5:1120|6:6|7:1054|31:985|14:22|4:1119|4:1119;n;13|1:1055|27:1056;10;p;p;p;p;')
  369. for _,Object in pairs(Objects) do
  370. Object.Parent = script and script.Parent==workspace and script or workspace
  371. end
  372. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement