_attributes_cheap 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  1. # $attributes_cheap
  2. if ARGS[1] = 1:
  3. CloQuality = 1
  4. CloThinness = 2
  5. CloTopCut = 1
  6. CloPantsShortness = 1
  7. CloExhibit = 0
  8. elseif ARGS[1] = 2:
  9. CloQuality = 2
  10. CloThinness = 4
  11. CloTopCut = 2
  12. CloSkirtShortness = 4
  13. CloExhibit = 10
  14. elseif ARGS[1] = 3:
  15. CloQuality = 2
  16. CloThinness = 4
  17. CloTopCut = 2
  18. CloSkirtShortness = 2
  19. CloExhibit = 10
  20. elseif ARGS[1] = 4:
  21. CloQuality = 1
  22. CloThinness = 2
  23. CloTopCut = 2
  24. CloSkirtShortness = 4
  25. CloStyle = 2
  26. CloExhibit = 20
  27. elseif ARGS[1] = 5:
  28. CloQuality = 2
  29. CloThinness = 4
  30. CloTopCut = 3
  31. CloSkirtShortness = 4
  32. CloExhibit = 20
  33. elseif ARGS[1] = 6:
  34. CloQuality = 1
  35. CloThinness = 3
  36. CloTopCut = 2
  37. CloSkirtShortness = 4
  38. CloExhibit = 20
  39. elseif ARGS[1] = 7:
  40. CloQuality = 2
  41. CloThinness = 4
  42. CloTopCut = 2
  43. CloSkirtShortness = 5
  44. CloStyle = 1
  45. CloExhibit = 30
  46. elseif ARGS[1] = 8:
  47. CloQuality = 2
  48. CloThinness = 4
  49. CloTopCut = 3
  50. CloSkirtShortness = 3
  51. CloExhibit = 15
  52. elseif ARGS[1] = 9:
  53. CloQuality = 2
  54. CloThinness = 5
  55. CloTopCut = 1
  56. CloSkirtShortness = 5
  57. CloExhibit = 30
  58. elseif ARGS[1] = 10:
  59. CloQuality = 1
  60. CloThinness = 3
  61. CloTopCut = 2
  62. CloSkirtShortness = 2
  63. CloExhibit = 5
  64. elseif ARGS[1] = 11:
  65. CloQuality = 2
  66. CloThinness = 3
  67. CloTopCut = 1
  68. CloSkirtShortness = 3
  69. CloExhibit = 10
  70. elseif ARGS[1] = 12:
  71. CloQuality = 1
  72. CloThinness = 5
  73. CloTopCut = 3
  74. CloSkirtShortness = 6
  75. CloBimbo = 1
  76. CloStyle = 4
  77. CloExhibit = 35
  78. elseif ARGS[1] = 13:
  79. CloQuality = 2
  80. CloThinness = 4
  81. CloTopCut = 2
  82. CloSkirtShortness = 6
  83. CloBimbo = 1
  84. CloExhibit = 35
  85. elseif ARGS[1] = 14:
  86. CloQuality = 1
  87. CloThinness = 4
  88. CloTopCut = 2
  89. CloSkirtShortness = 6
  90. CloBimbo = 1
  91. CloStyle = 4
  92. CloExhibit = 35
  93. elseif ARGS[1] = 15:
  94. CloQuality = 1
  95. CloThinness = 1
  96. CloTopCut = 1
  97. CloPantsShortness = 1
  98. CloExhibit = 0
  99. elseif ARGS[1] = 16:
  100. CloQuality = 1
  101. CloThinness = 2
  102. CloTopCut = 1
  103. CloPantsShortness = 1
  104. CloExhibit = 0
  105. elseif ARGS[1] = 17:
  106. CloQuality = 2
  107. CloThinness = 3
  108. CloTopCut = 2
  109. CloSkirtShortness = 3
  110. CloExhibit = 10
  111. elseif ARGS[1] = 18:
  112. CloQuality = 1
  113. CloThinness = 3
  114. CloTopCut = 1
  115. CloPantsShortness = 1
  116. CloExhibit = 1
  117. elseif ARGS[1] = 19:
  118. CloQuality = 2
  119. CloThinness = 3
  120. CloTopCut = 2
  121. CloPantsShortness = 1
  122. CloStyle = 2
  123. CloExhibit = 1
  124. elseif ARGS[1] = 20:
  125. CloQuality = 1
  126. CloThinness = 2
  127. CloTopCut = 1
  128. CloPantsShortness = 1
  129. CloExhibit = 0
  130. elseif ARGS[1] = 21:
  131. CloQuality = 2
  132. CloThinness = 2
  133. CloTopCut = 1
  134. CloPantsShortness = 1
  135. CloExhibit = 0
  136. elseif ARGS[1] = 22:
  137. CloQuality = 3
  138. CloThinness = 4
  139. CloTopCut = 2
  140. CloPantsShortness = 4
  141. CloStyle = 4
  142. CloExhibit = 10
  143. elseif ARGS[1] = 23:
  144. CloQuality = 2
  145. CloThinness = 5
  146. CloTopCut = 3
  147. CloPantsShortness = 1
  148. CloStyle = 4
  149. CloExhibit = 25
  150. elseif ARGS[1] = 24:
  151. CloQuality = 1
  152. CloThinness = 4
  153. CloTopCut = 4
  154. CloPantsShortness = 1
  155. CloBimbo = 1
  156. CloExhibit = 25
  157. elseif ARGS[1] = 25:
  158. CloQuality = 2
  159. CloThinness = 2
  160. CloTopCut = 2
  161. CloSkirtShortness = 4
  162. CloStyle = 2
  163. CloExhibit = 20
  164. elseif ARGS[1] = 26:
  165. CloQuality = 1
  166. CloThinness = 4
  167. CloTopCut = 2
  168. CloSkirtShortness = 5
  169. CloBimbo = 1
  170. CloStyle = 4
  171. CloExhibit = 30
  172. elseif ARGS[1] = 27:
  173. CloQuality = 1
  174. CloThinness = 4
  175. CloTopCut = 2
  176. CloSkirtShortness = 4
  177. CloExhibit = 20
  178. elseif ARGS[1] = 28:
  179. CloQuality = 2
  180. CloThinness = 4
  181. CloTopCut = 2
  182. CloSkirtShortness = 4
  183. CloExhibit = 15
  184. elseif ARGS[1] = 29:
  185. CloQuality = 1
  186. CloThinness = 3
  187. CloTopCut = 2
  188. CloPantsShortness = 5
  189. CloExhibit = 30
  190. elseif ARGS[1] = 30:
  191. CloQuality = 2
  192. CloThinness = 3
  193. CloTopCut = 4
  194. CloPantsShortness = 1
  195. CloExhibit = 25
  196. elseif ARGS[1] = 31:
  197. CloQuality = 1
  198. CloThinness = 3
  199. CloTopCut = 2
  200. CloSkirtShortness = 3
  201. CloExhibit = 10
  202. elseif ARGS[1] = 32:
  203. CloQuality = 1
  204. CloThinness = 3
  205. CloTopCut = 3
  206. CloPantsShortness = 1
  207. CloExhibit = 15
  208. elseif ARGS[1] = 33:
  209. CloQuality = 1
  210. CloThinness = 3
  211. CloTopCut = 3
  212. CloPantsShortness = 1
  213. CloExhibit = 15
  214. elseif ARGS[1] = 34:
  215. CloQuality = 2
  216. CloThinness = 4
  217. CloTopCut = 3
  218. CloSkirtShortness = 5
  219. CloStyle = 4
  220. CloExhibit = 30
  221. elseif ARGS[1] = 35:
  222. CloQuality = 2
  223. CloThinness = 2
  224. CloTopCut = 2
  225. CloSkirtShortness = 3
  226. CloExhibit = 10
  227. elseif ARGS[1] = 36:
  228. CloQuality = 1
  229. CloThinness = 1
  230. CloTopCut = 2
  231. CloPantsShortness = 1
  232. CloStyle = 5
  233. CloExhibit = 0
  234. elseif ARGS[1] = 37:
  235. CloQuality = 1
  236. CloThinness = 3
  237. CloTopCut = 2
  238. CloPantsShortness = 3
  239. CloExhibit = 5
  240. elseif ARGS[1] = 38:
  241. CloQuality = 2
  242. CloThinness = 4
  243. CloTopCut = 3
  244. CloSkirtShortness = 4
  245. CloExhibit = 20
  246. elseif ARGS[1] = 39:
  247. CloQuality = 1
  248. CloThinness = 4
  249. CloTopCut = 4
  250. CloSkirtShortness = 5
  251. CloStyle = 4
  252. CloExhibit = 30
  253. elseif ARGS[1] = 40:
  254. CloQuality = 1
  255. CloThinness = 5
  256. CloTopCut = 3
  257. CloPantsShortness = 2
  258. CloExhibit = 25
  259. elseif ARGS[1] = 41:
  260. CloQuality = 1
  261. CloThinness = 4
  262. CloTopCut = 2
  263. CloSkirtShortness = 4
  264. CloExhibit = 20
  265. elseif ARGS[1] = 42:
  266. CloQuality = 2
  267. CloThinness = 3
  268. CloTopCut = 2
  269. CloPantsShortness = 1
  270. CloExhibit = 5
  271. elseif ARGS[1] = 43:
  272. CloQuality = 1
  273. CloThinness = 4
  274. CloTopCut = 2
  275. CloSkirtShortness = 5
  276. CloExhibit = 30
  277. elseif ARGS[1] = 44:
  278. CloQuality = 2
  279. CloThinness = 5
  280. CloTopCut = 2
  281. CloSkirtShortness = 2
  282. CloExhibit = 25
  283. elseif ARGS[1] = 45:
  284. CloQuality = 2
  285. CloThinness = 4
  286. CloTopCut = 2
  287. CloPantsShortness = 4
  288. CloExhibit = 15
  289. elseif ARGS[1] = 46:
  290. CloQuality = 1
  291. CloThinness = 4
  292. CloTopCut = 2
  293. CloPantsShortness = 4
  294. CloExhibit = 15
  295. elseif ARGS[1] = 47:
  296. CloQuality = 2
  297. CloThinness = 4
  298. CloTopCut = 2
  299. CloPantsShortness = 5
  300. CloExhibit = 25
  301. elseif ARGS[1] = 48:
  302. CloQuality = 1
  303. CloThinness = 3
  304. CloTopCut = 1
  305. CloPantsShortness = 1
  306. CloExhibit = 5
  307. elseif ARGS[1] = 49:
  308. CloQuality = 1
  309. CloThinness = 4
  310. CloTopCut = 2
  311. CloPantsShortness = 1
  312. CloExhibit = 10
  313. elseif ARGS[1] = 50:
  314. CloQuality = 1
  315. CloThinness = 5
  316. CloTopCut = 2
  317. CloSkirtShortness = 4
  318. CloExhibit = 25
  319. elseif ARGS[1] = 51:
  320. CloQuality = 1
  321. CloThinness = 3
  322. CloTopCut = 1
  323. CloSkirtShortness = 5
  324. CloStyle = 2
  325. CloExhibit = 30
  326. elseif ARGS[1] = 52:
  327. CloQuality = 2
  328. CloThinness = 4
  329. CloTopCut = 3
  330. CloSkirtShortness = 3
  331. CloStyle = 4
  332. CloExhibit = 15
  333. elseif ARGS[1] = 53:
  334. CloQuality = 1
  335. CloThinness = 5
  336. CloTopCut = 4
  337. CloPantsShortness = 6
  338. CloExhibit = 30
  339. elseif ARGS[1] = 54:
  340. CloQuality = 1
  341. CloThinness = 5
  342. CloTopCut = 2
  343. CloPantsShortness = 5
  344. CloExhibit = 25
  345. elseif ARGS[1] = 55:
  346. CloQuality = 1
  347. CloThinness = 4
  348. CloTopCut = 1
  349. CloPantsShortness = 1
  350. CloExhibit = 10
  351. elseif ARGS[1] = 56:
  352. CloQuality = 2
  353. CloThinness = 5
  354. CloTopCut = 3
  355. CloPantsShortness = 5
  356. CloExhibit = 25
  357. elseif ARGS[1] = 57:
  358. CloQuality = 2
  359. CloThinness = 5
  360. CloTopCut = 2
  361. CloSkirtShortness = 6
  362. CloStyle = 4
  363. CloExhibit = 30
  364. elseif ARGS[1] = 58:
  365. CloQuality = 2
  366. CloThinness = 4
  367. CloTopCut = 2
  368. CloSkirtShortness = 4
  369. CloStyle = 4
  370. CloExhibit = 20
  371. elseif ARGS[1] = 59:
  372. CloQuality = 2
  373. CloThinness = 4
  374. CloTopCut = 3
  375. CloSkirtShortness = 5
  376. CloStyle = 4
  377. CloExhibit = 30
  378. elseif ARGS[1] = 60:
  379. CloQuality = 2
  380. CloThinness = 3
  381. CloTopCut = 1
  382. CloSkirtShortness = 5
  383. CloExhibit = 30
  384. elseif ARGS[1] = 61:
  385. CloQuality = 2
  386. CloThinness = 4
  387. CloTopCut = 3
  388. CloSkirtShortness = 5
  389. CloBimbo = 1
  390. CloExhibit = 30
  391. elseif ARGS[1] = 62:
  392. CloQuality = 1
  393. CloThinness = 3
  394. CloTopCut = 3
  395. CloPantsShortness = 1
  396. CloExhibit = 15
  397. elseif ARGS[1] = 63:
  398. CloQuality = 1
  399. CloThinness = 4
  400. CloTopCut = 2
  401. CloSkirtShortness = 6
  402. CloStyle = 4
  403. CloExhibit = 35
  404. elseif ARGS[1] = 64:
  405. CloQuality = 2
  406. CloThinness = 5
  407. CloTopCut = 2
  408. CloPantsShortness = 6
  409. CloStyle = 4
  410. CloExhibit = 35
  411. elseif ARGS[1] = 65:
  412. CloQuality = 2
  413. CloThinness = 4
  414. CloTopCut = 1
  415. CloPantsShortness = 1
  416. CloExhibit = 10
  417. elseif ARGS[1] = 66:
  418. CloQuality = 1
  419. CloThinness = 3
  420. CloTopCut = 2
  421. CloPantsShortness = 5
  422. CloExhibit = 30
  423. elseif ARGS[1] = 67:
  424. CloQuality = 2
  425. CloThinness = 4
  426. CloTopCut = 3
  427. CloSkirtShortness = 5
  428. CloExhibit = 30
  429. elseif ARGS[1] = 68:
  430. CloQuality = 2
  431. CloThinness = 5
  432. CloTopCut = 2
  433. CloSkirtShortness = 5
  434. CloExhibit = 25
  435. elseif ARGS[1] = 69:
  436. CloQuality = 2
  437. CloThinness = 3
  438. CloTopCut = 2
  439. CloSkirtShortness = 4
  440. CloStyle = 5
  441. CloExhibit = 20
  442. elseif ARGS[1] = 70:
  443. CloQuality = 1
  444. CloThinness = 2
  445. CloTopCut = 2
  446. CloSkirtShortness = 3
  447. CloExhibit = 10
  448. elseif ARGS[1] = 71:
  449. CloQuality = 1
  450. CloThinness = 4
  451. CloTopCut = 2
  452. CloPantsShortness = 5
  453. CloExhibit = 30
  454. elseif ARGS[1] = 72:
  455. CloQuality = 2
  456. CloThinness = 2
  457. CloTopCut = 2
  458. CloSkirtShortness = 4
  459. CloExhibit = 20
  460. elseif ARGS[1] = 73:
  461. CloQuality = 1
  462. CloThinness = 5
  463. CloTopCut = 2
  464. CloSkirtShortness = 6
  465. CloBimbo = 1
  466. CloExhibit = 35
  467. elseif ARGS[1] = 74:
  468. CloQuality = 1
  469. CloThinness = 4
  470. CloTopCut = 3
  471. CloPantsShortness = 5
  472. CloExhibit = 30
  473. elseif ARGS[1] = 75:
  474. CloQuality = 1
  475. CloThinness = 4
  476. CloBra = 1
  477. CloPantsShortness = 5
  478. CloExhibit = 30
  479. elseif ARGS[1] = 76:
  480. CloQuality = 2
  481. CloThinness = 5
  482. CloTopCut = 3
  483. CloSkirtShortness = 5
  484. CloStyle = 4
  485. CloExhibit = 30
  486. elseif ARGS[1] = 77:
  487. CloQuality = 2
  488. CloThinness = 4
  489. CloBra = 1
  490. CloPantsShortness = 5
  491. CloExhibit = 30
  492. elseif ARGS[1] = 78:
  493. CloQuality = 1
  494. CloThinness = 3
  495. CloTopCut = 3
  496. CloPantsShortness = 5
  497. CloStyle = 4
  498. CloExhibit = 25
  499. elseif ARGS[1] = 79:
  500. CloQuality = 1
  501. CloThinness = 3
  502. CloTopCut = 4
  503. CloPantsShortness = 5
  504. CloExhibit = 25
  505. elseif ARGS[1] = 80:
  506. CloQuality = 2
  507. CloThinness = 5
  508. CloTopCut = 4
  509. CloPantsShortness = 4
  510. CloStyle = 4
  511. CloExhibit = 25
  512. elseif ARGS[1] = 81:
  513. CloQuality = 1
  514. CloThinness = 3
  515. CloTopCut = 2
  516. CloPantsShortness = 5
  517. CloExhibit = 25
  518. elseif ARGS[1] = 82:
  519. CloQuality = 2
  520. CloThinness = 5
  521. CloTopCut = 2
  522. CloPantsShortness = 6
  523. CloBimbo = 1
  524. CloExhibit = 30
  525. elseif ARGS[1] = 83:
  526. CloQuality = 2
  527. CloThinness = 3
  528. CloTopCut = 2
  529. CloSkirtShortness = 2
  530. CloStyle = 5
  531. CloExhibit = 5
  532. elseif ARGS[1] = 84:
  533. CloQuality = 2
  534. CloThinness = 4
  535. CloTopCut = 3
  536. CloPantsShortness = 6
  537. CloStyle = 4
  538. CloExhibit = 30
  539. elseif ARGS[1] = 85:
  540. CloQuality = 2
  541. CloThinness = 5
  542. CloTopCut = 3
  543. CloPantsShortness = 6
  544. CloBimbo = 1
  545. CloExhibit = 30
  546. elseif ARGS[1] = 86:
  547. CloQuality = 2
  548. CloThinness = 5
  549. CloTopCut = 2
  550. CloPantsShortness = 5
  551. CloBimbo = 1
  552. CloStyle = 4
  553. CloExhibit = 25
  554. elseif ARGS[1] = 87:
  555. CloQuality = 2
  556. CloThinness = 2
  557. CloTopCut = 2
  558. CloPantsShortness = 1
  559. CloExhibit = 10
  560. elseif ARGS[1] = 88:
  561. CloQuality = 2
  562. CloThinness = 2
  563. CloTopCut = 1
  564. CloPantsShortness = 1
  565. CloExhibit = 0
  566. elseif ARGS[1] = 89:
  567. CloQuality = 2
  568. CloThinness = 2
  569. CloTopCut = 2
  570. CloPantsShortness = 1
  571. CloExhibit = 5
  572. elseif ARGS[1] = 90:
  573. CloQuality = 1
  574. CloThinness = 2
  575. CloTopCut = 1
  576. CloPantsShortness = 1
  577. CloExhibit = 0
  578. elseif ARGS[1] = 91:
  579. CloQuality = 2
  580. CloThinness = 3
  581. CloTopCut = 2
  582. CloPantsShortness = 1
  583. CloExhibit = 5
  584. elseif ARGS[1] = 92:
  585. CloQuality = 1
  586. CloThinness = 3
  587. CloTopCut = 1
  588. CloPantsShortness = 1
  589. CloExhibit = 5
  590. elseif ARGS[1] = 93:
  591. CloQuality = 2
  592. CloThinness = 2
  593. CloTopCut = 1
  594. CloPantsShortness = 1
  595. CloExhibit = 0
  596. elseif ARGS[1] = 94:
  597. CloQuality = 2
  598. CloThinness = 2
  599. CloTopCut = 1
  600. CloPantsShortness = 1
  601. CloExhibit = 5
  602. elseif ARGS[1] = 95:
  603. CloQuality = 2
  604. CloThinness = 1
  605. CloTopCut = 1
  606. CloPantsShortness = 1
  607. CloExhibit = 5
  608. elseif ARGS[1] = 96:
  609. CloQuality = 1
  610. CloThinness = 2
  611. CloTopCut = 1
  612. CloPantsShortness = 1
  613. CloExhibit = 0
  614. elseif ARGS[1] = 97:
  615. CloQuality = 2
  616. CloThinness = 2
  617. CloTopCut = 1
  618. CloPantsShortness = 1
  619. CloExhibit = 0
  620. elseif ARGS[1] = 98:
  621. CloQuality = 2
  622. CloThinness = 3
  623. CloTopCut = 2
  624. CloPantsShortness = 1
  625. CloExhibit = 5
  626. elseif ARGS[1] = 99:
  627. CloQuality = 2
  628. CloThinness = 2
  629. CloTopCut = 2
  630. CloPantsShortness = 1
  631. CloExhibit = 5
  632. elseif ARGS[1] = 100:
  633. CloQuality = 1
  634. CloThinness = 1
  635. CloTopCut = 1
  636. CloPantsShortness = 1
  637. CloExhibit = 0
  638. elseif ARGS[1] = 101:
  639. CloQuality = 2
  640. CloThinness = 4
  641. CloTopCut = 3
  642. CloPantsShortness = 4
  643. CloExhibit = 20
  644. elseif ARGS[1] = 102:
  645. CloQuality = 2
  646. CloThinness = 2
  647. CloTopCut = 1
  648. CloPantsShortness = 1
  649. CloExhibit = 5
  650. elseif ARGS[1] = 103:
  651. CloQuality = 2
  652. CloThinness = 2
  653. CloTopCut = 1
  654. CloPantsShortness = 1
  655. CloExhibit = 0
  656. elseif ARGS[1] = 104:
  657. CloQuality = 2
  658. CloThinness = 2
  659. CloTopCut = 2
  660. CloPantsShortness = 1
  661. CloExhibit = 0
  662. elseif ARGS[1] = 105:
  663. CloQuality = 2
  664. CloThinness = 2
  665. CloTopCut = 2
  666. CloPantsShortness = 1
  667. CloExhibit = 5
  668. elseif ARGS[1] = 106:
  669. CloQuality = 2
  670. CloThinness = 2
  671. CloTopCut = 2
  672. CloPantsShortness = 1
  673. CloExhibit = 5
  674. elseif ARGS[1] = 107:
  675. CloQuality = 1
  676. CloThinness = 2
  677. CloTopCut = 2
  678. CloPantsShortness = 1
  679. CloExhibit = 5
  680. elseif ARGS[1] = 108:
  681. CloQuality = 2
  682. CloThinness = 2
  683. CloTopCut = 2
  684. CloPantsShortness = 3
  685. CloExhibit = 10
  686. elseif ARGS[1] = 109:
  687. CloQuality = 2
  688. CloThinness = 2
  689. CloTopCut = 2
  690. CloPantsShortness = 1
  691. CloExhibit = 10
  692. elseif ARGS[1] = 110:
  693. CloQuality = 1
  694. CloThinness = 2
  695. CloTopCut = 1
  696. CloPantsShortness = 1
  697. CloExhibit = 0
  698. elseif ARGS[1] = 111:
  699. CloQuality = 2
  700. CloThinness = 2
  701. CloTopCut = 2
  702. CloPantsShortness = 1
  703. CloExhibit = 10
  704. elseif ARGS[1] = 112:
  705. CloQuality = 2
  706. CloThinness = 3
  707. CloTopCut = 1
  708. CloPantsShortness = 1
  709. CloExhibit = 5
  710. elseif ARGS[1] = 113:
  711. CloQuality = 2
  712. CloThinness = 4
  713. CloTopCut = 3
  714. CloPantsShortness = 5
  715. CloExhibit = 20
  716. elseif ARGS[1] = 114:
  717. CloQuality = 1
  718. CloThinness = 2
  719. CloTopCut = 1
  720. CloPantsShortness = 1
  721. CloExhibit = 0
  722. elseif ARGS[1] = 115:
  723. CloStyle = 4
  724. CloQuality = 2
  725. CloThinness = 6
  726. CloTopCut = 3
  727. CloSkirtShortness = 4
  728. CloExhibit = 30
  729. elseif ARGS[1] = 116:
  730. CloQuality = 1
  731. CloThinness = 2
  732. CloTopCut = 1
  733. CloSkirtShortness = 3
  734. CloExhibit = 15
  735. elseif ARGS[1] = 117:
  736. CloQuality = 2
  737. CloThinness = 5
  738. CloTopCut = 2
  739. CloSkirtShortness = 4
  740. CloExhibit = 25
  741. elseif ARGS[1] = 118:
  742. CloQuality = 2
  743. CloThinness = 5
  744. CloTopCut = 4
  745. CloBra = 1
  746. CloPantsShortness = 5
  747. CloBimbo = 1
  748. CloExhibit = 35
  749. elseif ARGS[1] = 119:
  750. CloQuality = 1
  751. CloThinness = 3
  752. CloTopCut = 2
  753. CloPantsShortness = 5
  754. CloExhibit = 20
  755. elseif ARGS[1] = 120:
  756. CloQuality = 2
  757. CloThinness = 3
  758. CloTopCut = 2
  759. CloSkirtShortness = 5
  760. CloExhibit = 20
  761. elseif ARGS[1] = 121:
  762. CloQuality = 2
  763. CloThinness = 3
  764. CloTopCut = 1
  765. CloPantsShortness = 1
  766. CloExhibit = 0
  767. elseif ARGS[1] = 122:
  768. CloQuality = 2
  769. CloThinness = 3
  770. CloTopCut = 1
  771. CloPantsShortness = 1
  772. CloExhibit = 0
  773. elseif ARGS[1] = 123:
  774. CloQuality = 2
  775. CloThinness = 2
  776. CloTopCut = 1
  777. CloPantsShortness = 1
  778. CloExhibit = 0
  779. elseif ARGS[1] = 124:
  780. CloQuality = 2
  781. CloThinness = 2
  782. CloTopCut = 1
  783. CloPantsShortness = 1
  784. CloExhibit = 0
  785. elseif ARGS[1] = 125:
  786. CloQuality = 1
  787. CloThinness = 3
  788. CloTopCut = 2
  789. CloSkirtShortness = 4
  790. CloExhibit = 15
  791. elseif ARGS[1] = 126:
  792. CloQuality = 2
  793. CloThinness = 3
  794. CloTopCut = 2
  795. CloPantsShortness = 2
  796. CloExhibit = 5
  797. elseif ARGS[1] = 127:
  798. CloQuality = 2
  799. CloThinness = 3
  800. CloTopCut = 3
  801. CloPantsShortness = 1
  802. CloExhibit = 10
  803. elseif ARGS[1] = 128:
  804. CloStyle = 4
  805. CloQuality = 1
  806. CloThinness = 6
  807. CloTopCut = 4
  808. CloSkirtShortness = 5
  809. CloBimbo = 1
  810. CloExhibit = 35
  811. elseif ARGS[1] = 129:
  812. CloQuality = 2
  813. CloThinness = 4
  814. CloTopCut = 2
  815. CloPantsShortness = 5
  816. CloBimbo = 1
  817. CloExhibit = 20
  818. elseif ARGS[1] = 130:
  819. CloQuality = 2
  820. CloThinness = 3
  821. CloTopCut = 3
  822. CloPantsShortness = 1
  823. CloExhibit = 15
  824. elseif ARGS[1] = 131:
  825. CloQuality = 2
  826. CloThinness = 3
  827. CloTopCut = 2
  828. CloPantsShortness = 4
  829. CloExhibit = 10
  830. elseif ARGS[1] = 132:
  831. CloQuality = 2
  832. CloThinness = 3
  833. CloTopCut = 2
  834. CloPantsShortness = 1
  835. CloExhibit = 5
  836. elseif ARGS[1] = 133:
  837. CloQuality = 2
  838. CloThinness = 2
  839. CloTopCut = 3
  840. CloSkirtShortness = 4
  841. CloExhibit = 20
  842. elseif ARGS[1] = 134:
  843. CloStyle = 4
  844. CloQuality = 1
  845. CloThinness = 4
  846. CloTopCut = 4
  847. CloBra = 1
  848. CloPantsShortness = 5
  849. CloExhibit = 30
  850. elseif ARGS[1] = 135:
  851. CloQuality = 1
  852. CloThinness = 2
  853. CloTopCut = 4
  854. CloBra = 1
  855. CloPantsShortness = 5
  856. CloBimbo = 1
  857. CloExhibit = 30
  858. elseif ARGS[1] = 136:
  859. CloQuality = 1
  860. CloThinness = 4
  861. CloTopCut = 4
  862. CloPantsShortness = 5
  863. CloBimbo = 1
  864. CloExhibit = 35
  865. elseif ARGS[1] = 137:
  866. CloStyle = 4
  867. CloQuality = 2
  868. CloThinness = 4
  869. CloTopCut = 4
  870. CloSkirtShortness = 5
  871. CloBimbo = 1
  872. CloExhibit = 30
  873. elseif ARGS[1] = 138:
  874. CloQuality = 2
  875. CloThinness = 3
  876. CloTopCut = 1
  877. CloPantsShortness = 1
  878. CloExhibit = 5
  879. elseif ARGS[1] = 139:
  880. CloStyle = 4
  881. CloQuality = 2
  882. CloThinness = 4
  883. CloTopCut = 4
  884. CloSkirtShortness = 5
  885. CloBimbo = 1
  886. CloExhibit = 30
  887. elseif ARGS[1] = 140:
  888. CloQuality = 1
  889. CloThinness = 4
  890. CloTopCut = 3
  891. CloSkirtShortness = 5
  892. CloBimbo = 1
  893. CloExhibit = 25
  894. elseif ARGS[1] = 141:
  895. CloQuality = 2
  896. CloThinness = 4
  897. CloTopCut = 3
  898. CloPantsShortness = 2
  899. CloBimbo = 1
  900. CloExhibit = 20
  901. elseif ARGS[1] = 142:
  902. CloQuality = 2
  903. CloThinness = 2
  904. CloTopCut = 1
  905. CloPantsShortness = 1
  906. CloExhibit = 0
  907. elseif ARGS[1] = 143:
  908. CloQuality = 1
  909. CloThinness = 2
  910. CloTopCut = 1
  911. CloSkirtShortness = 4
  912. CloExhibit = 15
  913. elseif ARGS[1] = 144:
  914. CloQuality = 1
  915. CloThinness = 2
  916. CloTopCut = 1
  917. CloPantsShortness = 1
  918. CloExhibit = 5
  919. elseif ARGS[1] = 145:
  920. CloQuality = 1
  921. CloThinness = 2
  922. CloTopCut = 1
  923. CloSkirtShortness = 5
  924. CloExhibit = 15
  925. elseif ARGS[1] = 146:
  926. CloQuality = 1
  927. CloThinness = 1
  928. CloTopCut = 1
  929. CloSkirtShortness = 4
  930. CloExhibit = 10
  931. elseif ARGS[1] = 147:
  932. CloQuality = 2
  933. CloThinness = 3
  934. CloTopCut = 2
  935. CloPantsShortness = 1
  936. CloExhibit = 5
  937. elseif ARGS[1] = 148:
  938. CloQuality = 2
  939. CloThinness = 3
  940. CloTopCut = 3
  941. CloPantsShortness = 5
  942. CloExhibit = 25
  943. elseif ARGS[1] = 149:
  944. CloQuality = 2
  945. CloThinness = 4
  946. CloTopCut = 2
  947. CloPantsShortness = 5
  948. CloExhibit = 25
  949. elseif ARGS[1] = 150:
  950. CloQuality = 2
  951. CloThinness = 2
  952. CloTopCut = 1
  953. CloPantsShortness = 1
  954. CloExhibit = 10
  955. elseif ARGS[1] = 151:
  956. CloQuality = 2
  957. CloThinness = 3
  958. CloTopCut = 1
  959. CloPantsShortness = 5
  960. CloExhibit = 15
  961. elseif ARGS[1] = 152:
  962. CloQuality = 1
  963. CloThinness = 5
  964. CloTopCut = 2
  965. CloPantsShortness = 5
  966. CloExhibit = 15
  967. elseif ARGS[1] = 153:
  968. CloQuality = 2
  969. CloThinness = 3
  970. CloTopCut = 1
  971. CloPantsShortness = 5
  972. CloExhibit = 15
  973. elseif ARGS[1] = 154:
  974. CloQuality = 1
  975. CloThinness = 2
  976. CloTopCut = 1
  977. CloPantsShortness = 1
  978. CloExhibit = 0
  979. elseif ARGS[1] = 155:
  980. CloQuality = 1
  981. CloThinness = 2
  982. CloTopCut = 1
  983. CloSkirtShortness = 3
  984. CloExhibit = 15
  985. elseif ARGS[1] = 156:
  986. CloQuality = 1
  987. CloThinness = 2
  988. CloTopCut = 3
  989. CloPantsShortness = 5
  990. CloBimbo = 1
  991. CloExhibit = 30
  992. elseif ARGS[1] = 157:
  993. CloQuality = 2
  994. CloThinness = 2
  995. CloTopCut = 2
  996. CloSkirtShortness = 2
  997. CloExhibit = 10
  998. elseif ARGS[1] = 158:
  999. CloQuality = 1
  1000. CloThinness = 4
  1001. CloTopCut = 1
  1002. CloPantsShortness = 4
  1003. CloOnePiece = 1
  1004. CloExhibit = 10
  1005. elseif ARGS[1] = 159:
  1006. CloQuality = 1
  1007. CloThinness = 3
  1008. CloTopCut = 1
  1009. CloPantsShortness = 1
  1010. CloExhibit = 10
  1011. elseif ARGS[1] = 160:
  1012. CloQuality = 2
  1013. CloThinness = 2
  1014. CloTopCut = 2
  1015. CloSkirtShortness = 2
  1016. CloExhibit = 10
  1017. elseif ARGS[1] = 161:
  1018. CloQuality = 2
  1019. CloThinness = 2
  1020. CloTopCut = 2
  1021. CloSkirtShortness = 2
  1022. CloExhibit = 10
  1023. elseif ARGS[1] = 162:
  1024. CloQuality = 2
  1025. CloThinness = 2
  1026. CloTopCut = 2
  1027. CloSkirtShortness = 2
  1028. CloExhibit = 10
  1029. elseif ARGS[1] = 163:
  1030. CloQuality = 2
  1031. CloThinness = 2
  1032. CloTopCut = 2
  1033. CloSkirtShortness = 2
  1034. CloExhibit = 10
  1035. elseif ARGS[1] = 164:
  1036. CloQuality = 2
  1037. CloThinness = 3
  1038. CloTopCut = 1
  1039. CloSkirtShortness = 2
  1040. CloExhibit = 10
  1041. elseif ARGS[1] = 165:
  1042. CloQuality = 1
  1043. CloThinness = 2
  1044. CloTopCut = 2
  1045. CloPantsShortness = 1
  1046. CloExhibit = 5
  1047. elseif ARGS[1] = 166:
  1048. CloQuality = 2
  1049. CloThinness = 2
  1050. CloTopCut = 1
  1051. CloSkirtShortness = 3
  1052. CloExhibit = 15
  1053. elseif ARGS[1] = 167:
  1054. CloQuality = 2
  1055. CloThinness = 3
  1056. CloTopCut = 2
  1057. CloSkirtShortness = 2
  1058. CloExhibit = 10
  1059. elseif ARGS[1] = 168:
  1060. CloQuality = 2
  1061. CloThinness = 2
  1062. CloTopCut = 2
  1063. CloSkirtShortness = 4
  1064. CloExhibit = 20
  1065. elseif ARGS[1] = 169:
  1066. CloQuality = 1
  1067. CloThinness = 4
  1068. CloTopCut = 3
  1069. CloSkirtShortness = 2
  1070. CloExhibit = 15
  1071. elseif ARGS[1] = 170:
  1072. CloQuality = 2
  1073. CloThinness = 4
  1074. CloTopCut = 3
  1075. CloSkirtShortness = 2
  1076. CloExhibit = 15
  1077. elseif ARGS[1] = 171:
  1078. CloQuality = 2
  1079. CloThinness = 3
  1080. CloTopCut = 2
  1081. CloSkirtShortness = 2
  1082. CloExhibit = 10
  1083. elseif ARGS[1] = 172:
  1084. CloQuality = 1
  1085. CloThinness = 4
  1086. CloTopCut = 3
  1087. CloSkirtShortness = 4
  1088. CloExhibit = 20
  1089. elseif ARGS[1] = 173:
  1090. CloQuality = 2
  1091. CloThinness = 3
  1092. CloTopCut = 2
  1093. CloSkirtShortness = 5
  1094. CloExhibit = 25
  1095. elseif ARGS[1] = 174:
  1096. CloQuality = 2
  1097. CloThinness = 3
  1098. CloTopCut = 3
  1099. CloSkirtShortness = 3
  1100. CloBimbo = 1
  1101. CloExhibit = 25
  1102. elseif ARGS[1] = 175:
  1103. CloQuality = 2
  1104. CloThinness = 4
  1105. CloTopCut = 3
  1106. CloSkirtShortness = 4
  1107. CloBimbo = 1
  1108. CloExhibit = 20
  1109. elseif ARGS[1] = 176:
  1110. CloQuality = 1
  1111. CloThinness = 2
  1112. CloTopCut = 1
  1113. CloPantsShortness = 1
  1114. CloExhibit = 0
  1115. elseif ARGS[1] = 177:
  1116. CloQuality = 1
  1117. CloThinness = 4
  1118. CloTopCut = 3
  1119. CloPantsShortness = 5
  1120. CloExhibit = 15
  1121. elseif ARGS[1] = 178:
  1122. CloQuality = 2
  1123. CloThinness = 2
  1124. CloTopCut = 2
  1125. CloSkirtShortness = 4
  1126. CloExhibit = 15
  1127. elseif ARGS[1] = 179:
  1128. CloQuality = 2
  1129. CloThinness = 2
  1130. CloTopCut = 1
  1131. CloPantsShortness = 4
  1132. CloExhibit = 10
  1133. elseif ARGS[1] = 180:
  1134. CloQuality = 2
  1135. CloThinness = 2
  1136. CloTopCut = 1
  1137. CloSkirtShortness = 2
  1138. CloExhibit = 10
  1139. elseif ARGS[1] = 181:
  1140. CloQuality = 2
  1141. CloThinness = 2
  1142. CloTopCut = 2
  1143. CloSkirtShortness = 4
  1144. CloExhibit = 15
  1145. elseif ARGS[1] = 182:
  1146. CloQuality = 2
  1147. CloThinness = 2
  1148. CloTopCut = 1
  1149. CloSkirtShortness = 2
  1150. CloExhibit = 10
  1151. elseif ARGS[1] = 183:
  1152. CloStyle = 4
  1153. CloQuality = 2
  1154. CloThinness = 4
  1155. CloTopCut = 3
  1156. CloSkirtShortness = 5
  1157. CloBimbo = 1
  1158. CloExhibit = 20
  1159. elseif ARGS[1] = 184:
  1160. CloQuality = 2
  1161. CloThinness = 3
  1162. CloTopCut = 1
  1163. CloSkirtShortness = 2
  1164. CloExhibit = 10
  1165. elseif ARGS[1] = 185:
  1166. CloQuality = 2
  1167. CloThinness = 3
  1168. CloTopCut = 3
  1169. CloSkirtShortness = 3
  1170. CloExhibit = 20
  1171. elseif ARGS[1] = 186:
  1172. CloQuality = 2
  1173. CloThinness = 4
  1174. CloTopCut = 4
  1175. CloBra = 1
  1176. CloPantsShortness = 1
  1177. CloBimbo = 1
  1178. CloExhibit = 25
  1179. elseif ARGS[1] = 187:
  1180. CloQuality = 2
  1181. CloThinness = 2
  1182. CloTopCut = 2
  1183. CloPantsShortness = 2
  1184. CloExhibit = 5
  1185. elseif ARGS[1] = 188:
  1186. CloQuality = 2
  1187. CloThinness = 1
  1188. CloTopCut = 1
  1189. CloSkirtShortness = 3
  1190. CloExhibit = 15
  1191. elseif ARGS[1] = 189:
  1192. CloQuality = 2
  1193. CloThinness = 4
  1194. CloTopCut = 3
  1195. CloSkirtShortness = 2
  1196. CloBimbo = 1
  1197. CloExhibit = 20
  1198. elseif ARGS[1] = 190:
  1199. CloQuality = 2
  1200. CloThinness = 3
  1201. CloTopCut = 1
  1202. CloPantsShortness = 1
  1203. CloExhibit = 10
  1204. elseif ARGS[1] = 191:
  1205. CloQuality = 1
  1206. CloThinness = 3
  1207. CloTopCut = 3
  1208. CloPantsShortness = 4
  1209. CloExhibit = 15
  1210. elseif ARGS[1] = 192:
  1211. CloQuality = 2
  1212. CloThinness = 2
  1213. CloTopCut = 1
  1214. CloSkirtShortness = 2
  1215. CloExhibit = 10
  1216. elseif ARGS[1] = 193:
  1217. CloQuality = 1
  1218. CloThinness = 3
  1219. CloTopCut = 3
  1220. CloPantsShortness = 5
  1221. CloExhibit = 20
  1222. elseif ARGS[1] = 194:
  1223. CloQuality = 2
  1224. CloThinness = 2
  1225. CloTopCut = 2
  1226. CloSkirtShortness = 4
  1227. CloExhibit = 20
  1228. elseif ARGS[1] = 195:
  1229. CloQuality = 2
  1230. CloThinness = 2
  1231. CloTopCut = 1
  1232. CloSkirtShortness = 4
  1233. CloExhibit = 15
  1234. elseif ARGS[1] = 196:
  1235. CloQuality = 2
  1236. CloThinness = 3
  1237. CloTopCut = 2
  1238. CloPantsShortness = 1
  1239. CloExhibit = 10
  1240. elseif ARGS[1] = 197:
  1241. CloQuality = 2
  1242. CloThinness = 2
  1243. CloTopCut = 1
  1244. CloPantsShortness = 2
  1245. CloExhibit = 10
  1246. elseif ARGS[1] = 198:
  1247. CloQuality = 1
  1248. CloThinness = 2
  1249. CloTopCut = 2
  1250. CloPantsShortness = 1
  1251. CloExhibit = 5
  1252. elseif ARGS[1] = 199:
  1253. CloQuality = 2
  1254. CloThinness = 2
  1255. CloTopCut = 1
  1256. CloPantsShortness = 1
  1257. CloExhibit = 5
  1258. elseif ARGS[1] = 200:
  1259. CloQuality = 2
  1260. CloThinness = 3
  1261. CloTopCut = 4
  1262. CloBra = 1
  1263. CloPantsShortness = 1
  1264. CloExhibit = 15
  1265. elseif ARGS[1] = 201:
  1266. CloQuality = 1
  1267. CloThinness = 2
  1268. CloTopCut = 1
  1269. CloSkirtShortness = 2
  1270. CloExhibit = 10
  1271. elseif ARGS[1] = 202:
  1272. CloQuality = 2
  1273. CloThinness = 4
  1274. CloTopCut = 2
  1275. CloPantsShortness = 1
  1276. CloExhibit = 15
  1277. elseif ARGS[1] = 203:
  1278. CloQuality = 1
  1279. CloThinness = 2
  1280. CloTopCut = 2
  1281. CloPantsShortness = 1
  1282. CloExhibit = 15
  1283. elseif ARGS[1] = 204:
  1284. CloQuality = 1
  1285. CloThinness = 2
  1286. CloTopCut = 2
  1287. CloPantsShortness = 1
  1288. CloExhibit = 10
  1289. elseif ARGS[1] = 205:
  1290. CloQuality = 2
  1291. CloThinness = 3
  1292. CloTopCut = 3
  1293. CloPantsShortness = 1
  1294. CloExhibit = 15
  1295. elseif ARGS[1] = 206:
  1296. CloQuality = 2
  1297. CloThinness = 2
  1298. CloTopCut = 1
  1299. CloPantsShortness = 1
  1300. CloExhibit = 10
  1301. elseif ARGS[1] = 207:
  1302. CloQuality = 2
  1303. CloThinness = 2
  1304. CloTopCut = 2
  1305. CloSkirtShortness = 4
  1306. CloExhibit = 20
  1307. elseif ARGS[1] = 208:
  1308. CloQuality = 2
  1309. CloThinness = 2
  1310. CloTopCut = 1
  1311. CloSkirtShortness = 2
  1312. CloExhibit = 10
  1313. elseif ARGS[1] = 209:
  1314. CloQuality = 2
  1315. CloThinness = 2
  1316. CloTopCut = 2
  1317. CloSkirtShortness = 4
  1318. CloExhibit = 20
  1319. elseif ARGS[1] = 210:
  1320. CloQuality = 2
  1321. CloThinness = 2
  1322. CloTopCut = 1
  1323. CloPantsShortness = 1
  1324. CloExhibit = 0
  1325. elseif ARGS[1] = 211:
  1326. CloQuality = 2
  1327. CloThinness = 2
  1328. CloTopCut = 1
  1329. CloSkirtShortness = 4
  1330. CloExhibit = 15
  1331. elseif ARGS[1] = 212:
  1332. CloQuality = 2
  1333. CloThinness = 3
  1334. CloTopCut = 4
  1335. CloBra = 1
  1336. CloSkirtShortness = 3
  1337. CloExhibit = 20
  1338. elseif ARGS[1] = 213:
  1339. CloQuality = 2
  1340. CloThinness = 2
  1341. CloTopCut = 4
  1342. CloBra = 1
  1343. CloPantsShortness = 5
  1344. CloExhibit = 20
  1345. elseif ARGS[1] = 214:
  1346. CloQuality = 1
  1347. CloThinness = 2
  1348. CloTopCut = 2
  1349. CloPantsShortness = 1
  1350. CloExhibit = 5
  1351. elseif ARGS[1] = 215:
  1352. CloQuality = 2
  1353. CloThinness = 3
  1354. CloTopCut = 2
  1355. CloSkirtShortness = 2
  1356. CloExhibit = 10
  1357. elseif ARGS[1] = 216:
  1358. CloQuality = 2
  1359. CloThinness = 2
  1360. CloTopCut = 1
  1361. CloSkirtShortness = 4
  1362. CloExhibit = 20
  1363. elseif ARGS[1] = 217:
  1364. CloStyle = 1
  1365. CloQuality = 1
  1366. CloThinness = 2
  1367. CloTopCut = 1
  1368. CloPantsShortness = 5
  1369. CloExhibit = 10
  1370. elseif ARGS[1] = 218:
  1371. CloQuality = 2
  1372. CloThinness = 2
  1373. CloTopCut = 2
  1374. CloPantsShortness = 1
  1375. CloExhibit = 5
  1376. elseif ARGS[1] = 219:
  1377. CloQuality = 1
  1378. CloThinness = 2
  1379. CloTopCut = 1
  1380. CloPantsShortness = 1
  1381. CloExhibit = 0
  1382. elseif ARGS[1] = 220:
  1383. CloQuality = 2
  1384. CloThinness = 2
  1385. CloTopCut = 2
  1386. CloSkirtShortness = 3
  1387. CloExhibit = 10
  1388. elseif ARGS[1] = 221:
  1389. CloQuality = 2
  1390. CloThinness = 2
  1391. CloTopCut = 2
  1392. CloPantsShortness = 1
  1393. CloExhibit = 10
  1394. elseif ARGS[1] = 222:
  1395. CloQuality = 2
  1396. CloThinness = 3
  1397. CloTopCut = 4
  1398. CloBra = 1
  1399. CloPantsShortness = 5
  1400. CloExhibit = 25
  1401. elseif ARGS[1] = 223:
  1402. CloQuality = 2
  1403. CloThinness = 3
  1404. CloTopCut = 4
  1405. CloBra = 1
  1406. CloPantsShortness = 5
  1407. CloExhibit = 25
  1408. elseif ARGS[1] = 224:
  1409. CloQuality = 2
  1410. CloThinness = 3
  1411. CloTopCut = 4
  1412. CloBra = 1
  1413. CloPantsShortness = 5
  1414. CloExhibit = 20
  1415. elseif ARGS[1] = 225:
  1416. CloQuality = 2
  1417. CloThinness = 2
  1418. CloTopCut = 1
  1419. CloSkirtShortness = 4
  1420. CloExhibit = 15
  1421. elseif ARGS[1] = 226:
  1422. CloQuality = 2
  1423. CloThinness = 3
  1424. CloTopCut = 2
  1425. CloPantsShortness = 1
  1426. CloExhibit = 15
  1427. elseif ARGS[1] = 227:
  1428. CloQuality = 2
  1429. CloThinness = 2
  1430. CloTopCut = 1
  1431. CloSkirtShortness = 2
  1432. CloExhibit = 10
  1433. elseif ARGS[1] = 228:
  1434. CloQuality = 1
  1435. CloThinness = 2
  1436. CloTopCut = 1
  1437. CloPantsShortness = 1
  1438. CloExhibit = 5
  1439. elseif ARGS[1] = 229:
  1440. CloQuality = 2
  1441. CloThinness = 1
  1442. CloTopCut = 1
  1443. CloSkirtShortness = 2
  1444. CloExhibit = 10
  1445. elseif ARGS[1] = 230:
  1446. CloQuality = 2
  1447. CloThinness = 2
  1448. CloTopCut = 3
  1449. CloSkirtShortness = 3
  1450. CloExhibit = 25
  1451. elseif ARGS[1] = 231:
  1452. CloQuality = 2
  1453. CloThinness = 3
  1454. CloTopCut = 2
  1455. CloSkirtShortness = 4
  1456. CloExhibit = 20
  1457. elseif ARGS[1] = 232:
  1458. CloQuality = 1
  1459. CloThinness = 2
  1460. CloTopCut = 2
  1461. CloSkirtShortness = 4
  1462. CloExhibit = 15
  1463. elseif ARGS[1] = 233:
  1464. CloQuality = 2
  1465. CloThinness = 3
  1466. CloTopCut = 1
  1467. CloPantsShortness = 1
  1468. CloExhibit = 10
  1469. elseif ARGS[1] = 234:
  1470. CloQuality = 2
  1471. CloThinness = 2
  1472. CloTopCut = 3
  1473. CloSkirtShortness = 4
  1474. CloExhibit = 20
  1475. elseif ARGS[1] = 235:
  1476. CloQuality = 2
  1477. CloThinness = 3
  1478. CloTopCut = 1
  1479. CloSkirtShortness = 3
  1480. CloExhibit = 15
  1481. elseif ARGS[1] = 236:
  1482. CloQuality = 2
  1483. CloThinness = 2
  1484. CloTopCut = 2
  1485. CloSkirtShortness = 4
  1486. CloExhibit = 20
  1487. elseif ARGS[1] = 237:
  1488. CloQuality = 2
  1489. CloThinness = 3
  1490. CloTopCut = 3
  1491. CloPantsShortness = 5
  1492. CloExhibit = 25
  1493. elseif ARGS[1] = 238:
  1494. CloQuality = 2
  1495. CloThinness = 1
  1496. CloTopCut = 1
  1497. CloSkirtShortness = 2
  1498. CloExhibit = 10
  1499. elseif ARGS[1] = 239:
  1500. CloQuality = 2
  1501. CloThinness = 3
  1502. CloTopCut = 1
  1503. CloSkirtShortness = 3
  1504. CloExhibit = 10
  1505. elseif ARGS[1] = 240:
  1506. CloStyle = 5
  1507. CloQuality = 2
  1508. CloThinness = 1
  1509. CloTopCut = 1
  1510. CloPantsShortness = 1
  1511. CloExhibit = 0
  1512. elseif ARGS[1] = 241:
  1513. CloQuality = 2
  1514. CloThinness = 2
  1515. CloTopCut = 1
  1516. CloPantsShortness = 1
  1517. CloExhibit = 5
  1518. elseif ARGS[1] = 242:
  1519. CloStyle = 4
  1520. CloQuality = 2
  1521. CloThinness = 4
  1522. CloTopCut = 4
  1523. CloPantsShortness = 1
  1524. CloBimbo = 1
  1525. CloExhibit = 30
  1526. elseif ARGS[1] = 243:
  1527. CloQuality = 2
  1528. CloThinness = 2
  1529. CloTopCut = 1
  1530. CloPantsShortness = 1
  1531. CloExhibit = 5
  1532. elseif ARGS[1] = 244:
  1533. CloQuality = 2
  1534. CloThinness = 4
  1535. CloTopCut = 3
  1536. CloSkirtShortness = 4
  1537. CloExhibit = 25
  1538. elseif ARGS[1] = 245:
  1539. CloQuality = 2
  1540. CloThinness = 3
  1541. CloTopCut = 1
  1542. CloPantsShortness = 1
  1543. CloExhibit = 5
  1544. elseif ARGS[1] = 246:
  1545. CloQuality = 2
  1546. CloThinness = 2
  1547. CloTopCut = 2
  1548. CloPantsShortness = 1
  1549. CloExhibit = 5
  1550. elseif ARGS[1] = 247:
  1551. CloQuality = 2
  1552. CloThinness = 3
  1553. CloTopCut = 4
  1554. CloBra = 1
  1555. CloPantsShortness = 5
  1556. CloExhibit = 30
  1557. elseif ARGS[1] = 248:
  1558. CloQuality = 2
  1559. CloThinness = 2
  1560. CloTopCut = 1
  1561. CloPantsShortness = 2
  1562. CloExhibit = 5
  1563. elseif ARGS[1] = 249:
  1564. CloQuality = 2
  1565. CloThinness = 2
  1566. CloTopCut = 3
  1567. CloPantsShortness = 1
  1568. CloExhibit = 15
  1569. elseif ARGS[1] = 250:
  1570. CloQuality = 1
  1571. CloThinness = 2
  1572. CloTopCut = 2
  1573. CloSkirtShortness = 4
  1574. CloExhibit = 20
  1575. elseif ARGS[1] = 251:
  1576. CloQuality = 2
  1577. CloThinness = 3
  1578. CloTopCut = 3
  1579. CloPantsShortness = 1
  1580. CloBimbo = 1
  1581. CloExhibit = 20
  1582. elseif ARGS[1] = 252:
  1583. CloQuality = 1
  1584. CloThinness = 2
  1585. CloTopCut = 1
  1586. CloPantsShortness = 1
  1587. CloExhibit = 5
  1588. elseif ARGS[1] = 253:
  1589. CloQuality = 1
  1590. CloThinness = 2
  1591. CloTopCut = 2
  1592. CloPantsShortness = 4
  1593. CloExhibit = 15
  1594. elseif ARGS[1] = 254:
  1595. CloQuality = 1
  1596. CloThinness = 2
  1597. CloTopCut = 2
  1598. CloPantsShortness = 4
  1599. CloExhibit = 15
  1600. elseif ARGS[1] = 255:
  1601. CloQuality = 1
  1602. CloThinness = 2
  1603. CloTopCut = 2
  1604. CloPantsShortness = 4
  1605. CloExhibit = 10
  1606. elseif ARGS[1] = 256:
  1607. CloQuality = 1
  1608. CloThinness = 2
  1609. CloTopCut = 2
  1610. CloSkirtShortness = 4
  1611. CloExhibit = 20
  1612. elseif ARGS[1] = 257:
  1613. CloQuality = 2
  1614. CloThinness = 2
  1615. CloTopCut = 2
  1616. CloPantsShortness = 1
  1617. CloExhibit = 5
  1618. elseif ARGS[1] = 258:
  1619. CloQuality = 2
  1620. CloThinness = 2
  1621. CloTopCut = 2
  1622. CloSkirtShortness = 4
  1623. CloExhibit = 15
  1624. elseif ARGS[1] = 259:
  1625. CloQuality = 2
  1626. CloThinness = 3
  1627. CloTopCut = 2
  1628. CloPantsShortness = 1
  1629. CloExhibit = 10
  1630. elseif ARGS[1] = 260:
  1631. CloQuality = 2
  1632. CloThinness = 2
  1633. CloTopCut = 2
  1634. CloPantsShortness = 1
  1635. CloExhibit = 5
  1636. elseif ARGS[1] = 261:
  1637. CloQuality = 1
  1638. CloThinness = 4
  1639. CloTopCut = 4
  1640. CloPantsShortness = 5
  1641. CloExhibit = 30
  1642. elseif ARGS[1] = 262:
  1643. CloStyle = 3
  1644. CloQuality = 2
  1645. CloThinness = 2
  1646. CloTopCut = 1
  1647. CloSkirtShortness = 3
  1648. CloExhibit = 15
  1649. elseif ARGS[1] = 263:
  1650. CloQuality = 2
  1651. CloThinness = 3
  1652. CloTopCut = 1
  1653. CloPantsShortness = 1
  1654. CloExhibit = 5
  1655. elseif ARGS[1] = 264:
  1656. CloQuality = 1
  1657. CloThinness = 2
  1658. CloTopCut = 2
  1659. CloSkirtShortness = 3
  1660. CloExhibit = 20
  1661. elseif ARGS[1] = 265:
  1662. CloQuality = 1
  1663. CloThinness = 2
  1664. CloTopCut = 1
  1665. CloPantsShortness = 1
  1666. CloExhibit = 0
  1667. elseif ARGS[1] = 266:
  1668. CloQuality = 2
  1669. CloThinness = 4
  1670. CloTopCut = 2
  1671. CloSkirtShortness = 3
  1672. CloExhibit = 20
  1673. elseif ARGS[1] = 267:
  1674. CloQuality = 2
  1675. CloThinness = 2
  1676. CloTopCut = 1
  1677. CloPantsShortness = 4
  1678. CloExhibit = 10
  1679. elseif ARGS[1] = 268:
  1680. CloQuality = 2
  1681. CloThinness = 4
  1682. CloTopCut = 2
  1683. CloPantsShortness = 2
  1684. CloBimbo = 1
  1685. CloExhibit = 25
  1686. elseif ARGS[1] = 269:
  1687. CloStyle = 4
  1688. CloQuality = 2
  1689. CloThinness = 4
  1690. CloTopCut = 3
  1691. CloSkirtShortness = 5
  1692. CloBimbo = 1
  1693. CloExhibit = 30
  1694. elseif ARGS[1] = 270:
  1695. CloQuality = 1
  1696. CloThinness = 2
  1697. CloTopCut = 2
  1698. CloPantsShortness = 1
  1699. CloExhibit = 0
  1700. elseif ARGS[1] = 271:
  1701. CloQuality = 1
  1702. CloThinness = 6
  1703. CloTopCut = 2
  1704. CloPantsShortness = 4
  1705. CloExhibit = 25
  1706. elseif ARGS[1] = 272:
  1707. CloQuality = 2
  1708. CloThinness = 3
  1709. CloTopCut = 4
  1710. CloPantsShortness = 5
  1711. CloExhibit = 25
  1712. elseif ARGS[1] = 273:
  1713. CloQuality = 2
  1714. CloThinness = 2
  1715. CloTopCut = 3
  1716. CloPantsShortness = 4
  1717. CloBimbo = 1
  1718. CloExhibit = 25
  1719. elseif ARGS[1] = 274:
  1720. CloQuality = 2
  1721. CloThinness = 3
  1722. CloTopCut = 3
  1723. CloSkirtShortness = 5
  1724. CloBimbo = 1
  1725. CloExhibit = 25
  1726. elseif ARGS[1] = 275:
  1727. CloStyle = 4
  1728. CloQuality = 2
  1729. CloThinness = 4
  1730. CloTopCut = 2
  1731. CloPantsShortness = 5
  1732. CloExhibit = 30
  1733. elseif ARGS[1] = 276:
  1734. CloQuality = 1
  1735. CloThinness = 2
  1736. CloTopCut = 1
  1737. CloPantsShortness = 1
  1738. CloExhibit = 5
  1739. elseif ARGS[1] = 277:
  1740. CloQuality = 1
  1741. CloThinness = 3
  1742. CloTopCut = 2
  1743. CloSkirtShortness = 5
  1744. CloExhibit = 20
  1745. elseif ARGS[1] = 278:
  1746. CloQuality = 1
  1747. CloThinness = 2
  1748. CloTopCut = 2
  1749. CloPantsShortness = 1
  1750. CloExhibit = 10
  1751. elseif ARGS[1] = 279:
  1752. CloQuality = 1
  1753. CloThinness = 2
  1754. CloTopCut = 2
  1755. CloSkirtShortness = 3
  1756. CloExhibit = 15
  1757. elseif ARGS[1] = 280:
  1758. CloQuality = 1
  1759. CloThinness = 2
  1760. CloTopCut = 3
  1761. CloSkirtShortness = 4
  1762. CloExhibit = 25
  1763. elseif ARGS[1] = 281:
  1764. CloQuality = 1
  1765. CloThinness = 3
  1766. CloTopCut = 2
  1767. CloPantsShortness = 1
  1768. CloExhibit = 15
  1769. elseif ARGS[1] = 282:
  1770. CloQuality = 1
  1771. CloThinness = 2
  1772. CloTopCut = 1
  1773. CloSkirtShortness = 2
  1774. CloExhibit = 10
  1775. elseif ARGS[1] = 283:
  1776. CloQuality = 1
  1777. CloThinness = 2
  1778. CloTopCut = 2
  1779. CloSkirtShortness = 4
  1780. CloExhibit = 15
  1781. elseif ARGS[1] = 284:
  1782. CloStyle = 1
  1783. CloQuality = 2
  1784. CloThinness = 2
  1785. CloTopCut = 2
  1786. CloSkirtShortness = 3
  1787. CloExhibit = 15
  1788. elseif ARGS[1] = 285:
  1789. CloQuality = 1
  1790. CloThinness = 2
  1791. CloTopCut = 2
  1792. CloSkirtShortness = 4
  1793. CloExhibit = 25
  1794. elseif ARGS[1] = 286:
  1795. CloStyle = 4
  1796. CloQuality = 2
  1797. CloThinness = 4
  1798. CloTopCut = 4
  1799. CloPantsShortness = 5
  1800. CloBimbo = 1
  1801. CloExhibit = 30
  1802. elseif ARGS[1] = 287:
  1803. CloQuality = 1
  1804. CloThinness = 3
  1805. CloTopCut = 3
  1806. CloPantsShortness = 1
  1807. CloExhibit = 10
  1808. elseif ARGS[1] = 288:
  1809. CloQuality = 2
  1810. CloThinness = 2
  1811. CloTopCut = 2
  1812. CloPantsShortness = 2
  1813. CloExhibit = 15
  1814. elseif ARGS[1] = 289:
  1815. CloQuality = 2
  1816. CloThinness = 4
  1817. CloTopCut = 3
  1818. CloBra = 1
  1819. CloSkirtShortness = 2
  1820. CloBimbo = 1
  1821. CloExhibit = 25
  1822. elseif ARGS[1] = 290:
  1823. CloQuality = 1
  1824. CloThinness = 2
  1825. CloTopCut = 2
  1826. CloSkirtShortness = 2
  1827. CloExhibit = 10
  1828. elseif ARGS[1] = 291:
  1829. CloQuality = 1
  1830. CloThinness = 4
  1831. CloTopCut = 2
  1832. CloSkirtShortness = 4
  1833. CloExhibit = 20
  1834. elseif ARGS[1] = 292:
  1835. CloStyle = 4
  1836. CloQuality = 2
  1837. CloThinness = 5
  1838. CloTopCut = 1
  1839. CloSkirtShortness = 4
  1840. CloExhibit = 25
  1841. elseif ARGS[1] = 293:
  1842. CloQuality = 1
  1843. CloThinness = 2
  1844. CloTopCut = 2
  1845. CloSkirtShortness = 5
  1846. CloExhibit = 20
  1847. elseif ARGS[1] = 294:
  1848. CloQuality = 1
  1849. CloThinness = 4
  1850. CloTopCut = 3
  1851. CloPantsShortness = 5
  1852. CloExhibit = 20
  1853. elseif ARGS[1] = 295:
  1854. CloQuality = 1
  1855. CloThinness = 3
  1856. CloTopCut = 2
  1857. CloPantsShortness = 5
  1858. CloExhibit = 15
  1859. elseif ARGS[1] = 296:
  1860. CloQuality = 2
  1861. CloThinness = 3
  1862. CloTopCut = 1
  1863. CloPantsShortness = 1
  1864. CloExhibit = 5
  1865. elseif ARGS[1] = 297:
  1866. CloQuality = 2
  1867. CloThinness = 3
  1868. CloTopCut = 1
  1869. CloSkirtShortness = 4
  1870. CloExhibit = 20
  1871. elseif ARGS[1] = 298:
  1872. CloQuality = 1
  1873. CloThinness = 2
  1874. CloTopCut = 1
  1875. CloPantsShortness = 1
  1876. CloExhibit = 0
  1877. elseif ARGS[1] = 299:
  1878. CloQuality = 2
  1879. CloThinness = 3
  1880. CloTopCut = 2
  1881. CloSkirtShortness = 4
  1882. CloExhibit = 25
  1883. elseif ARGS[1] = 300:
  1884. CloQuality = 2
  1885. CloThinness = 2
  1886. CloTopCut = 2
  1887. CloPantsShortness = 5
  1888. CloExhibit = 15
  1889. elseif ARGS[1] = 301:
  1890. CloQuality = 2
  1891. CloThinness = 3
  1892. CloTopCut = 3
  1893. CloPantsShortness = 1
  1894. CloExhibit = 10
  1895. elseif ARGS[1] = 302:
  1896. CloQuality = 2
  1897. CloThinness = 4
  1898. CloTopCut = 3
  1899. CloPantsShortness = 5
  1900. CloBimbo = 1
  1901. CloExhibit = 30
  1902. elseif ARGS[1] = 303:
  1903. CloStyle = 4
  1904. CloQuality = 2
  1905. CloThinness = 2
  1906. CloTopCut = 3
  1907. CloSkirtShortness = 5
  1908. CloExhibit = 25
  1909. elseif ARGS[1] = 304:
  1910. CloStyle = 4
  1911. CloQuality = 1
  1912. CloThinness = 5
  1913. CloTopCut = 3
  1914. CloSkirtShortness = 4
  1915. CloExhibit = 25
  1916. elseif ARGS[1] = 305:
  1917. CloQuality = 1
  1918. CloThinness = 2
  1919. CloTopCut = 2
  1920. CloSkirtShortness = 4
  1921. CloExhibit = 20
  1922. elseif ARGS[1] = 306:
  1923. CloQuality = 1
  1924. CloThinness = 3
  1925. CloTopCut = 2
  1926. CloPantsShortness = 5
  1927. CloExhibit = 25
  1928. elseif ARGS[1] = 307:
  1929. CloStyle = 1
  1930. CloQuality = 2
  1931. CloThinness = 2
  1932. CloTopCut = 2
  1933. CloPantsShortness = 1
  1934. CloExhibit = 0
  1935. elseif ARGS[1] = 308:
  1936. CloQuality = 1
  1937. CloThinness = 2
  1938. CloTopCut = 3
  1939. CloSkirtShortness = 4
  1940. CloExhibit = 20
  1941. elseif ARGS[1] = 309:
  1942. CloQuality = 1
  1943. CloThinness = 2
  1944. CloTopCut = 2
  1945. CloPantsShortness = 4
  1946. CloExhibit = 10
  1947. elseif ARGS[1] = 310:
  1948. CloQuality = 2
  1949. CloThinness = 3
  1950. CloTopCut = 2
  1951. CloPantsShortness = 1
  1952. CloExhibit = 5
  1953. elseif ARGS[1] = 311:
  1954. CloQuality = 2
  1955. CloThinness = 3
  1956. CloTopCut = 2
  1957. CloSkirtShortness = 3
  1958. CloBimbo = 1
  1959. CloExhibit = 20
  1960. elseif ARGS[1] = 312:
  1961. CloStyle = 4
  1962. CloQuality = 2
  1963. CloThinness = 3
  1964. CloTopCut = 4
  1965. CloSkirtShortness = 5
  1966. CloExhibit = 30
  1967. elseif ARGS[1] = 313:
  1968. CloQuality = 2
  1969. CloThinness = 3
  1970. CloTopCut = 2
  1971. CloPantsShortness = 1
  1972. CloExhibit = 5
  1973. elseif ARGS[1] = 314:
  1974. CloQuality = 2
  1975. CloThinness = 3
  1976. CloTopCut = 2
  1977. CloPantsShortness = 4
  1978. CloExhibit = 15
  1979. elseif ARGS[1] = 315:
  1980. CloStyle = 4
  1981. CloQuality = 2
  1982. CloThinness = 3
  1983. CloTopCut = 4
  1984. CloSkirtShortness = 3
  1985. CloBimbo = 1
  1986. CloExhibit = 30
  1987. elseif ARGS[1] = 316:
  1988. CloQuality = 1
  1989. CloThinness = 3
  1990. CloTopCut = 2
  1991. CloPantsShortness = 4
  1992. CloExhibit = 15
  1993. elseif ARGS[1] = 317:
  1994. CloQuality = 1
  1995. CloThinness = 4
  1996. CloTopCut = 1
  1997. CloPantsShortness = 1
  1998. CloExhibit = 5
  1999. elseif ARGS[1] = 318:
  2000. CloQuality = 2
  2001. CloThinness = 2
  2002. CloTopCut = 2
  2003. CloSkirtShortness = 4
  2004. CloExhibit = 20
  2005. elseif ARGS[1] = 319:
  2006. CloQuality = 2
  2007. CloThinness = 2
  2008. CloTopCut = 1
  2009. CloPantsShortness = 1
  2010. CloExhibit = 0
  2011. elseif ARGS[1] = 320:
  2012. CloQuality = 2
  2013. CloThinness = 4
  2014. CloTopCut = 4
  2015. CloBra = 1
  2016. CloPantsShortness = 5
  2017. CloBimbo = 1
  2018. CloExhibit = 35
  2019. elseif ARGS[1] = 321:
  2020. CloQuality = 1
  2021. CloThinness = 2
  2022. CloTopCut = 2
  2023. CloPantsShortness = 1
  2024. CloExhibit = 5
  2025. elseif ARGS[1] = 322:
  2026. CloQuality = 1
  2027. CloThinness = 3
  2028. CloTopCut = 2
  2029. CloPantsShortness = 4
  2030. CloExhibit = 15
  2031. elseif ARGS[1] = 323:
  2032. CloQuality = 2
  2033. CloThinness = 3
  2034. CloTopCut = 1
  2035. CloPantsShortness = 1
  2036. CloExhibit = 0
  2037. elseif ARGS[1] = 324:
  2038. CloQuality = 2
  2039. CloThinness = 3
  2040. CloTopCut = 2
  2041. CloPantsShortness = 1
  2042. CloExhibit = 5
  2043. elseif ARGS[1] = 325:
  2044. CloQuality = 1
  2045. CloThinness = 3
  2046. CloTopCut = 1
  2047. CloPantsShortness = 4
  2048. CloExhibit = 20
  2049. elseif ARGS[1] = 326:
  2050. CloQuality = 2
  2051. CloThinness = 2
  2052. CloTopCut = 1
  2053. CloPantsShortness = 1
  2054. CloExhibit = 5
  2055. elseif ARGS[1] = 327:
  2056. CloStyle = 3
  2057. CloQuality = 2
  2058. CloThinness = 4
  2059. CloTopCut = 2
  2060. CloPantsShortness = 1
  2061. CloExhibit = 15
  2062. elseif ARGS[1] = 328:
  2063. CloQuality = 2
  2064. CloThinness = 3
  2065. CloTopCut = 2
  2066. CloPantsShortness = 1
  2067. CloExhibit = 15
  2068. elseif ARGS[1] = 329:
  2069. CloQuality = 2
  2070. CloThinness = 3
  2071. CloTopCut = 1
  2072. CloPantsShortness = 1
  2073. CloExhibit = 0
  2074. elseif ARGS[1] = 330:
  2075. CloQuality = 1
  2076. CloThinness = 3
  2077. CloTopCut = 1
  2078. CloPantsShortness = 1
  2079. CloExhibit = 10
  2080. elseif ARGS[1] = 331:
  2081. CloQuality = 2
  2082. CloThinness = 3
  2083. CloTopCut = 2
  2084. CloPantsShortness = 1
  2085. CloExhibit = 5
  2086. elseif ARGS[1] = 332:
  2087. CloQuality = 1
  2088. CloThinness = 2
  2089. CloTopCut = 1
  2090. CloPantsShortness = 1
  2091. CloExhibit = 0
  2092. elseif ARGS[1] = 333:
  2093. CloQuality = 1
  2094. CloThinness = 2
  2095. CloTopCut = 2
  2096. CloSkirtShortness = 4
  2097. CloExhibit = 15
  2098. elseif ARGS[1] = 334:
  2099. CloQuality = 1
  2100. CloThinness = 2
  2101. CloTopCut = 1
  2102. CloPantsShortness = 1
  2103. CloExhibit = 5
  2104. elseif ARGS[1] = 335:
  2105. CloQuality = 2
  2106. CloThinness = 2
  2107. CloTopCut = 1
  2108. CloPantsShortness = 1
  2109. CloExhibit = 0
  2110. elseif ARGS[1] = 336:
  2111. CloQuality = 1
  2112. CloThinness = 2
  2113. CloTopCut = 1
  2114. CloPantsShortness = 1
  2115. CloExhibit = 0
  2116. elseif ARGS[1] = 337:
  2117. CloQuality = 2
  2118. CloThinness = 3
  2119. CloTopCut = 2
  2120. CloSkirtShortness = 3
  2121. CloExhibit = 10
  2122. elseif ARGS[1] = 338:
  2123. CloQuality = 1
  2124. CloThinness = 2
  2125. CloTopCut = 1
  2126. CloPantsShortness = 1
  2127. CloExhibit = 0
  2128. elseif ARGS[1] = 339:
  2129. CloQuality = 1
  2130. CloThinness = 2
  2131. CloTopCut = 2
  2132. CloPantsShortness = 1
  2133. CloExhibit = 5
  2134. elseif ARGS[1] = 340:
  2135. CloQuality = 1
  2136. CloThinness = 4
  2137. CloTopCut = 2
  2138. CloPantsShortness = 1
  2139. CloExhibit = 15
  2140. elseif ARGS[1] = 341:
  2141. CloQuality = 2
  2142. CloThinness = 3
  2143. CloTopCut = 2
  2144. CloPantsShortness = 1
  2145. CloExhibit = 15
  2146. elseif ARGS[1] = 342:
  2147. CloQuality = 2
  2148. CloThinness = 3
  2149. CloTopCut = 2
  2150. CloPantsShortness = 1
  2151. CloExhibit = 5
  2152. elseif ARGS[1] = 343:
  2153. CloQuality = 2
  2154. CloThinness = 2
  2155. CloTopCut = 1
  2156. CloPantsShortness = 1
  2157. CloExhibit = 0
  2158. elseif ARGS[1] = 344:
  2159. CloQuality = 2
  2160. CloThinness = 4
  2161. CloTopCut = 3
  2162. CloPantsShortness = 4
  2163. CloExhibit = 30
  2164. elseif ARGS[1] = 345:
  2165. CloQuality = 1
  2166. CloThinness = 2
  2167. CloTopCut = 1
  2168. CloPantsShortness = 1
  2169. CloExhibit = 0
  2170. elseif ARGS[1] = 346:
  2171. CloQuality = 2
  2172. CloThinness = 2
  2173. CloTopCut = 1
  2174. CloPantsShortness = 1
  2175. CloExhibit = 0
  2176. elseif ARGS[1] = 347:
  2177. CloQuality = 2
  2178. CloThinness = 3
  2179. CloTopCut = 2
  2180. CloPantsShortness = 1
  2181. CloExhibit = 10
  2182. elseif ARGS[1] = 348:
  2183. CloQuality = 2
  2184. CloThinness = 2
  2185. CloTopCut = 2
  2186. CloPantsShortness = 4
  2187. CloExhibit = 30
  2188. elseif ARGS[1] = 349:
  2189. CloQuality = 2
  2190. CloThinness = 2
  2191. CloTopCut = 1
  2192. CloPantsShortness = 1
  2193. CloExhibit = 0
  2194. elseif ARGS[1] = 350:
  2195. CloQuality = 1
  2196. CloThinness = 2
  2197. CloTopCut = 1
  2198. CloPantsShortness = 1
  2199. CloExhibit = 5
  2200. elseif ARGS[1] = 351:
  2201. CloQuality = 2
  2202. CloThinness = 3
  2203. CloTopCut = 1
  2204. CloPantsShortness = 1
  2205. CloExhibit = 5
  2206. elseif ARGS[1] = 352:
  2207. CloQuality = 1
  2208. CloThinness = 2
  2209. CloTopCut = 2
  2210. CloPantsShortness = 1
  2211. CloExhibit = 5
  2212. elseif ARGS[1] = 353:
  2213. CloQuality = 2
  2214. CloThinness = 2
  2215. CloTopCut = 1
  2216. CloPantsShortness = 1
  2217. CloExhibit = 0
  2218. elseif ARGS[1] = 354:
  2219. CloQuality = 1
  2220. CloThinness = 2
  2221. CloTopCut = 2
  2222. CloPantsShortness = 1
  2223. CloExhibit = 5
  2224. elseif ARGS[1] = 355:
  2225. CloQuality = 1
  2226. CloThinness = 1
  2227. CloTopCut = 1
  2228. CloPantsShortness = 1
  2229. CloExhibit = 0
  2230. elseif ARGS[1] = 356:
  2231. CloQuality = 1
  2232. CloThinness = 2
  2233. CloTopCut = 2
  2234. CloPantsShortness = 1
  2235. CloExhibit = 5
  2236. elseif ARGS[1] = 357:
  2237. CloQuality = 2
  2238. CloThinness = 3
  2239. CloTopCut = 1
  2240. CloPantsShortness = 1
  2241. CloExhibit = 5
  2242. elseif ARGS[1] = 358:
  2243. CloQuality = 2
  2244. CloThinness = 4
  2245. CloTopCut = 2
  2246. CloPantsShortness = 1
  2247. CloExhibit = 10
  2248. elseif ARGS[1] = 359:
  2249. CloQuality = 2
  2250. CloThinness = 2
  2251. CloTopCut = 2
  2252. CloPantsShortness = 1
  2253. CloExhibit = 5
  2254. elseif ARGS[1] = 360:
  2255. CloQuality = 1
  2256. CloThinness = 5
  2257. CloTopCut = 2
  2258. CloPantsShortness = 1
  2259. CloExhibit = 10
  2260. elseif ARGS[1] = 361:
  2261. CloQuality = 1
  2262. CloThinness = 2
  2263. CloTopCut = 2
  2264. CloPantsShortness = 1
  2265. CloExhibit = 5
  2266. elseif ARGS[1] = 362:
  2267. CloQuality = 1
  2268. CloThinness = 1
  2269. CloTopCut = 1
  2270. CloPantsShortness = 1
  2271. CloExhibit = 0
  2272. elseif ARGS[1] = 363:
  2273. CloQuality = 2
  2274. CloThinness = 4
  2275. CloTopCut = 2
  2276. CloPantsShortness = 1
  2277. CloExhibit = 10
  2278. elseif ARGS[1] = 364:
  2279. CloQuality = 2
  2280. CloThinness = 2
  2281. CloTopCut = 1
  2282. CloPantsShortness = 1
  2283. CloExhibit = 5
  2284. elseif ARGS[1] = 365:
  2285. CloQuality = 2
  2286. CloThinness = 2
  2287. CloTopCut = 1
  2288. CloPantsShortness = 1
  2289. CloExhibit = 0
  2290. elseif ARGS[1] = 366:
  2291. CloQuality = 2
  2292. CloThinness = 3
  2293. CloTopCut = 2
  2294. CloPantsShortness = 1
  2295. CloExhibit = 5
  2296. elseif ARGS[1] = 367:
  2297. CloQuality = 2
  2298. CloThinness = 2
  2299. CloTopCut = 3
  2300. CloPantsShortness = 1
  2301. CloBimbo = 1
  2302. CloExhibit = 5
  2303. elseif ARGS[1] = 368:
  2304. CloQuality = 2
  2305. CloThinness = 2
  2306. CloTopCut = 1
  2307. CloSkirtShortness = 4
  2308. CloExhibit = 5
  2309. elseif ARGS[1] = 369:
  2310. CloQuality = 1
  2311. CloThinness = 2
  2312. CloTopCut = 1
  2313. CloPantsShortness = 1
  2314. CloExhibit = 0
  2315. elseif ARGS[1] = 370:
  2316. CloQuality = 2
  2317. CloThinness = 2
  2318. CloTopCut = 1
  2319. CloPantsShortness = 1
  2320. CloExhibit = 0
  2321. elseif ARGS[1] = 371:
  2322. CloQuality = 2
  2323. CloThinness = 2
  2324. CloTopCut = 2
  2325. CloPantsShortness = 1
  2326. CloExhibit = 5
  2327. elseif ARGS[1] = 372:
  2328. CloQuality = 1
  2329. CloThinness = 4
  2330. CloTopCut = 2
  2331. CloPantsShortness = 1
  2332. CloExhibit = 10
  2333. elseif ARGS[1] = 373:
  2334. CloQuality = 2
  2335. CloThinness = 3
  2336. CloTopCut = 2
  2337. CloPantsShortness = 1
  2338. CloExhibit = 5
  2339. elseif ARGS[1] = 374:
  2340. CloQuality = 2
  2341. CloThinness = 2
  2342. CloTopCut = 2
  2343. CloPantsShortness = 1
  2344. CloExhibit = 0
  2345. elseif ARGS[1] = 375:
  2346. CloQuality = 1
  2347. CloThinness = 2
  2348. CloTopCut = 1
  2349. CloPantsShortness = 1
  2350. CloExhibit = 0
  2351. elseif ARGS[1] = 376:
  2352. CloQuality = 1
  2353. CloThinness = 2
  2354. CloTopCut = 1
  2355. CloPantsShortness = 1
  2356. CloExhibit = 5
  2357. elseif ARGS[1] = 377:
  2358. CloQuality = 1
  2359. CloThinness = 3
  2360. CloTopCut = 2
  2361. CloPantsShortness = 1
  2362. CloExhibit = 5
  2363. elseif ARGS[1] = 378:
  2364. CloQuality = 2
  2365. CloThinness = 2
  2366. CloTopCut = 1
  2367. CloPantsShortness = 1
  2368. CloExhibit = 0
  2369. elseif ARGS[1] = 379:
  2370. CloQuality = 2
  2371. CloThinness = 3
  2372. CloTopCut = 2
  2373. CloSkirtShortness = 5
  2374. CloExhibit = 25
  2375. elseif ARGS[1] = 380:
  2376. CloQuality = 1
  2377. CloThinness = 3
  2378. CloTopCut = 2
  2379. CloSkirtShortness = 3
  2380. CloExhibit = 10
  2381. elseif ARGS[1] = 381:
  2382. CloQuality = 2
  2383. CloThinness = 4
  2384. CloTopCut = 3
  2385. CloPantsShortness = 1
  2386. CloExhibit = 15
  2387. elseif ARGS[1] = 382:
  2388. CloQuality = 2
  2389. CloThinness = 3
  2390. CloTopCut = 2
  2391. CloPantsShortness = 1
  2392. CloExhibit = 10
  2393. elseif ARGS[1] = 383:
  2394. CloStyle = 1
  2395. CloQuality = 1
  2396. CloThinness = 3
  2397. CloTopCut = 1
  2398. CloPantsShortness = 1
  2399. CloExhibit = 5
  2400. elseif ARGS[1] = 384:
  2401. CloQuality = 2
  2402. CloThinness = 2
  2403. CloTopCut = 2
  2404. CloPantsShortness = 1
  2405. CloExhibit = 0
  2406. elseif ARGS[1] = 385:
  2407. CloQuality = 2
  2408. CloThinness = 3
  2409. CloTopCut = 1
  2410. CloPantsShortness = 1
  2411. CloExhibit = 0
  2412. elseif ARGS[1] = 386:
  2413. CloQuality = 2
  2414. CloThinness = 3
  2415. CloTopCut = 2
  2416. CloPantsShortness = 1
  2417. CloExhibit = 5
  2418. elseif ARGS[1] = 387:
  2419. CloQuality = 2
  2420. CloThinness = 2
  2421. CloTopCut = 1
  2422. CloPantsShortness = 1
  2423. CloExhibit = 0
  2424. elseif ARGS[1] = 388:
  2425. CloQuality = 1
  2426. CloThinness = 3
  2427. CloTopCut = 2
  2428. CloPantsShortness = 1
  2429. CloExhibit = 5
  2430. elseif ARGS[1] = 389:
  2431. CloQuality = 2
  2432. CloThinness = 3
  2433. CloTopCut = 1
  2434. CloPantsShortness = 1
  2435. CloExhibit = 0
  2436. elseif ARGS[1] = 390:
  2437. CloQuality = 1
  2438. CloThinness = 2
  2439. CloTopCut = 1
  2440. CloPantsShortness = 1
  2441. CloExhibit = 0
  2442. elseif ARGS[1] = 391:
  2443. CloQuality = 2
  2444. CloThinness = 2
  2445. CloTopCut = 1
  2446. CloPantsShortness = 1
  2447. CloExhibit = 0
  2448. elseif ARGS[1] = 392:
  2449. CloQuality = 2
  2450. CloThinness = 2
  2451. CloTopCut = 1
  2452. CloPantsShortness = 1
  2453. CloExhibit = 0
  2454. elseif ARGS[1] = 393:
  2455. CloQuality = 1
  2456. CloThinness = 4
  2457. CloTopCut = 2
  2458. CloPantsShortness = 1
  2459. CloExhibit = 5
  2460. elseif ARGS[1] = 394:
  2461. CloQuality = 2
  2462. CloThinness = 4
  2463. CloTopCut = 2
  2464. CloPantsShortness = 4
  2465. CloExhibit = 15
  2466. elseif ARGS[1] = 395:
  2467. CloQuality = 1
  2468. CloThinness = 2
  2469. CloTopCut = 1
  2470. CloPantsShortness = 1
  2471. CloExhibit = 0
  2472. elseif ARGS[1] = 396:
  2473. CloQuality = 1
  2474. CloThinness = 2
  2475. CloTopCut = 2
  2476. CloPantsShortness = 4
  2477. CloExhibit = 10
  2478. elseif ARGS[1] = 397:
  2479. CloQuality = 1
  2480. CloThinness = 3
  2481. CloTopCut = 1
  2482. CloPantsShortness = 1
  2483. CloExhibit = 0
  2484. elseif ARGS[1] = 398:
  2485. CloQuality = 1
  2486. CloThinness = 2
  2487. CloTopCut = 1
  2488. CloPantsShortness = 1
  2489. CloExhibit = 0
  2490. elseif ARGS[1] = 399:
  2491. CloStyle = 1
  2492. CloQuality = 2
  2493. CloThinness = 3
  2494. CloTopCut = 2
  2495. CloPantsShortness = 4
  2496. CloExhibit = 10
  2497. elseif ARGS[1] = 400:
  2498. CloQuality = 2
  2499. CloThinness = 3
  2500. CloTopCut = 2
  2501. CloPantsShortness = 1
  2502. CloExhibit = 5
  2503. elseif ARGS[1] = 401:
  2504. CloQuality = 2
  2505. CloThinness = 3
  2506. CloTopCut = 2
  2507. CloPantsShortness = 1
  2508. CloExhibit = 5
  2509. elseif ARGS[1] = 402:
  2510. CloQuality = 1
  2511. CloThinness = 1
  2512. CloTopCut = 1
  2513. CloPantsShortness = 1
  2514. CloExhibit = 0
  2515. elseif ARGS[1] = 403:
  2516. CloQuality = 2
  2517. CloThinness = 3
  2518. CloTopCut = 2
  2519. CloSkirtShortness = 3
  2520. CloExhibit = 15
  2521. elseif ARGS[1] = 404:
  2522. CloQuality = 2
  2523. CloThinness = 3
  2524. CloTopCut = 3
  2525. CloPantsShortness = 1
  2526. CloBimbo = 1
  2527. CloExhibit = 10
  2528. elseif ARGS[1] = 405:
  2529. CloQuality = 1
  2530. CloThinness = 1
  2531. CloTopCut = 1
  2532. CloPantsShortness = 1
  2533. CloExhibit = 0
  2534. elseif ARGS[1] = 406:
  2535. CloStyle = 1
  2536. CloQuality = 2
  2537. CloThinness = 2
  2538. CloTopCut = 1
  2539. CloPantsShortness = 4
  2540. CloExhibit = 15
  2541. elseif ARGS[1] = 407:
  2542. CloQuality = 2
  2543. CloThinness = 4
  2544. CloTopCut = 2
  2545. CloPantsShortness = 1
  2546. CloExhibit = 10
  2547. elseif ARGS[1] = 408:
  2548. CloQuality = 1
  2549. CloThinness = 2
  2550. CloTopCut = 3
  2551. CloPantsShortness = 3
  2552. CloExhibit = 5
  2553. elseif ARGS[1] = 409:
  2554. CloStyle = 1
  2555. CloQuality = 1
  2556. CloThinness = 2
  2557. CloTopCut = 2
  2558. CloPantsShortness = 4
  2559. CloExhibit = 5
  2560. elseif ARGS[1] = 410:
  2561. CloQuality = 1
  2562. CloThinness = 4
  2563. CloTopCut = 2
  2564. CloSkirtShortness = 4
  2565. CloExhibit = 30
  2566. elseif ARGS[1] = 411:
  2567. CloQuality = 2
  2568. CloThinness = 2
  2569. CloTopCut = 2
  2570. CloPantsShortness = 1
  2571. CloExhibit = 0
  2572. elseif ARGS[1] = 412:
  2573. CloQuality = 1
  2574. CloThinness = 2
  2575. CloTopCut = 1
  2576. CloPantsShortness = 1
  2577. CloExhibit = 5
  2578. elseif ARGS[1] = 413:
  2579. CloQuality = 2
  2580. CloThinness = 2
  2581. CloTopCut = 2
  2582. CloPantsShortness = 1
  2583. CloExhibit = 5
  2584. end
  2585. --- $attributes_cheap ---------------------------------