Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.11 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 22613
  3.  
  4.  
  5. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  6. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  7. local function DecodeUnion(t)
  8. local r = function()return table.remove(t,1) end
  9. local split = function(str,sep)
  10. local fields = {}
  11. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  12. return fields
  13. end
  14. local m = Instance.new("Folder")
  15. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  16. m.Archivable = false
  17. m.Parent = game:GetService("ServerStorage")
  18. local Union,Subtract = {},{}
  19. repeat
  20. local isNegate = false
  21. local class = r()
  22. if class=='-' then
  23. isNegate = true
  24. class = r()
  25. end
  26. if class=='n' then
  27. local d = {}
  28. local a = r()
  29. repeat
  30. table.insert(d,a)
  31. a = r()
  32. until a=='p'
  33. local u = DecodeUnion(d)
  34. if u then
  35. table.insert(isNegate and Subtract or Union,u)
  36. end
  37. else
  38. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  39. local part = Instance.new(Part_Classes[tonumber(class)])
  40. part.Size = size
  41. part.Position = pos
  42. part.Orientation = rot
  43. if r()=="+" then
  44. local m,ms = r(),Vector3.new(unpack(split(r())))
  45. if tonumber(m)==6 then
  46. part.Shape = Enum.PartType.Cylinder
  47. elseif tonumber(m)==7 then
  48. part.Shape = Enum.PartType.Ball
  49. else
  50. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  51. if tonumber(m)~=8 then
  52. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  53. end
  54. mesh.Scale = ms
  55. mesh.Parent = part
  56. end
  57. end
  58. table.insert(isNegate and Subtract or Union,part)
  59. end
  60. until #t<=0
  61. local first = Union[1]
  62. first.Parent = m
  63. if #Union>1 then
  64. first = first:UnionAsync(Union)
  65. first.Parent = m
  66. end
  67. if #Subtract>0 then
  68. first = first:SubtractAsync(Subtract)
  69. first.Parent = m
  70. end
  71. first.Parent = nil
  72. m:Destroy()
  73. return first
  74. end
  75. local Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  76. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  77. function(t,f)
  78. for a,b in pairs(t) do
  79. f(a,b)
  80. end
  81. end
  82. local Types = {
  83. Color3 = Color3.new,
  84. Vector3 = Vector3.new,
  85. Vector2 = Vector2.new,
  86. UDim = UDim.new,
  87. UDim2 = UDim2.new,
  88. CFrame = CFrame.new,
  89. Rect = Rect.new,
  90. NumberSequence = function(...)
  91. local a = {...}
  92. local t = {}
  93. repeat
  94. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  95. until #a==0
  96. return NumberSequence.new(t)
  97. end,
  98. ColorSequence = function(...)
  99. local a = {...}
  100. local t = {}
  101. repeat
  102. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  103. until #a==0
  104. return ColorSequence.new(t)
  105. end,
  106. number = tonumber,
  107. boolean = function(a)
  108. return a=="true"
  109. end
  110. }
  111. split = function(str,sep)
  112. if not str then return end
  113. local fields = {}
  114. local ConcatNext = false
  115. str:gsub(("([^%s]+)"):format(sep),function(c)
  116. if ConcatNext == true then
  117. fields[#fields] = fields[#fields]..sep..c
  118. ConcatNext = false
  119. else
  120. fields[#fields+1] = c
  121. end
  122. if c:sub(#c)=="\\" then
  123. c = fields[#fields]
  124. fields[#fields] = c:sub(1,#c-1)
  125. ConcatNext = true
  126. end
  127. end)
  128. return fields
  129. end
  130. RemoveAndSplit = function(t)
  131. return split(table_remove(t,1),comma)
  132. end
  133. t = split(str,";")
  134. props = RemoveAndSplit(t)
  135. classes = RemoveAndSplit(t)
  136. values = split(table_remove(t,1),'|')
  137. ICList = RemoveAndSplit(t)
  138. InstanceList = {}
  139. Model = inst"Model"
  140. CurPar = Model
  141. table_foreach(t,function(ct,c)
  142. if c=="n" or c=="p" then
  143. CurPar = c=="n" and LastIns or CurPar[parnt]
  144. else
  145. ct = split(c,"|")
  146. local class = classes[tonum(table_remove(ct,1))]
  147. if class=="UnionOperation" then
  148. LastIns = {Locked="true",Anchored="true",UsePartColor="true"}
  149. else
  150. LastIns = inst(class)
  151. if LastIns:IsA"Script" then
  152. s(LastIns)
  153. end
  154. end
  155.  
  156. local function SetProperty(LastIns,p,str,s)
  157. s = Types[typeof(LastIns[p])]
  158. LastIns[p] = s and s(unpack(split(str,comma))) or str
  159. end
  160.  
  161. local UnionData
  162. table_foreach(ct,function(s,p,a,str)
  163. a = p:find":"
  164. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  165. if p=="UnionData" then
  166. UnionData = split(str," ")
  167. return
  168. end
  169. if class=="UnionOperation" then
  170. LastIns[p] = str
  171. return
  172. end
  173. SetProperty(LastIns,p,str)
  174. end)
  175.  
  176. if UnionData then
  177. local LI_Data = LastIns
  178. LastIns = DecodeUnion(UnionData)
  179. table_foreach(LI_Data,function(p,str)
  180. SetProperty(LastIns,p,str)
  181. end)
  182. end
  183. table.insert(InstanceList,LastIns)
  184. LastIns[parnt] = CurPar
  185. end
  186. end)
  187. table_remove(ICList,1)
  188. table_foreach(ICList,function(a,b)
  189. b = split(b,">")
  190. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  191. end)
  192.  
  193. return Model
  194. end
  195.  
  196. local Model = Decode('Name,Anchored,Color,Material,Position,Size,UnionData,Orientation,CanCollide,Scale,VertexColor,MeshId,TextureId,MeshType,TopSurface,Shape,BottomSurface,Transparency,Range,Brightness,Texture,Face;Part,U'
  197. ..'nionOperation,SpecialMesh,PointLight,SurfaceLight,SpawnLocation,Decal;Part|true|0.705,0.501,1|Slate|2.699,17.5,-117.1|34.799,1.02,24.799|1 34.799,1,14 2.699,17.49,-111.7 0,0,0 = n 1 1,10.799,15 2.1,17'
  198. ..'.51,-124.1 0,180,-90 + 6 1,1,1 1 8.399,1,20 2.099,17.49,-117.5 0,0,0 = p|0.356,0.364,0.411|Concrete|-21.701,17.299,-130.3|13.4,4.4,2|1 13.4,4.4,2 -21.701,17.299,-130.3 0,0,0 = - 1 12.6,4,0.399 -21.701'
  199. ..',17.099,-129.3 0,0,0 =|0.737,0.607,0.364|WoodPlanks|-56.701,19.7,-119.801|3.8,4,0.6|1 3.799,2.6,0.6 -56.701,20.4,-119.801 0,0,0 = 1 0.599,2.2,0.6 -56.701,18.8,-119.801 0,0,0 =|0.96,0.803,0.188|2.524,2'
  200. ..'7.726,-130.19|0,0,180|1.66,3.4,1|1 0.6,3.4,1 2.523,27.726,-130.19 0,0,180 = 1 0.4,2,1 2.902,27.093,-130.19 0,0,165 = 1 0.4,2,1 2.081,27.053,-130.19 0,0,-169 =|nomedele123|0.886,0.607,0.25|Wood|-64.3,1'
  201. ..'2.78,43.799|0,180,0|1,1.6,1|2,2,2|1.6,2.4,0.1|http://www.roblox.com/asset/?id=150062910|http://www.roblox.com/asset/?id=150062934|FileMesh|0.549,0.356,0.623|Brick|-18.701,22.499,66.299|0,-135,0|50,23,'
  202. ..'5|Smooth|-53.801,11.49,61.299|0,90,-90|1,15,15|Cylinder|-6.201,22.579,39.799|0,-90,0|17,23,17|0.972,0.972,0.972|-81.3,13.48,20.092|0,135,-90|1,20,20|0.388,0.372,0.384|-54.801,11.5,167.798|78,1,75|-66.'
  203. ..'3,12.78,39.799|-58.8,17.49,-31.701|-56.301,93.578,145.097|0,90,30|1,44,77|-30.74,17.469,12.86|0,-180,-90|-77.74,17.469,12.86|-81.3,12.48,21.506|Neon|1|-53.801,11.299,35.799|1,12,12.199|20|-72.74,13.96'
  204. ..',12.86|8,20,20|-54.201,33.379,35.799|0.431,0.6,0.792|Ice|0.399|29.474,17.05,-107.43|121,0.6,44.599|-21.501,17.9,-111.701|0,90,0|14,0.2,13.8|27,17.9,-111.701|14,0.2,14|-87.901,28.899,-108|25.799,24,45.'
  205. ..'4|-0.001,28.899,-130.2|201.6,24,1|-0.276,22.726,-130.19|0,0,-90|1 0.6,3.4,1 -0.276,22.725,-130.19 0,0,-90 = 1 0.4,2,1 0.357,23.105,-130.19 0,0,-105 = 1 0.4,2,1 0.397,22.283,-130.19 0,0,-79 =|0.803,0.8'
  206. ..'03,0.803|SmoothPlastic|-33.401,29.399,-87.101|-90,-90,0|2,1.2,4|2.099,2.099,2.099|http://www.roblox.com/asset/?id=152065954|http://www.roblox.com/asset/?id=152163832|-5.301,24.899,-129.9|4.599,0.399,1'
  207. ..'|-12.801,29.399,-87.101|-5.001,22.899,-129.9|4,0.399,1|-12.801,29.399,-129.301|-4.701,24.099,-129.9|3.399,0.399,1|17.399,29.399,-129.301|17.399,29.399,-87.101|-48.001,29.399,-87.101|-29.74,16.48,13.86'
  208. ..'|-27.301,15.48,19.092|-51.301,12.81,47.799|-45.301,12.78,26.799|-56.8,27.999,203.298|4,32,74|-45.701,17.6,-49.7|0,180,-90|1,9,9|-32.701,17.6,-65.7|-41.301,12.78,38.799|-39.701,17.6,-57.7|-75.2,25.499,'
  209. ..'5.899|1,7,9|-32.701,17.6,-49.7|-50.301,12.78,23.799|-31.201,25.499,5.899|-41.301,12.78,32.799|-39.701,17.6,-41.701|-27.301,14.48,20.506|-81.3,14.48,18.506|-63.8,17.48,-38.701|-81.3,15.48,17.092|-47.20'
  210. ..'1,12.78,17.399|-17.801,27.999,167.798|4,32,75|-101.2,22.579,39.799|-53.2,12.78,17.399|-49.201,12.78,17.399|-19.801,58.899,196.798|95.8,22,22|-91.8,78.498,166.798|4,69,75|-55.401,12.78,18.699|0.694,0.8'
  211. ..'98,0.65|Grass|-54.801,11.74,168.798|42,1,45|-55.301,60.499,132.298|4,31,77|-53.3,12.78,18.699|-51.301,12.78,18.699|-47.301,12.78,18.699|-91.8,27.999,167.798|-37.901,11.74,151.298|0,90,90|1,13,14|-19.8'
  212. ..'01,54.399,135.798|86.8,22,22|-59.3,12.78,17.399|-55.301,12.78,17.399|-37.901,11.74,187.298|-59.4,12.78,18.699|-17.801,78.498,166.798|-57.3,12.78,17.399|-53.301,14.901,132.298|10,180,0|29,23,2|25|7|0.0'
  213. ..'66,0.066,0.066|-31.101,25.499,5.999|1,5,6|-66.3,12.78,34.799|-57.4,12.78,18.699|-85.8,57.499,136.798|93,22,22|-49.301,12.78,18.699|-70.9,11.74,187.298|-61.3,12.78,14.799|-70.9,11.74,151.298|-51.201,12'
  214. ..'.78,17.399|-59.3,12.81,46.799|-63.3,12.78,27.799|-52.801,30.299,2.899|10,-90,0|1,4,8|-53.301,12.78,22.799|-61.4,12.78,18.699|-85.8,60.899,197.798|99.8,22,22|-56.8,35.899,-85.2|16,10,1|-61.3,12.78,25.7'
  215. ..'99|-75.1,25.499,5.999|-43.301,12.81,42.799|-59.3,12.78,24.799|-56.8,17.51,-74.7|-49.201,12.78,14.799|-53.801,33.999,60.799|143,2,112|0,39.899,-64|132.6,2,201.6|-47.201,12.78,14.799|-106.2,22.579,26.79'
  216. ..'9|41,23,5|-63.8,17.5,-69.7|-45.301,12.81,44.799|-27.301,12.48,23.506|-49.301,12.81,46.799|-42.201,22.999,7.299|-27.301,13.48,22.092|-47.301,12.78,24.799|Blank star|1,1,0|-53.801,16.38,21.799|4,4.8,1|3'
  217. ..',3,3|1,1,0.1|http://www.roblox.com/asset/?id=120647846|-55.301,64.383,184.298|-35.74,13.97,12.86|-63.8,17.49,-56.7|30,1,14|-42.301,12.78,30.799|-53.2,12.78,14.799|-55.301,12.81,47.799|-70.8,22.499,107'
  218. ..'.299|-71.8,26.399,-85.1|1,7,6|-53.301,12.81,47.799|-46.301,24.499,-84.99|1,2,1|-0.701,22.549,26.799|-46.301,23.799,-85.1|3,5,1|-66.3,12.78,31.799|-43.301,12.78,28.799|-66.3,12.78,37.799|-46.301,23.799'
  219. ..',-85|2,4,1|-35.701,22.499,107.299|-56.301,80.9,172.298|80,0,180|-41.301,12.78,34.799|-53.801,11.48,69.299|126,1,112|-57.3,48.932,177.298|-80,-180,-180|-87.76,22.579,66.399|0,-45,0|-71.317,17,82.301|34'
  220. ..',15,15|-35.318,17,82.301|-62.3,12.81,45.799|-51.201,12.78,14.799|-47.301,12.81,45.799|-56.301,12.78,23.799|-39.301,17.5,-53.2|27,1,7|-42.301,12.81,40.799|-21.301,21.999,-2.201|17,24,47|-83.8,21.999,-2'
  221. ..'.201|17,24,44|-84.3,29.399,-51.7|68,23,5|-85.3,29.399,-22.701|-59.3,12.78,14.799|-53.701,11.5,48.299|28,1,15|-53.801,11.51,36.299|1,24,24|-53.801,11.58,36.299|1,13,13|-56.8,17.52,-94.8|38.2,1,14|-28.3'
  222. ..'01,29.399,-79.2|13,23,13|-53.801,17.4,-48.101|74.799,1,78|-83.7,29.399,-3.801|14,23,44|-55.301,12.78,14.799|-82.3,29.399,-85.2|37,23,1|-22.811,29.399,-3.801|-23.301,29.399,-73.2|-61.3,12.78,17.399|-65'
  223. ..'.2,22.999,7.299|-52.801,34.999,-3.701|14,12,20|-20.301,29.399,-22.701|0,45,0|-57.3,12.78,14.799|-53.301,17.5,-15.701|38,1,17|-20.301,29.399,-51.7|-53.3,12.78,16.099|-49.301,12.78,16.099|-55.401,12.78,'
  224. ..'16.099|-61.4,12.78,16.099|-59.4,12.78,16.099|25.499,29.399,-85.2|150.6,23,1|-57.4,12.78,16.099|-47.301,12.78,16.099|-51.301,12.78,16.099|-57.3,12.81,47.799|-41.301,12.78,36.799|-65.3,12.78,29.799|-65.'
  225. ..'3,12.78,41.799|-45.701,17.6,-65.7|-78.74,16.48,13.86|-53.24,13.98,11.86|57,8,18|- 1 25,8,7 -54.24,14.18,17.36 0,180,0 = 1 57,8,18 -53.24,13.98,11.86 0,180,0 =|-54.801,78.498,205.298|8,69,74|1 8,69,74 '
  226. ..'-54.801,78.498,205.298 0,-90,0 = - 1 26,16,27 -54.801,66.998,196.798 0,0,0 =|-56.301,106.498,172.298|85,1,79|1 85,1,79 -56.301,106.498,172.298 0,180,0 = - 1 21,12,22.5 -54.301,109.738,174.798 0,180,0 '
  227. ..'=|-55.301,44.499,165.298|- 1 42,2,45 -54.801,44.239,167.798 0,180,0 = 1 85,1,79 -55.301,44.499,165.298 0,180,0 =|-54.301,28.499,132.298|4,33,77|- 1 8,13,14 -61.801,25.799,132.298 0,90,0 + 6 1,1,1 - 1 '
  228. ..'25,19,6 -53.301,21.499,132.298 0,180,0 = - 1 8,13,14 -44.801,25.999,132.298 0,90,0 + 6 1,1,1 1 4,33,77 -54.301,28.499,132.298 0,90,0 =|-0.276,25.526,-130.19|0,0,-105|1 0.6,3.4,1 -0.277,25.525,-130.19 '
  229. ..'0,0,-105 = 1 0.4,2,1 0.433,25.728,-130.19 0,0,-120 = 1 0.4,2,1 0.259,24.924,-130.19 0,0,-94 =|-48.001,29.399,-129.301|44.724,27.726,-130.19|1 0.6,3.4,1 44.723,27.726,-130.19 0,0,180 = 1 0.4,2,1 45.102'
  230. ..',27.093,-130.19 0,0,165 = 1 0.4,2,1 44.281,27.053,-130.19 0,0,-169 =|36.899,24.899,-129.9|18.5,14.901,-130.701|63.299,23.399,-129.8|-53.301,14.901,-31.701|20,0,0|-76.101,14.901,-130.701|41.924,25.526,'
  231. ..'-130.19|1 0.6,3.4,1 41.924,25.525,-130.19 0,0,-105 = 1 0.4,2,1 42.633,25.728,-130.19 0,0,-120 = 1 0.4,2,1 42.459,24.924,-130.19 0,0,-94 =|-76.3,14.901,-86.901|-53.301,14.901,-11.701|37.5,24.099,-129.9'
  232. ..'|48.499,14.901,-130.701|27.1,17.299,-85.301|1 13.4,4.4,2 27.1,17.299,-85.301 0,180,0 = - 1 12.6,4,0.399 27.1,17.099,-86.301 0,180,0 =|37.2,22.899,-129.9|63.299,24.099,-129.79|-21.701,17.299,-85.301|1 '
  233. ..'13.4,4.4,2 -21.701,17.299,-85.301 0,180,0 = - 1 12.6,4,0.399 -21.701,17.099,-86.301 0,180,0 =|5.299,24.099,-129.79|27.1,17.299,-130.3|1 13.4,4.4,2 27.1,17.299,-130.3 0,0,0 = - 1 12.6,4,0.399 27.1,17.0'
  234. ..'99,-129.3 0,0,0 =|5.299,23.399,-129.9|-57.201,23.699,-130|15,-90,0|1,4,3.599|51.299,17.5,-117.1|1 34.799,1,14 51.299,17.49,-111.7 0,0,0 = n 1 1,10.799,15 50.7,17.51,-124.1 0,180,-90 + 6 1,1,1 1 8.399,'
  235. ..'1,20 50.699,17.49,-117.5 0,0,0 = p|63.299,23.399,-129.9|-33.401,29.399,-129.301|47.499,23.399,-129.8|-53.301,14.901,-84.501|41.924,22.726,-130.19|1 0.6,3.4,1 41.924,22.725,-130.19 0,0,-90 = 1 0.4,2,1 '
  236. ..'42.557,23.105,-130.19 0,0,-105 = 1 0.4,2,1 42.597,22.283,-130.19 0,0,-79 =|47.5,23.399,-129.9|86.899,14.901,-130.701|47.499,24.099,-129.79|-9.3,14.901,-86.901|-29.501,14.901,-130.701|5.299,23.399,-129'
  237. ..'.8|-56.6,17.51,-111.7|-43.601,17.49,-111.7|30.4,1,14|84.699,17.49,-111.7|32.2,1,14|98.399,28.899,-95.1|4.8,24,19.2|98.399,35.899,-111.3|4.8,10,53.2|98.399,28.899,-128.3|86.899,16.9,-107.3|45.199,2,27.'
  238. ..'799|-13.901,16.7,-107.401|45,2.4,173.8|- 1 43.799,1.6,14 26.999,17.5,-107.801 0,-90,0 = 1 44.999,2.4,173.8 -13.901,16.7,-107.401 0,-90,0 = - 1 43.799,1.6,14 -21.601,17.5,-107.801 0,-90,0 =|-50,12.74,1'
  239. ..'74|12,1,12|rbxasset://textures/SpawnLocation.png|Top;0;2|2:2|3:3|4:4|5:5|6:6|3:3|3:3|7:7;2|2:2|3:8|4:9|5:10|6:11|3:8|3:8|7:12;2|2:2|3:13|4:14|5:15|6:16|3:13|3:13|7:17;2|2:2|3:18|4:4|5:19|8:20|6:21|3:1'
  240. ..'8|3:18|7:22;1|1:23|2:2|3:24|4:25|5:26|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:35|5:36|8:37|6:38|15:39|3:34|3:34;1|2:2|3:3|4:4|5:40|8:41|6:42|16:43|17:39|15:39|3:3|3:3;1|2:'
  241. ..'2|3:34|4:35|5:44|8:45|6:46|15:39|3:34|3:34;1|2:2|3:47|4:4|5:48|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:51|4:4|5:52|8:27|6:53|15:39|3:51|3:51;1|1:23|2:2|3:24|4:25|5:54|8:27|6:28|3:24|3:24;n;3|10:'
  242. ..'29|11:30|12:31|13:32|14:33;p;1|2:2|3:3|4:4|5:55|8:41|6:42|16:43|17:39|15:39|3:3|3:3;1|2:2|3:51|4:4|5:56|8:57|6:58|15:39|3:51|3:51;1|2:2|3:47|4:4|5:59|8:60|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4'
  243. ..':4|5:61|8:41|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4:4|5:62|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4:63|18:64|5:65|8:41|6:66|16:43|17:39|15:39|3:47|3:47;n;4|19:67;p;1|2:2|3:47|4:4|5:68'
  244. ..'|8:41|6:69|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4:63|5:70|8:41|6:66|16:43|17:39|15:39|3:47|3:47;n;4|19:67;p;1|2:2|3:71|4:72|18:73|5:74|6:75|15:39|3:71|3:71;1|2:2|3:13|4:14|5:76|8:77|6:78|17:39|15:39'
  245. ..'|3:13|3:13;1|2:2|3:13|4:14|5:79|8:77|6:80|17:39|15:39|3:13|3:13;1|2:2|3:34|4:4|5:81|6:82|15:39|3:34|3:34;1|2:2|3:34|4:4|5:83|6:84|15:39|3:34|3:34;2|2:2|3:18|4:4|5:85|8:86|6:21|3:18|3:18|7:87;1|2:2|3:8'
  246. ..'8|4:89|5:90|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:18|4:4|5:96|6:97|15:39|3:18|3:18;1|2:2|3:88|4:89|5:98|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|'
  247. ..'2:2|3:18|4:4|5:99|6:100|15:39|3:18|3:18;1|2:2|3:88|4:89|5:101|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:18|4:4|5:102|6:103|15:39|3:18|3:18;1|2:2|3:88|4:89|5:104|8:91|6:92|1'
  248. ..'7:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:88|4:89|5:105|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:88|4:89|5:106|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|1'
  249. ..'2:94|13:95|14:33;p;1|2:2|3:47|4:4|5:107|8:60|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4:4|5:108|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|1:23|2:2|3:24|4:25|5:109|8:27|6:28|3:24|3:24;n;3|10:29|11:30|'
  250. ..'12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:110|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:111|8:45|6:112|15:39|3:51|3:51;1|2:2|4:4|5:113|8:114|6:115|16:43|17:39|15:39;1|2'
  251. ..':2|4:4|5:116|8:114|6:115|16:43|17:39|15:39;1|1:23|2:2|3:24|4:25|5:117|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|4:4|5:118|8:114|6:115|16:43|17:39|15:39;1|2:2|3:34|4:4|5:119|8:45|6:'
  252. ..'120|15:39|3:34|3:34;1|2:2|4:4|5:121|8:114|6:115|16:43|17:39|15:39;1|1:23|2:2|3:24|4:25|5:122|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:4|5:123|8:45|6:120|15:39|3:34|3:34;1|1'
  253. ..':23|2:2|3:24|4:25|5:124|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|4:4|5:125|8:114|6:115|16:43|17:39|15:39;1|2:2|3:47|4:4|5:126|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:47|4:4|'
  254. ..'5:127|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|2:2|3:3|4:4|5:128|8:41|6:42|16:43|17:39|15:39|3:3|3:3;1|2:2|3:47|4:4|5:129|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|1:23|2:2|3:24|4:25|5:130|8:27|6:28|3:24'
  255. ..'|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:131|8:27|6:132|15:39|3:51|3:51;1|2:2|3:34|4:35|5:133|8:45|6:46|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:134|8:27|6:28|3:24|3:24;n;3|10:29|11:30'
  256. ..'|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:135|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:136|8:41|6:137|16:43|17:39|15:39|3:51|3:51;1|2:2|3:51|4:4|5:138|6:139|15:39|3:5'
  257. ..'1|3:51;1|1:23|2:2|3:24|4:25|5:140|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:141|4:142|5:143|8:27|6:144|15:39|3:141|3:141;1|2:2|3:51|4:4|5:145|8:77|6:146|15:39|3:51|3:51;1|1:23|2:'
  258. ..'2|3:24|4:25|5:147|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:148|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:149|8:27|6:28|3:24|3'
  259. ..':24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:150|6:132|15:39|3:51|3:51;1|2:2|3:141|4:142|5:151|8:152|6:153|16:43|17:39|15:39|3:141|3:141;1|2:2|3:51|4:4|5:154|8:41|6:155|16:43|17:39|15:39|3'
  260. ..':51|3:51;1|1:23|2:2|3:24|4:25|5:156|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:157|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:141|4:142|5:158|8'
  261. ..':152|6:153|16:43|17:39|15:39|3:141|3:141;1|1:23|2:2|3:24|4:25|5:159|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:160|8:27|6:139|15:39|3:51|3:51;1|1:23|2:2|3:24|4:25|5:161|8'
  262. ..':27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:47|4:63|18:64|5:162|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:167|4:89|5:168|8:45|6:169|15:39|3:167|3:167;1|1:23|2:2|3:24|4:25|5:'
  263. ..'170|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:171|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:172|8:41|6:173|16:43|17:39|15:39|3:51|3:'
  264. ..'51;1|1:23|2:2|3:24|4:25|5:174|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:141|4:142|5:175|8:152|6:153|16:43|17:39|15:39|3:141|3:141;1|1:23|2:2|3:24|4:25|5:176|8:27|6:28|3:24|3:24;n'
  265. ..';3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:141|4:142|5:177|8:152|6:153|16:43|17:39|15:39|3:141|3:141;1|1:23|2:2|3:24|4:25|5:178|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|'
  266. ..'4:25|5:179|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:180|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:181|8:182|6:183|15:39|3:51|3:51;1'
  267. ..'|1:23|2:2|3:24|4:25|5:184|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:185|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:51|4:4|5:186|8:41|6:187|16:'
  268. ..'43|17:39|15:39|3:51|3:51;1|2:2|3:34|4:4|5:188|6:189|17:39|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:190|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:167|4:89|5:191|8:45|6:169|15:39|3:1'
  269. ..'67|3:167;1|1:23|2:2|3:24|4:25|5:192|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:193|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:3|4:4|5:194|8:114'
  270. ..'|6:42|16:43|17:39|15:39|3:3|3:3;1|1:23|2:2|3:24|4:25|5:195|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:4|5:196|8:45|6:197|17:39|15:39|3:34|3:34;1|2:2|3:34|4:4|5:198|8:45|6:199'
  271. ..'|17:39|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:200|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:35|5:201|8:45|6:202|15:39|3:34|3:34;1|2:2|3:3|4:4|5:203|8:114|6:42|16:43|17:39|15'
  272. ..':39|3:3|3:3;1|1:23|2:2|3:24|4:25|5:204|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:47|4:4|5:205|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|1:23|2:2|3:24|4:25|5:206|8:27|6:28|3:24|3:24'
  273. ..';n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:88|4:89|5:207|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:47|4:4|5:208|8:49|6:50|16:43|17:39|15:39|3:47|3:47;1|1:23|2:2|3:24|4:25'
  274. ..'|5:209|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:210|2:2|3:211|4:142|5:212|8:27|6:213|17:39|15:39|3:211|3:211;n;3|10:214|11:215|12:216|14:33;p;1|2:2|3:47|4:63|18:64|5:217|8:163|6:164'
  275. ..'|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:47|4:4|5:218|8:41|6:69|16:43|17:39|15:39|3:47|3:47;1|2:2|3:3|4:4|5:219|8:77|6:220|15:39|3:3|3:3;1|1:23|2:2|3:24|4:25|5:221|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12'
  276. ..':31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:222|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:223|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|3:34|4:4|5:224'
  277. ..'|8:45|6:38|15:39|3:34|3:34;1|2:2|3:51|4:4|5:225|8:182|6:226|15:39|3:51|3:51;1|1:23|2:2|3:24|4:25|5:227|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:18|4:4|5:228|6:229|15:39|3:18|3:1'
  278. ..'8;1|2:2|3:34|4:35|5:230|8:45|6:202|15:39|3:34|3:34;1|2:2|3:18|4:4|5:231|6:232|15:39|3:18|3:18;1|1:23|2:2|3:24|4:25|5:233|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:'
  279. ..'234|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:235|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:167|4:4|5:236|6:237|15:39|3:167|3:167;1|2:2|3:34|'
  280. ..'4:4|5:238|8:45|6:38|15:39|3:34|3:34;1|2:2|3:47|4:63|18:64|5:239|8:240|6:164|3:47|3:47;n;5|19:165|20:166;p;1|1:23|2:2|3:24|4:25|5:241|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|'
  281. ..'4:4|5:242|8:45|6:243|15:39|3:34|3:34;1|2:2|3:47|4:63|18:64|5:244|8:245|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:34|4:35|5:246|8:247|6:38|15:39|3:34|3:34;1|2:2|3:34|4:35|5:248|8:49|6:249|16:43|17:39'
  282. ..'|15:39|3:34|3:34;1|2:2|3:34|4:35|5:250|8:49|6:249|16:43|17:39|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:251|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:252|8:27|6:28|3:'
  283. ..'24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:253|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:254|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:3'
  284. ..'2|14:33;p;1|2:2|3:3|4:4|5:255|8:77|6:256|15:39|3:3|3:3;1|1:23|2:2|3:24|4:25|5:257|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:35|5:258|8:45|6:259|15:39|3:34|3:34;1|2:2|3:34|4:'
  285. ..'35|5:260|8:45|6:261|15:39|3:34|3:34;1|2:2|3:34|4:4|5:262|8:45|6:263|15:39|3:34|3:34;1|2:2|3:34|4:4|5:264|8:247|6:38|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:265|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31'
  286. ..'|13:32|14:33;p;1|2:2|3:3|4:4|5:266|8:77|6:267|15:39|3:3|3:3;1|2:2|3:3|4:4|5:268|8:41|6:269|16:43|17:39|15:39|3:3|3:3;1|2:2|3:34|4:4|5:270|8:41|6:271|16:43|17:39|15:39|3:34|3:34;1|2:2|3:3|4:4|5:272|8:7'
  287. ..'7|6:273|15:39|3:3|3:3;1|2:2|3:34|4:4|5:274|6:275|15:39|3:34|3:34;1|2:2|3:34|4:4|5:276|8:45|6:277|15:39|3:34|3:34;1|2:2|3:34|4:4|5:278|8:45|6:279|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:280|8:27|6:28|3:'
  288. ..'24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:4|5:281|6:282|15:39|3:34|3:34;1|2:2|3:34|4:4|5:283|8:45|6:279|15:39|3:34|3:34;1|2:2|3:34|4:4|5:284|6:275|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5'
  289. ..':285|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:88|4:89|5:286|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:34|4:4|5:287|8:45|6:288|17:39|15:39|3:34|3:34;1'
  290. ..'|2:2|3:34|4:4|5:289|8:290|6:38|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:291|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:3|4:4|5:292|8:77|6:293|15:39|3:3|3:3;1|2:2|3:34|4:4|5:294|8:45'
  291. ..'|6:263|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:295|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:296|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|'
  292. ..'3:24|4:25|5:297|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:298|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:299|8:27|6:28|3:24|3:2'
  293. ..'4;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|3:34|4:4|5:300|6:301|15:39|3:34|3:34;1|1:23|2:2|3:24|4:25|5:302|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:303|8:27|6:28'
  294. ..'|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:304|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:305|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|1'
  295. ..'3:32|14:33;p;1|1:23|2:2|3:24|4:25|5:306|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|5:307|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|1:23|2:2|3:24|4:25|'
  296. ..'5:308|8:27|6:28|3:24|3:24;n;3|10:29|11:30|12:31|13:32|14:33;p;1|2:2|4:4|5:309|8:114|6:115|16:43|17:39|15:39;1|2:2|3:47|4:4|5:310|8:41|6:50|16:43|17:39|15:39|3:47|3:47;2|2:2|3:47|4:4|5:311|8:27|6:312|3'
  297. ..':47|3:47|7:313;2|3:51|4:4|5:314|8:45|6:315|3:51|3:51|7:316;2|3:51|4:4|5:317|8:27|6:318|3:51|3:51|7:319;2|2:2|3:51|4:4|5:320|8:27|6:318|3:51|3:51|7:321;2|2:2|3:51|4:4|5:322|8:77|6:323|3:51|3:51|7:324;2'
  298. ..'|2:2|3:18|4:4|5:325|8:326|6:21|3:18|3:18|7:327;1|2:2|3:88|4:89|5:328|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;2|2:2|3:18|4:4|5:329|8:20|6:21|3:18|3:18|7:330;1|2:2|3:18|4:4|5:331|6'
  299. ..':97|15:39|3:18|3:18;1|2:2|3:47|4:63|18:64|5:332|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:167|4:4|5:333|6:237|15:39|3:167|3:167;1|2:2|3:47|4:63|18:64|5:334|8:335|6:164|3:47|3:47;n;5|19:165|20:'
  300. ..'166;p;1|2:2|3:47|4:63|18:64|5:336|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;2|2:2|3:18|4:4|5:337|8:326|6:21|3:18|3:18|7:338;1|2:2|3:47|4:63|18:64|5:339|8:335|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|'
  301. ..'3:47|4:63|18:64|5:340|8:335|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:18|4:4|5:341|6:103|15:39|3:18|3:18;1|2:2|3:47|4:63|18:64|5:342|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;2|2:2|3:8|4:9|5:343|8:2'
  302. ..'7|6:11|3:8|3:8|7:344;1|2:2|3:18|4:4|5:345|6:100|15:39|3:18|3:18;1|2:2|3:18|4:4|5:346|6:229|15:39|3:18|3:18;2|2:2|3:8|4:9|5:347|8:27|6:11|3:8|3:8|7:348;1|2:2|3:18|4:4|5:349|6:229|15:39|3:18|3:18;2|2:2|'
  303. ..'3:8|4:9|5:350|6:11|3:8|3:8|7:351;1|2:2|3:18|4:4|5:352|6:232|15:39|3:18|3:18;1|2:2|3:51|4:4|5:353|8:354|6:355|15:39|3:51|3:51;2|2:2|3:3|4:4|5:356|6:6|3:3|3:3|7:357;1|2:2|3:18|4:4|5:358|6:232|15:39|3:18'
  304. ..'|3:18;1|2:2|3:88|4:89|5:359|8:91|6:92|17:39|15:39|3:88|3:88;n;3|10:93|12:94|13:95|14:33;p;1|2:2|3:167|4:4|5:360|6:237|15:39|3:167|3:167;1|2:2|3:47|4:63|18:64|5:361|8:163|6:164|3:47|3:47;n;5|19:165|20:'
  305. ..'166;p;2|2:2|3:18|4:4|5:362|8:86|6:21|3:18|3:18|7:363;1|2:2|3:18|4:4|5:364|6:232|15:39|3:18|3:18;1|2:2|3:47|4:63|18:64|5:365|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:18|4:4|5:366|6:229|15:39|3'
  306. ..':18|3:18;1|2:2|3:47|4:63|18:64|5:367|8:335|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:47|4:63|18:64|5:368|8:163|6:164|3:47|3:47;n;5|19:165|20:166;p;1|2:2|3:167|4:4|5:369|6:237|15:39|3:167|3:167;1|2:2'
  307. ..'|3:3|4:4|5:370|8:114|6:42|16:43|17:39|15:39|3:3|3:3;1|2:2|3:3|4:4|5:371|6:372|15:39|3:3|3:3;1|2:2|3:3|4:4|5:373|6:374|15:39|3:3|3:3;1|2:2|3:34|4:4|5:375|6:376|15:39|3:34|3:34;1|2:2|3:34|4:4|5:377|6:37'
  308. ..'8|17:39|15:39|3:34|3:34;1|2:2|3:34|4:4|5:379|6:376|15:39|3:34|3:34;1|2:2|3:34|4:4|5:380|8:45|6:381|15:39|3:34|3:34;2|2:2|3:34|4:4|5:382|8:45|6:383|3:34|3:34|7:384;6|2:2|5:385|6:386|17:39|15:39;n;7|21:'
  309. ..'387|22:388;p;')
  310. Model.Parent = script and script.Parent==workspace and script or workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement