SiteAdvanced.dfm 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762
  1. object SiteAdvancedDialog: TSiteAdvancedDialog
  2. Left = 351
  3. Top = 167
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_login_advanced'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Advanced Site Settings'
  9. ClientHeight = 432
  10. ClientWidth = 561
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 561
  19. 432)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object MainPanel: TPanel
  23. Left = 0
  24. Top = 0
  25. Width = 561
  26. Height = 392
  27. Align = alTop
  28. Anchors = [akLeft, akTop, akRight, akBottom]
  29. BevelOuter = bvNone
  30. TabOrder = 0
  31. object PageControl: TPageControl
  32. Left = 152
  33. Top = 0
  34. Width = 409
  35. Height = 392
  36. HelpType = htKeyword
  37. ActivePage = EnvironmentSheet
  38. Align = alClient
  39. MultiLine = True
  40. Style = tsButtons
  41. TabOrder = 1
  42. TabStop = False
  43. OnChange = PageControlChange
  44. object EnvironmentSheet: TTabSheet
  45. Tag = 1
  46. HelpType = htKeyword
  47. HelpKeyword = 'ui_login_environment'
  48. Caption = 'Environment'
  49. ImageIndex = 6
  50. TabVisible = False
  51. DesignSize = (
  52. 401
  53. 382)
  54. object EnvironmentGroup: TGroupBox
  55. Left = 0
  56. Top = 6
  57. Width = 393
  58. Height = 140
  59. Anchors = [akLeft, akTop, akRight]
  60. Caption = 'Server environment'
  61. TabOrder = 0
  62. DesignSize = (
  63. 393
  64. 140)
  65. object EOLTypeLabel: TLabel
  66. Left = 12
  67. Top = 20
  68. Width = 241
  69. Height = 13
  70. Caption = '&End-of-line characters (if not indicated by server):'
  71. FocusControl = EOLTypeCombo
  72. end
  73. object UtfLabel: TLabel
  74. Left = 12
  75. Top = 44
  76. Width = 144
  77. Height = 13
  78. Caption = '&UTF-8 encoding for filenames:'
  79. FocusControl = UtfCombo
  80. end
  81. object TimeDifferenceLabel: TLabel
  82. Left = 12
  83. Top = 68
  84. Width = 84
  85. Height = 13
  86. Caption = 'Time &zone offset:'
  87. FocusControl = TimeDifferenceEdit
  88. end
  89. object TimeDifferenceHoursLabel: TLabel
  90. Left = 210
  91. Top = 68
  92. Width = 27
  93. Height = 13
  94. Anchors = [akTop, akRight]
  95. Caption = 'hours'
  96. FocusControl = TimeDifferenceEdit
  97. end
  98. object TimeDifferenceMinutesLabel: TLabel
  99. Left = 336
  100. Top = 66
  101. Width = 37
  102. Height = 13
  103. Anchors = [akTop, akRight]
  104. Caption = 'minutes'
  105. FocusControl = TimeDifferenceMinutesEdit
  106. end
  107. object EOLTypeCombo: TComboBox
  108. Left = 320
  109. Top = 15
  110. Width = 61
  111. Height = 21
  112. Style = csDropDownList
  113. Anchors = [akTop, akRight]
  114. TabOrder = 0
  115. Items.Strings = (
  116. 'LF'
  117. 'CR/LF')
  118. end
  119. object UtfCombo: TComboBox
  120. Left = 320
  121. Top = 39
  122. Width = 61
  123. Height = 21
  124. Style = csDropDownList
  125. Anchors = [akTop, akRight]
  126. TabOrder = 1
  127. end
  128. object TimeDifferenceEdit: TUpDownEdit
  129. Left = 135
  130. Top = 63
  131. Width = 69
  132. Height = 21
  133. Alignment = taRightJustify
  134. MaxValue = 25.000000000000000000
  135. MinValue = -25.000000000000000000
  136. Value = -13.000000000000000000
  137. Anchors = [akTop, akRight]
  138. TabOrder = 2
  139. OnChange = DataChange
  140. end
  141. object TimeDifferenceMinutesEdit: TUpDownEdit
  142. Left = 261
  143. Top = 63
  144. Width = 69
  145. Height = 21
  146. Alignment = taRightJustify
  147. Increment = 15.000000000000000000
  148. MaxValue = 45.000000000000000000
  149. MinValue = -45.000000000000000000
  150. Value = -13.000000000000000000
  151. Anchors = [akTop, akRight]
  152. TabOrder = 3
  153. OnChange = DataChange
  154. end
  155. object TimeDifferenceAutoCheck: TCheckBox
  156. Left = 135
  157. Top = 90
  158. Width = 242
  159. Height = 17
  160. Caption = 'Detect &automatically'
  161. TabOrder = 4
  162. OnClick = DataChange
  163. end
  164. object TrimVMSVersionsCheck: TCheckBox
  165. Left = 12
  166. Top = 113
  167. Width = 369
  168. Height = 17
  169. Caption = '&Trim VMS version numbers'
  170. TabOrder = 5
  171. OnClick = DataChange
  172. end
  173. end
  174. object DSTModeGroup: TGroupBox
  175. Left = 0
  176. Top = 153
  177. Width = 393
  178. Height = 93
  179. Anchors = [akLeft, akTop, akRight]
  180. Caption = 'Daylight saving time'
  181. TabOrder = 1
  182. DesignSize = (
  183. 393
  184. 93)
  185. object DSTModeUnixCheck: TRadioButton
  186. Left = 12
  187. Top = 19
  188. Width = 369
  189. Height = 17
  190. Anchors = [akLeft, akTop, akRight]
  191. Caption = 'Adjust remote timestamp to local co&nventions'
  192. TabOrder = 0
  193. OnClick = DataChange
  194. end
  195. object DSTModeWinCheck: TRadioButton
  196. Left = 12
  197. Top = 42
  198. Width = 369
  199. Height = 17
  200. Anchors = [akLeft, akTop, akRight]
  201. Caption = 'Adjust remote timestamp with &DST'
  202. TabOrder = 1
  203. OnClick = DataChange
  204. end
  205. object DSTModeKeepCheck: TRadioButton
  206. Left = 12
  207. Top = 65
  208. Width = 369
  209. Height = 17
  210. Anchors = [akLeft, akTop, akRight]
  211. Caption = 'Preser&ve remote timestamp'
  212. TabOrder = 2
  213. OnClick = DataChange
  214. end
  215. end
  216. end
  217. object DirectoriesSheet: TTabSheet
  218. Tag = 2
  219. HelpType = htKeyword
  220. HelpKeyword = 'ui_login_directories'
  221. Caption = 'Directories'
  222. ImageIndex = 11
  223. TabVisible = False
  224. DesignSize = (
  225. 401
  226. 382)
  227. object DirectoriesGroup: TGroupBox
  228. Left = 0
  229. Top = 6
  230. Width = 393
  231. Height = 183
  232. Anchors = [akLeft, akTop, akRight]
  233. Caption = 'Directories'
  234. TabOrder = 0
  235. DesignSize = (
  236. 393
  237. 183)
  238. object LocalDirectoryLabel: TLabel
  239. Left = 12
  240. Top = 111
  241. Width = 74
  242. Height = 13
  243. Caption = '&Local directory:'
  244. FocusControl = LocalDirectoryEdit
  245. end
  246. object RemoteDirectoryLabel: TLabel
  247. Left = 12
  248. Top = 66
  249. Width = 87
  250. Height = 13
  251. Caption = '&Remote directory:'
  252. FocusControl = RemoteDirectoryEdit
  253. end
  254. object LocalDirectoryDescLabel: TLabel
  255. Left = 12
  256. Top = 156
  257. Width = 241
  258. Height = 13
  259. Caption = 'Local directory is not used with Explorer interface.'
  260. end
  261. object LocalDirectoryEdit: TDirectoryEdit
  262. Left = 12
  263. Top = 128
  264. Width = 371
  265. Height = 21
  266. AcceptFiles = True
  267. DialogText = 'Select startup local directory.'
  268. ClickKey = 16397
  269. Anchors = [akLeft, akTop, akRight]
  270. TabOrder = 3
  271. Text = 'LocalDirectoryEdit'
  272. OnChange = DataChange
  273. end
  274. object RemoteDirectoryEdit: TEdit
  275. Left = 12
  276. Top = 83
  277. Width = 371
  278. Height = 21
  279. Anchors = [akLeft, akTop, akRight]
  280. MaxLength = 1000
  281. TabOrder = 2
  282. Text = 'RemoteDirectoryEdit'
  283. OnChange = DataChange
  284. end
  285. object UpdateDirectoriesCheck: TCheckBox
  286. Left = 12
  287. Top = 42
  288. Width = 369
  289. Height = 17
  290. Anchors = [akLeft, akTop, akRight]
  291. Caption = 'Re&member last used directory'
  292. TabOrder = 1
  293. end
  294. object SynchronizeBrowsingCheck: TCheckBox
  295. Left = 12
  296. Top = 19
  297. Width = 369
  298. Height = 17
  299. Anchors = [akLeft, akTop, akRight]
  300. Caption = 'Syn&chronize browsing'
  301. TabOrder = 0
  302. end
  303. end
  304. object DirectoryOptionsGroup: TGroupBox
  305. Left = 1
  306. Top = 195
  307. Width = 393
  308. Height = 116
  309. Anchors = [akLeft, akTop, akRight]
  310. Caption = 'Directory reading options'
  311. TabOrder = 1
  312. DesignSize = (
  313. 393
  314. 116)
  315. object CacheDirectoriesCheck: TCheckBox
  316. Left = 12
  317. Top = 19
  318. Width = 369
  319. Height = 17
  320. Anchors = [akLeft, akTop, akRight]
  321. Caption = 'Cache &visited remote directories'
  322. TabOrder = 0
  323. OnClick = DataChange
  324. end
  325. object CacheDirectoryChangesCheck: TCheckBox
  326. Left = 12
  327. Top = 42
  328. Width = 230
  329. Height = 17
  330. Anchors = [akLeft, akTop, akRight]
  331. Caption = 'Cache &directory changes'
  332. TabOrder = 1
  333. OnClick = DataChange
  334. end
  335. object ResolveSymlinksCheck: TCheckBox
  336. Left = 12
  337. Top = 65
  338. Width = 369
  339. Height = 17
  340. Anchors = [akLeft, akTop, akRight]
  341. Caption = 'Resolve symbolic li&nks'
  342. TabOrder = 3
  343. end
  344. object PreserveDirectoryChangesCheck: TCheckBox
  345. Left = 251
  346. Top = 42
  347. Width = 139
  348. Height = 17
  349. Anchors = [akTop, akRight]
  350. Caption = '&Permanent cache'
  351. TabOrder = 2
  352. end
  353. object FollowDirectorySymlinksCheck: TCheckBox
  354. Left = 12
  355. Top = 88
  356. Width = 369
  357. Height = 17
  358. Anchors = [akLeft, akTop, akRight]
  359. Caption = '&Follow symbolic links to directories'
  360. TabOrder = 4
  361. end
  362. end
  363. end
  364. object RecycleBinSheet: TTabSheet
  365. Tag = 2
  366. HelpType = htKeyword
  367. HelpKeyword = 'ui_login_recycle_bin'
  368. Caption = 'Recycle bin'
  369. ImageIndex = 15
  370. TabVisible = False
  371. DesignSize = (
  372. 401
  373. 382)
  374. object RecycleBinGroup: TGroupBox
  375. Left = 0
  376. Top = 6
  377. Width = 393
  378. Height = 116
  379. Anchors = [akLeft, akTop, akRight]
  380. Caption = 'Recycle bin'
  381. TabOrder = 0
  382. DesignSize = (
  383. 393
  384. 116)
  385. object RecycleBinPathLabel: TLabel
  386. Left = 12
  387. Top = 66
  388. Width = 95
  389. Height = 13
  390. Caption = '&Remote recycle bin:'
  391. FocusControl = RecycleBinPathEdit
  392. end
  393. object DeleteToRecycleBinCheck: TCheckBox
  394. Left = 12
  395. Top = 19
  396. Width = 370
  397. Height = 17
  398. Anchors = [akLeft, akTop, akRight]
  399. Caption = '&Preserve deleted remote files to recycle bin'
  400. TabOrder = 0
  401. OnClick = DataChange
  402. end
  403. object OverwrittenToRecycleBinCheck: TCheckBox
  404. Left = 12
  405. Top = 42
  406. Width = 370
  407. Height = 17
  408. Anchors = [akLeft, akTop, akRight]
  409. Caption = 'Preserve &overwritten remote files to recycle bin (SFTP only)'
  410. TabOrder = 1
  411. OnClick = DataChange
  412. end
  413. object RecycleBinPathEdit: TEdit
  414. Left = 12
  415. Top = 83
  416. Width = 370
  417. Height = 21
  418. Anchors = [akLeft, akTop, akRight]
  419. MaxLength = 1000
  420. TabOrder = 2
  421. Text = 'RecycleBinPathEdit'
  422. OnChange = DataChange
  423. end
  424. end
  425. end
  426. object EncryptionSheet: TTabSheet
  427. Tag = 2
  428. Caption = 'Encryption'
  429. TabVisible = False
  430. DesignSize = (
  431. 401
  432. 382)
  433. object EncryptFilesCheck: TCheckBox
  434. Left = 12
  435. Top = 8
  436. Width = 382
  437. Height = 17
  438. Anchors = [akLeft, akTop, akRight]
  439. Caption = '&Encrypt files'
  440. TabOrder = 0
  441. OnClick = DataChange
  442. end
  443. object EncryptFilesGroup: TGroupBox
  444. Left = 0
  445. Top = 32
  446. Width = 393
  447. Height = 121
  448. Anchors = [akLeft, akTop, akRight]
  449. Caption = 'Encryption options'
  450. TabOrder = 1
  451. object Label13: TLabel
  452. Left = 12
  453. Top = 18
  454. Width = 75
  455. Height = 13
  456. Caption = 'Encryption &key:'
  457. FocusControl = EncryptKeyPasswordEdit
  458. end
  459. object EncryptKeyVisibleEdit: TEdit
  460. Left = 12
  461. Top = 34
  462. Width = 370
  463. Height = 21
  464. MaxLength = 64
  465. TabOrder = 1
  466. Text = 'EncryptKeyVisibleEdit'
  467. Visible = False
  468. OnChange = DataChange
  469. OnExit = EncryptKeyEditExit
  470. end
  471. object EncryptKeyPasswordEdit: TPasswordEdit
  472. Left = 12
  473. Top = 34
  474. Width = 370
  475. Height = 21
  476. MaxLength = 64
  477. TabOrder = 0
  478. Text = 'EncryptKeyPasswordEdit'
  479. OnChange = DataChange
  480. OnExit = EncryptKeyEditExit
  481. end
  482. object ShowEncryptionKeyCheck: TCheckBox
  483. Left = 12
  484. Top = 61
  485. Width = 97
  486. Height = 17
  487. Caption = '&Show key'
  488. TabOrder = 2
  489. OnClick = ShowEncryptionKeyCheckClick
  490. end
  491. object GenerateKeyButton: TButton
  492. Left = 12
  493. Top = 84
  494. Width = 117
  495. Height = 25
  496. Caption = '&Generate Key'
  497. TabOrder = 3
  498. OnClick = GenerateKeyButtonClick
  499. end
  500. end
  501. end
  502. object SftpSheet: TTabSheet
  503. Tag = 2
  504. HelpType = htKeyword
  505. HelpKeyword = 'ui_login_sftp'
  506. Caption = 'SFTP'
  507. ImageIndex = 12
  508. TabVisible = False
  509. DesignSize = (
  510. 401
  511. 382)
  512. object SFTPBugsGroupBox: TGroupBox
  513. Left = 0
  514. Top = 108
  515. Width = 393
  516. Height = 70
  517. Anchors = [akLeft, akTop, akRight]
  518. Caption = 'Detection of known bugs in SFTP servers'
  519. TabOrder = 1
  520. DesignSize = (
  521. 393
  522. 70)
  523. object Label10: TLabel
  524. Left = 12
  525. Top = 20
  526. Width = 211
  527. Height = 13
  528. Caption = '&Reverses order of link command arguments:'
  529. FocusControl = SFTPBugSymlinkCombo
  530. end
  531. object Label36: TLabel
  532. Left = 12
  533. Top = 44
  534. Width = 205
  535. Height = 13
  536. Caption = '&Misinterprets file timestamps prior to 1970:'
  537. FocusControl = SFTPBugSignedTSCombo
  538. end
  539. object SFTPBugSymlinkCombo: TComboBox
  540. Left = 320
  541. Top = 15
  542. Width = 61
  543. Height = 21
  544. Style = csDropDownList
  545. Anchors = [akTop, akRight]
  546. TabOrder = 0
  547. end
  548. object SFTPBugSignedTSCombo: TComboBox
  549. Left = 320
  550. Top = 39
  551. Width = 61
  552. Height = 21
  553. Style = csDropDownList
  554. Anchors = [akTop, akRight]
  555. TabOrder = 1
  556. end
  557. end
  558. object SFTPProtocolGroup: TGroupBox
  559. Left = 0
  560. Top = 6
  561. Width = 393
  562. Height = 96
  563. Anchors = [akLeft, akTop, akRight]
  564. Caption = 'Protocol options'
  565. TabOrder = 0
  566. DesignSize = (
  567. 393
  568. 96)
  569. object Label34: TLabel
  570. Left = 12
  571. Top = 44
  572. Width = 157
  573. Height = 13
  574. Caption = '&Preferred SFTP protocol version:'
  575. FocusControl = SFTPMaxVersionCombo
  576. end
  577. object Label23: TLabel
  578. Left = 12
  579. Top = 20
  580. Width = 62
  581. Height = 13
  582. Caption = 'SFTP ser&ver:'
  583. FocusControl = SftpServerEdit
  584. end
  585. object SFTPMaxVersionCombo: TComboBox
  586. Left = 320
  587. Top = 39
  588. Width = 61
  589. Height = 21
  590. Style = csDropDownList
  591. Anchors = [akTop, akRight]
  592. TabOrder = 1
  593. Items.Strings = (
  594. '0'
  595. '1'
  596. '2'
  597. '3'
  598. '4'
  599. '5'
  600. '6')
  601. end
  602. object SftpServerEdit: TComboBox
  603. Left = 149
  604. Top = 15
  605. Width = 232
  606. Height = 21
  607. AutoComplete = False
  608. Anchors = [akLeft, akTop, akRight]
  609. MaxLength = 255
  610. TabOrder = 0
  611. Text = 'SftpServerEdit'
  612. Items.Strings = (
  613. 'Default'
  614. '/bin/sftp-server'
  615. 'sudo su -c /bin/sftp-server')
  616. end
  617. object AllowScpFallbackCheck: TCheckBox
  618. Left = 12
  619. Top = 68
  620. Width = 369
  621. Height = 17
  622. Anchors = [akLeft, akTop, akRight]
  623. Caption = 'Allow SCP &fallback'
  624. TabOrder = 2
  625. OnClick = DataChange
  626. end
  627. end
  628. end
  629. object ScpSheet: TTabSheet
  630. Tag = 2
  631. HelpType = htKeyword
  632. HelpKeyword = 'ui_login_scp'
  633. Caption = 'SCP/ShellX'
  634. ImageIndex = 3
  635. TabVisible = False
  636. DesignSize = (
  637. 401
  638. 382)
  639. object OtherShellOptionsGroup: TGroupBox
  640. Left = 0
  641. Top = 161
  642. Width = 393
  643. Height = 69
  644. Anchors = [akLeft, akTop, akRight]
  645. Caption = 'Other options'
  646. TabOrder = 2
  647. DesignSize = (
  648. 393
  649. 69)
  650. object LookupUserGroupsCheck: TCheckBox
  651. Left = 12
  652. Top = 19
  653. Width = 140
  654. Height = 17
  655. AllowGrayed = True
  656. Caption = 'Lookup &user groups'
  657. TabOrder = 0
  658. OnClick = DataChange
  659. end
  660. object ClearAliasesCheck: TCheckBox
  661. Left = 12
  662. Top = 42
  663. Width = 140
  664. Height = 17
  665. Caption = 'Clear a&liases'
  666. TabOrder = 2
  667. OnClick = DataChange
  668. end
  669. object UnsetNationalVarsCheck: TCheckBox
  670. Left = 168
  671. Top = 19
  672. Width = 213
  673. Height = 17
  674. Anchors = [akLeft, akTop, akRight]
  675. Caption = 'Clear &national variables'
  676. TabOrder = 1
  677. OnClick = DataChange
  678. end
  679. object Scp1CompatibilityCheck: TCheckBox
  680. Left = 168
  681. Top = 42
  682. Width = 213
  683. Height = 17
  684. Anchors = [akLeft, akTop, akRight]
  685. Caption = 'Use scp&2 with scp1 compatibility'
  686. TabOrder = 3
  687. OnClick = DataChange
  688. end
  689. end
  690. object ShellGroup: TGroupBox
  691. Left = 0
  692. Top = 6
  693. Width = 393
  694. Height = 70
  695. Anchors = [akLeft, akTop, akRight]
  696. Caption = 'Shell'
  697. TabOrder = 0
  698. DesignSize = (
  699. 393
  700. 70)
  701. object Label19: TLabel
  702. Left = 12
  703. Top = 20
  704. Width = 26
  705. Height = 13
  706. Caption = 'S&hell:'
  707. FocusControl = ShellEdit
  708. end
  709. object Label20: TLabel
  710. Left = 12
  711. Top = 44
  712. Width = 104
  713. Height = 13
  714. Caption = '&Return code variable:'
  715. FocusControl = ReturnVarEdit
  716. end
  717. object ShellEdit: TComboBox
  718. Left = 168
  719. Top = 15
  720. Width = 213
  721. Height = 21
  722. AutoComplete = False
  723. Anchors = [akLeft, akTop, akRight]
  724. MaxLength = 50
  725. TabOrder = 0
  726. Text = 'ShellEdit'
  727. Items.Strings = (
  728. 'Default'
  729. '/bin/bash'
  730. '/bin/ksh'
  731. 'sudo su -')
  732. end
  733. object ReturnVarEdit: TComboBox
  734. Left = 168
  735. Top = 39
  736. Width = 213
  737. Height = 21
  738. AutoComplete = False
  739. Anchors = [akLeft, akTop, akRight]
  740. MaxLength = 50
  741. TabOrder = 1
  742. Text = 'ReturnVarEdit'
  743. Items.Strings = (
  744. 'Autodetect'
  745. '?'
  746. 'status')
  747. end
  748. end
  749. object ScpLsOptionsGroup: TGroupBox
  750. Left = 0
  751. Top = 84
  752. Width = 393
  753. Height = 69
  754. Anchors = [akLeft, akTop, akRight]
  755. Caption = 'Directory listing'
  756. TabOrder = 1
  757. DesignSize = (
  758. 393
  759. 69)
  760. object Label9: TLabel
  761. Left = 12
  762. Top = 20
  763. Width = 82
  764. Height = 13
  765. Caption = 'Listing &command:'
  766. FocusControl = ListingCommandEdit
  767. end
  768. object IgnoreLsWarningsCheck: TCheckBox
  769. Left = 12
  770. Top = 42
  771. Width = 140
  772. Height = 17
  773. Caption = 'Ignore LS &warnings'
  774. TabOrder = 1
  775. OnClick = DataChange
  776. end
  777. object SCPLsFullTimeAutoCheck: TCheckBox
  778. Left = 168
  779. Top = 42
  780. Width = 217
  781. Height = 17
  782. Anchors = [akLeft, akTop, akRight]
  783. Caption = 'Try to get &full timestamp'
  784. TabOrder = 2
  785. OnClick = DataChange
  786. end
  787. object ListingCommandEdit: TComboBox
  788. Left = 168
  789. Top = 15
  790. Width = 213
  791. Height = 21
  792. AutoComplete = False
  793. Anchors = [akLeft, akTop, akRight]
  794. MaxLength = 50
  795. TabOrder = 0
  796. Text = 'ListingCommandEdit'
  797. Items.Strings = (
  798. 'ls -la'
  799. 'ls -gla')
  800. end
  801. end
  802. end
  803. object FtpSheet: TTabSheet
  804. Tag = 2
  805. HelpType = htKeyword
  806. HelpKeyword = 'ui_login_ftp'
  807. Caption = 'FTP'
  808. ImageIndex = 16
  809. TabVisible = False
  810. DesignSize = (
  811. 401
  812. 382)
  813. object FtpGroup: TGroupBox
  814. Left = 0
  815. Top = 6
  816. Width = 393
  817. Height = 224
  818. Anchors = [akLeft, akTop, akRight]
  819. Caption = 'Protocol options'
  820. TabOrder = 0
  821. DesignSize = (
  822. 393
  823. 224)
  824. object Label25: TLabel
  825. Left = 12
  826. Top = 42
  827. Width = 103
  828. Height = 13
  829. Caption = 'Post login &commands:'
  830. FocusControl = PostLoginCommandsMemo
  831. end
  832. object FtpListAllLabel: TLabel
  833. Left = 12
  834. Top = 148
  835. Width = 159
  836. Height = 13
  837. Caption = '&Support for listing of hidden files:'
  838. FocusControl = FtpListAllCombo
  839. end
  840. object Label24: TLabel
  841. Left = 12
  842. Top = 124
  843. Width = 188
  844. Height = 13
  845. Caption = 'Use &MLSD command for directory listing'
  846. FocusControl = FtpUseMlsdCombo
  847. end
  848. object FtpForcePasvIpLabel: TLabel
  849. Left = 12
  850. Top = 172
  851. Width = 230
  852. Height = 13
  853. Caption = '&Force IP address for passive mode connections:'
  854. FocusControl = FtpForcePasvIpCombo
  855. end
  856. object FtpAccountLabel: TLabel
  857. Left = 12
  858. Top = 20
  859. Width = 43
  860. Height = 13
  861. Caption = '&Account:'
  862. FocusControl = FtpAccountEdit
  863. end
  864. object Label3: TLabel
  865. Left = 12
  866. Top = 196
  867. Width = 232
  868. Height = 13
  869. Caption = 'Use &HOST command to select host on the server'
  870. FocusControl = FtpHostCombo
  871. end
  872. object PostLoginCommandsMemo: TMemo
  873. Left = 12
  874. Top = 59
  875. Width = 369
  876. Height = 53
  877. Anchors = [akLeft, akTop, akRight]
  878. ScrollBars = ssVertical
  879. TabOrder = 1
  880. end
  881. object FtpListAllCombo: TComboBox
  882. Left = 320
  883. Top = 143
  884. Width = 61
  885. Height = 21
  886. Style = csDropDownList
  887. Anchors = [akTop, akRight]
  888. TabOrder = 3
  889. OnChange = DataChange
  890. end
  891. object FtpForcePasvIpCombo: TComboBox
  892. Left = 320
  893. Top = 167
  894. Width = 61
  895. Height = 21
  896. Style = csDropDownList
  897. Anchors = [akTop, akRight]
  898. TabOrder = 4
  899. OnChange = DataChange
  900. end
  901. object FtpUseMlsdCombo: TComboBox
  902. Left = 320
  903. Top = 119
  904. Width = 61
  905. Height = 21
  906. Style = csDropDownList
  907. Anchors = [akTop, akRight]
  908. TabOrder = 2
  909. OnChange = DataChange
  910. end
  911. object FtpAccountEdit: TEdit
  912. Left = 128
  913. Top = 15
  914. Width = 253
  915. Height = 21
  916. Anchors = [akLeft, akTop, akRight]
  917. MaxLength = 100
  918. TabOrder = 0
  919. Text = 'FtpAccountEdit'
  920. OnChange = DataChange
  921. end
  922. object FtpHostCombo: TComboBox
  923. Left = 320
  924. Top = 191
  925. Width = 61
  926. Height = 21
  927. Style = csDropDownList
  928. Anchors = [akTop, akRight]
  929. TabOrder = 5
  930. OnChange = DataChange
  931. end
  932. end
  933. end
  934. object ConnSheet: TTabSheet
  935. Tag = 1
  936. HelpType = htKeyword
  937. HelpKeyword = 'ui_login_connection'
  938. Caption = 'Connection'
  939. ImageIndex = 7
  940. TabVisible = False
  941. DesignSize = (
  942. 401
  943. 382)
  944. object FtpPingGroup: TGroupBox
  945. Left = 0
  946. Top = 132
  947. Width = 393
  948. Height = 117
  949. Anchors = [akLeft, akTop, akRight]
  950. Caption = 'Keepalives'
  951. TabOrder = 3
  952. DesignSize = (
  953. 393
  954. 117)
  955. object FtpPingIntervalLabel: TLabel
  956. Left = 12
  957. Top = 90
  958. Width = 142
  959. Height = 13
  960. Caption = 'Seconds &between keepalives:'
  961. FocusControl = FtpPingIntervalSecEdit
  962. end
  963. object FtpPingIntervalSecEdit: TUpDownEdit
  964. Left = 208
  965. Top = 85
  966. Width = 73
  967. Height = 21
  968. Alignment = taRightJustify
  969. MaxValue = 3600.000000000000000000
  970. MinValue = 1.000000000000000000
  971. Value = 1.000000000000000000
  972. MaxLength = 4
  973. TabOrder = 3
  974. OnChange = DataChange
  975. end
  976. object FtpPingOffButton: TRadioButton
  977. Left = 12
  978. Top = 19
  979. Width = 365
  980. Height = 17
  981. Anchors = [akLeft, akTop, akRight]
  982. Caption = '&Off'
  983. TabOrder = 0
  984. OnClick = DataChange
  985. end
  986. object FtpPingNullPacketButton: TRadioButton
  987. Left = 12
  988. Top = 42
  989. Width = 365
  990. Height = 17
  991. Anchors = [akLeft, akTop, akRight]
  992. Caption = 'Sending of &null SSH packets'
  993. Enabled = False
  994. TabOrder = 1
  995. OnClick = DataChange
  996. end
  997. object FtpPingDummyCommandButton: TRadioButton
  998. Left = 12
  999. Top = 65
  1000. Width = 365
  1001. Height = 17
  1002. Anchors = [akLeft, akTop, akRight]
  1003. Caption = 'Executing &dummy protocol commands'
  1004. TabOrder = 2
  1005. OnClick = DataChange
  1006. end
  1007. end
  1008. object TimeoutGroup: TGroupBox
  1009. Left = 0
  1010. Top = 80
  1011. Width = 393
  1012. Height = 46
  1013. Anchors = [akLeft, akTop, akRight]
  1014. Caption = 'Timeouts'
  1015. TabOrder = 1
  1016. DesignSize = (
  1017. 393
  1018. 46)
  1019. object Label11: TLabel
  1020. Left = 12
  1021. Top = 19
  1022. Width = 122
  1023. Height = 13
  1024. Caption = 'Server &response timeout:'
  1025. FocusControl = TimeoutEdit
  1026. end
  1027. object Label12: TLabel
  1028. Left = 334
  1029. Top = 19
  1030. Width = 39
  1031. Height = 13
  1032. Anchors = [akTop, akRight]
  1033. Caption = 'seconds'
  1034. FocusControl = TimeoutEdit
  1035. end
  1036. object TimeoutEdit: TUpDownEdit
  1037. Left = 256
  1038. Top = 14
  1039. Width = 73
  1040. Height = 21
  1041. Alignment = taRightJustify
  1042. Increment = 5.000000000000000000
  1043. MaxValue = 6000.000000000000000000
  1044. MinValue = 5.000000000000000000
  1045. Value = 5.000000000000000000
  1046. Anchors = [akTop, akRight]
  1047. MaxLength = 4
  1048. TabOrder = 0
  1049. OnChange = DataChange
  1050. end
  1051. end
  1052. object PingGroup: TGroupBox
  1053. Left = 0
  1054. Top = 132
  1055. Width = 393
  1056. Height = 117
  1057. Anchors = [akLeft, akTop, akRight]
  1058. Caption = 'Keepalives'
  1059. TabOrder = 2
  1060. DesignSize = (
  1061. 393
  1062. 117)
  1063. object PingIntervalLabel: TLabel
  1064. Left = 12
  1065. Top = 90
  1066. Width = 142
  1067. Height = 13
  1068. Caption = 'Seconds &between keepalives:'
  1069. FocusControl = PingIntervalSecEdit
  1070. end
  1071. object PingIntervalSecEdit: TUpDownEdit
  1072. Left = 256
  1073. Top = 85
  1074. Width = 73
  1075. Height = 21
  1076. Alignment = taRightJustify
  1077. MaxValue = 3600.000000000000000000
  1078. MinValue = 1.000000000000000000
  1079. Value = 1.000000000000000000
  1080. Anchors = [akTop, akRight]
  1081. MaxLength = 4
  1082. TabOrder = 3
  1083. OnChange = DataChange
  1084. end
  1085. object PingOffButton: TRadioButton
  1086. Left = 12
  1087. Top = 19
  1088. Width = 365
  1089. Height = 17
  1090. Anchors = [akLeft, akTop, akRight]
  1091. Caption = '&Off'
  1092. TabOrder = 0
  1093. OnClick = DataChange
  1094. end
  1095. object PingNullPacketButton: TRadioButton
  1096. Left = 12
  1097. Top = 42
  1098. Width = 365
  1099. Height = 17
  1100. Anchors = [akLeft, akTop, akRight]
  1101. Caption = 'Sending of &null SSH packets'
  1102. TabOrder = 1
  1103. OnClick = DataChange
  1104. end
  1105. object PingDummyCommandButton: TRadioButton
  1106. Left = 12
  1107. Top = 65
  1108. Width = 365
  1109. Height = 17
  1110. Anchors = [akLeft, akTop, akRight]
  1111. Caption = 'Executing &dummy protocol commands'
  1112. TabOrder = 2
  1113. OnClick = DataChange
  1114. end
  1115. end
  1116. object IPvGroup: TGroupBox
  1117. Left = 0
  1118. Top = 255
  1119. Width = 393
  1120. Height = 46
  1121. Anchors = [akLeft, akTop, akRight]
  1122. Caption = 'Internet protocol version'
  1123. TabOrder = 4
  1124. object IPAutoButton: TRadioButton
  1125. Left = 12
  1126. Top = 19
  1127. Width = 101
  1128. Height = 17
  1129. Caption = 'A&uto'
  1130. TabOrder = 0
  1131. OnClick = DataChange
  1132. end
  1133. object IPv4Button: TRadioButton
  1134. Left = 124
  1135. Top = 19
  1136. Width = 101
  1137. Height = 17
  1138. Caption = 'IPv&4'
  1139. TabOrder = 1
  1140. OnClick = DataChange
  1141. end
  1142. object IPv6Button: TRadioButton
  1143. Left = 236
  1144. Top = 19
  1145. Width = 101
  1146. Height = 17
  1147. Caption = 'IPv&6'
  1148. TabOrder = 2
  1149. OnClick = DataChange
  1150. end
  1151. end
  1152. object ConnectionGroup: TGroupBox
  1153. Left = 0
  1154. Top = 6
  1155. Width = 393
  1156. Height = 69
  1157. Anchors = [akLeft, akTop, akRight]
  1158. Caption = 'Connection'
  1159. TabOrder = 0
  1160. DesignSize = (
  1161. 393
  1162. 69)
  1163. object FtpPasvModeCheck: TCheckBox
  1164. Left = 12
  1165. Top = 19
  1166. Width = 369
  1167. Height = 17
  1168. Anchors = [akLeft, akTop, akRight]
  1169. Caption = '&Passive mode'
  1170. TabOrder = 0
  1171. OnClick = DataChange
  1172. end
  1173. object BufferSizeCheck: TCheckBox
  1174. Left = 12
  1175. Top = 42
  1176. Width = 369
  1177. Height = 17
  1178. Anchors = [akLeft, akTop, akRight]
  1179. Caption = 'Optimize connection &buffer size'
  1180. TabOrder = 1
  1181. OnClick = DataChange
  1182. end
  1183. end
  1184. end
  1185. object ProxySheet: TTabSheet
  1186. Tag = 2
  1187. HelpType = htKeyword
  1188. HelpKeyword = 'ui_login_proxy'
  1189. Caption = 'Proxy'
  1190. ImageIndex = 8
  1191. TabVisible = False
  1192. DesignSize = (
  1193. 401
  1194. 382)
  1195. object ProxyTypeGroup: TGroupBox
  1196. Left = 0
  1197. Top = 6
  1198. Width = 393
  1199. Height = 164
  1200. Anchors = [akLeft, akTop, akRight]
  1201. Caption = 'Proxy'
  1202. TabOrder = 0
  1203. DesignSize = (
  1204. 393
  1205. 164)
  1206. object ProxyMethodLabel: TLabel
  1207. Left = 12
  1208. Top = 20
  1209. Width = 57
  1210. Height = 13
  1211. Caption = 'Proxy &type:'
  1212. FocusControl = SshProxyMethodCombo
  1213. end
  1214. object ProxyHostLabel: TLabel
  1215. Left = 12
  1216. Top = 41
  1217. Width = 85
  1218. Height = 13
  1219. Caption = 'Pro&xy host name:'
  1220. FocusControl = ProxyHostEdit
  1221. end
  1222. object ProxyPortLabel: TLabel
  1223. Left = 284
  1224. Top = 41
  1225. Width = 63
  1226. Height = 13
  1227. Anchors = [akTop, akRight]
  1228. Caption = 'Po&rt number:'
  1229. FocusControl = ProxyPortEdit
  1230. end
  1231. object ProxyUsernameLabel: TLabel
  1232. Left = 12
  1233. Top = 85
  1234. Width = 55
  1235. Height = 13
  1236. Caption = '&User name:'
  1237. FocusControl = ProxyUsernameEdit
  1238. end
  1239. object ProxyPasswordLabel: TLabel
  1240. Left = 200
  1241. Top = 85
  1242. Width = 50
  1243. Height = 13
  1244. Caption = '&Password:'
  1245. FocusControl = ProxyPasswordEdit
  1246. end
  1247. object SshProxyMethodCombo: TComboBox
  1248. Left = 128
  1249. Top = 15
  1250. Width = 110
  1251. Height = 21
  1252. Style = csDropDownList
  1253. TabOrder = 0
  1254. OnChange = DataChange
  1255. Items.Strings = (
  1256. 'None'
  1257. 'SOCKS4'
  1258. 'SOCKS5'
  1259. 'HTTP'
  1260. 'Telnet'
  1261. 'Local')
  1262. end
  1263. object ProxyPortEdit: TUpDownEdit
  1264. Left = 284
  1265. Top = 58
  1266. Width = 98
  1267. Height = 21
  1268. Alignment = taRightJustify
  1269. MaxValue = 65535.000000000000000000
  1270. MinValue = 1.000000000000000000
  1271. Value = 1.000000000000000000
  1272. Anchors = [akTop, akRight]
  1273. TabOrder = 4
  1274. OnChange = DataChange
  1275. end
  1276. object ProxyHostEdit: TEdit
  1277. Left = 12
  1278. Top = 58
  1279. Width = 266
  1280. Height = 21
  1281. Anchors = [akLeft, akTop, akRight]
  1282. MaxLength = 255
  1283. TabOrder = 3
  1284. Text = 'ProxyHostEdit'
  1285. OnChange = DataChange
  1286. end
  1287. object ProxyUsernameEdit: TEdit
  1288. Left = 12
  1289. Top = 102
  1290. Width = 182
  1291. Height = 21
  1292. MaxLength = 50
  1293. TabOrder = 5
  1294. Text = 'ProxyUsernameEdit'
  1295. OnChange = DataChange
  1296. end
  1297. object ProxyPasswordEdit: TPasswordEdit
  1298. Left = 200
  1299. Top = 102
  1300. Width = 182
  1301. Height = 21
  1302. Anchors = [akLeft, akTop, akRight]
  1303. MaxLength = 50
  1304. TabOrder = 6
  1305. Text = 'ProxyPasswordEdit'
  1306. OnChange = DataChange
  1307. end
  1308. object FtpProxyMethodCombo: TComboBox
  1309. Left = 128
  1310. Top = 15
  1311. Width = 254
  1312. Height = 21
  1313. Style = csDropDownList
  1314. Anchors = [akLeft, akTop, akRight]
  1315. DropDownCount = 12
  1316. TabOrder = 1
  1317. OnChange = DataChange
  1318. Items.Strings = (
  1319. 'None'
  1320. 'SOCKS4'
  1321. 'SOCKS5'
  1322. 'HTTP'
  1323. 'SITE %host'
  1324. 'USER %proxyuser, USER %user@%host'
  1325. 'OPEN %host'
  1326. 'USER %proxyuser, USER %user'
  1327. 'USER %user@%host'
  1328. 'USER %proxyuser@%host'
  1329. 'USER %user@%host %proxyuser'
  1330. 'USER %user@%proxyuser@%host')
  1331. end
  1332. object NeonProxyMethodCombo: TComboBox
  1333. Left = 128
  1334. Top = 15
  1335. Width = 110
  1336. Height = 21
  1337. Style = csDropDownList
  1338. TabOrder = 2
  1339. OnChange = DataChange
  1340. Items.Strings = (
  1341. 'None'
  1342. 'SOCKS4'
  1343. 'SOCKS5'
  1344. 'HTTP')
  1345. end
  1346. object ProxyAutodetectButton: TButton
  1347. Left = 12
  1348. Top = 129
  1349. Width = 100
  1350. Height = 25
  1351. Caption = '&Autodetect'
  1352. TabOrder = 7
  1353. OnClick = ProxyAutodetectButtonClick
  1354. end
  1355. end
  1356. object ProxySettingsGroup: TGroupBox
  1357. Left = 0
  1358. Top = 176
  1359. Width = 393
  1360. Height = 128
  1361. Anchors = [akLeft, akTop, akRight]
  1362. Caption = 'Proxy settings'
  1363. TabOrder = 1
  1364. DesignSize = (
  1365. 393
  1366. 128)
  1367. object ProxyTelnetCommandLabel: TLabel
  1368. Left = 12
  1369. Top = 18
  1370. Width = 82
  1371. Height = 13
  1372. Caption = 'Telnet co&mmand:'
  1373. FocusControl = ProxyTelnetCommandEdit
  1374. end
  1375. object Label17: TLabel
  1376. Left = 12
  1377. Top = 99
  1378. Width = 168
  1379. Height = 13
  1380. Caption = 'Do &DNS name lookup at proxy end:'
  1381. end
  1382. object ProxyLocalCommandLabel: TLabel
  1383. Left = 12
  1384. Top = 18
  1385. Width = 107
  1386. Height = 13
  1387. Caption = 'Local proxy co&mmand:'
  1388. FocusControl = ProxyLocalCommandEdit
  1389. end
  1390. object ProxyTelnetCommandEdit: TEdit
  1391. Left = 12
  1392. Top = 35
  1393. Width = 370
  1394. Height = 21
  1395. Anchors = [akLeft, akTop, akRight]
  1396. MaxLength = 255
  1397. TabOrder = 0
  1398. Text = 'ProxyTelnetCommandEdit'
  1399. OnChange = DataChange
  1400. end
  1401. object ProxyLocalhostCheck: TCheckBox
  1402. Left = 12
  1403. Top = 77
  1404. Width = 370
  1405. Height = 17
  1406. Anchors = [akLeft, akTop, akRight]
  1407. Caption = 'Co&nsider proxying local host connections'
  1408. TabOrder = 5
  1409. end
  1410. object ProxyDNSCombo: TComboBox
  1411. Left = 252
  1412. Top = 94
  1413. Width = 130
  1414. Height = 21
  1415. Style = csDropDownList
  1416. Anchors = [akLeft, akTop, akRight]
  1417. TabOrder = 6
  1418. Items.Strings = (
  1419. 'Auto'
  1420. 'No'
  1421. 'Yes')
  1422. end
  1423. object ProxyLocalCommandEdit: TEdit
  1424. Left = 12
  1425. Top = 35
  1426. Width = 274
  1427. Height = 21
  1428. Anchors = [akLeft, akTop, akRight]
  1429. TabOrder = 2
  1430. Text = 'ProxyLocalCommandEdit'
  1431. OnChange = DataChange
  1432. end
  1433. object ProxyLocalCommandBrowseButton: TButton
  1434. Left = 300
  1435. Top = 33
  1436. Width = 82
  1437. Height = 25
  1438. Anchors = [akTop, akRight]
  1439. Caption = '&Browse...'
  1440. TabOrder = 3
  1441. OnClick = ProxyLocalCommandBrowseButtonClick
  1442. end
  1443. object ProxyTelnetCommandHintText: TStaticText
  1444. Left = 303
  1445. Top = 58
  1446. Width = 79
  1447. Height = 16
  1448. Alignment = taRightJustify
  1449. Anchors = [akTop, akRight]
  1450. AutoSize = False
  1451. Caption = 'patterns'
  1452. TabOrder = 1
  1453. TabStop = True
  1454. end
  1455. object ProxyLocalCommandHintText: TStaticText
  1456. Left = 207
  1457. Top = 58
  1458. Width = 79
  1459. Height = 16
  1460. Alignment = taRightJustify
  1461. Anchors = [akTop, akRight]
  1462. AutoSize = False
  1463. Caption = 'patterns'
  1464. TabOrder = 4
  1465. TabStop = True
  1466. end
  1467. end
  1468. end
  1469. object TunnelSheet: TTabSheet
  1470. Tag = 2
  1471. HelpType = htKeyword
  1472. HelpKeyword = 'ui_login_tunnel'
  1473. Caption = 'Tunnel'
  1474. ImageIndex = 14
  1475. TabVisible = False
  1476. DesignSize = (
  1477. 401
  1478. 382)
  1479. object TunnelSessionGroup: TGroupBox
  1480. Left = 0
  1481. Top = 32
  1482. Width = 393
  1483. Height = 118
  1484. Anchors = [akLeft, akTop, akRight]
  1485. Caption = 'Host to setup tunnel on'
  1486. TabOrder = 1
  1487. DesignSize = (
  1488. 393
  1489. 118)
  1490. object Label6: TLabel
  1491. Left = 12
  1492. Top = 18
  1493. Width = 55
  1494. Height = 13
  1495. Caption = '&Host name:'
  1496. FocusControl = TunnelHostNameEdit
  1497. end
  1498. object Label14: TLabel
  1499. Left = 284
  1500. Top = 18
  1501. Width = 63
  1502. Height = 13
  1503. Anchors = [akTop, akRight]
  1504. Caption = 'Po&rt number:'
  1505. FocusControl = TunnelPortNumberEdit
  1506. end
  1507. object Label15: TLabel
  1508. Left = 12
  1509. Top = 68
  1510. Width = 55
  1511. Height = 13
  1512. Caption = '&User name:'
  1513. FocusControl = TunnelUserNameEdit
  1514. end
  1515. object Label16: TLabel
  1516. Left = 200
  1517. Top = 68
  1518. Width = 50
  1519. Height = 13
  1520. Caption = '&Password:'
  1521. FocusControl = TunnelPasswordEdit
  1522. end
  1523. object TunnelHostNameEdit: TEdit
  1524. Left = 12
  1525. Top = 35
  1526. Width = 266
  1527. Height = 21
  1528. Anchors = [akLeft, akTop, akRight]
  1529. MaxLength = 255
  1530. TabOrder = 0
  1531. Text = 'TunnelHostNameEdit'
  1532. OnChange = DataChange
  1533. end
  1534. object TunnelUserNameEdit: TEdit
  1535. Left = 12
  1536. Top = 85
  1537. Width = 182
  1538. Height = 21
  1539. MaxLength = 50
  1540. TabOrder = 2
  1541. Text = 'TunnelUserNameEdit'
  1542. OnChange = DataChange
  1543. end
  1544. object TunnelPasswordEdit: TPasswordEdit
  1545. Left = 200
  1546. Top = 85
  1547. Width = 182
  1548. Height = 21
  1549. Anchors = [akLeft, akTop, akRight]
  1550. MaxLength = 50
  1551. TabOrder = 3
  1552. Text = 'TunnelPasswordEdit'
  1553. OnChange = DataChange
  1554. end
  1555. object TunnelPortNumberEdit: TUpDownEdit
  1556. Left = 284
  1557. Top = 35
  1558. Width = 98
  1559. Height = 21
  1560. Alignment = taRightJustify
  1561. MaxValue = 65535.000000000000000000
  1562. MinValue = 1.000000000000000000
  1563. Value = 1.000000000000000000
  1564. Anchors = [akTop, akRight]
  1565. TabOrder = 1
  1566. OnChange = DataChange
  1567. end
  1568. end
  1569. object TunnelCheck: TCheckBox
  1570. Left = 12
  1571. Top = 8
  1572. Width = 382
  1573. Height = 17
  1574. Anchors = [akLeft, akTop, akRight]
  1575. Caption = '&Connect through SSH tunnel'
  1576. TabOrder = 0
  1577. OnClick = DataChange
  1578. end
  1579. object TunnelOptionsGroup: TGroupBox
  1580. Left = 0
  1581. Top = 156
  1582. Width = 393
  1583. Height = 47
  1584. Anchors = [akLeft, akTop, akRight]
  1585. Caption = 'Tunnel options'
  1586. TabOrder = 2
  1587. DesignSize = (
  1588. 393
  1589. 47)
  1590. object Label21: TLabel
  1591. Left = 12
  1592. Top = 20
  1593. Width = 84
  1594. Height = 13
  1595. Caption = '&Local tunnel port:'
  1596. FocusControl = TunnelLocalPortNumberEdit
  1597. end
  1598. object TunnelLocalPortNumberEdit: TComboBox
  1599. Left = 284
  1600. Top = 15
  1601. Width = 98
  1602. Height = 21
  1603. AutoComplete = False
  1604. Anchors = [akTop, akRight]
  1605. MaxLength = 50
  1606. TabOrder = 0
  1607. Text = 'TunnelLocalPortNumberEdit'
  1608. OnChange = DataChange
  1609. Items.Strings = (
  1610. 'Autoselect')
  1611. end
  1612. end
  1613. object TunnelAuthenticationParamsGroup: TGroupBox
  1614. Left = 0
  1615. Top = 209
  1616. Width = 393
  1617. Height = 68
  1618. Anchors = [akLeft, akTop, akRight]
  1619. Caption = 'Tunnel authentication parameters'
  1620. TabOrder = 3
  1621. DesignSize = (
  1622. 393
  1623. 68)
  1624. object Label18: TLabel
  1625. Left = 12
  1626. Top = 18
  1627. Width = 75
  1628. Height = 13
  1629. Caption = 'Private &key file:'
  1630. FocusControl = TunnelPrivateKeyEdit3
  1631. end
  1632. object TunnelPrivateKeyEdit3: TFilenameEdit
  1633. Left = 12
  1634. Top = 35
  1635. Width = 370
  1636. Height = 21
  1637. AcceptFiles = True
  1638. OnBeforeDialog = PathEditBeforeDialog
  1639. OnAfterDialog = PrivateKeyEdit3AfterDialog
  1640. Filter =
  1641. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  1642. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  1643. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  1644. DialogTitle = 'Select private key file'
  1645. ClickKey = 16397
  1646. Anchors = [akLeft, akTop, akRight]
  1647. TabOrder = 0
  1648. Text = 'TunnelPrivateKeyEdit3'
  1649. OnChange = DataChange
  1650. end
  1651. end
  1652. end
  1653. object SslSheet: TTabSheet
  1654. Tag = 2
  1655. HelpType = htKeyword
  1656. HelpKeyword = 'ui_login_tls'
  1657. Caption = 'TLS/SSL'
  1658. ImageIndex = 13
  1659. TabVisible = False
  1660. DesignSize = (
  1661. 401
  1662. 382)
  1663. object SslGroup: TGroupBox
  1664. Left = 0
  1665. Top = 6
  1666. Width = 393
  1667. Height = 99
  1668. Anchors = [akLeft, akTop, akRight]
  1669. Caption = 'TLS/SSL options'
  1670. TabOrder = 0
  1671. DesignSize = (
  1672. 393
  1673. 99)
  1674. object Label1: TLabel
  1675. Left = 12
  1676. Top = 20
  1677. Width = 123
  1678. Height = 13
  1679. Caption = 'Mi&nimum TLS/SSL version:'
  1680. FocusControl = MinTlsVersionCombo
  1681. end
  1682. object Label2: TLabel
  1683. Left = 12
  1684. Top = 44
  1685. Width = 127
  1686. Height = 13
  1687. Caption = 'Ma&ximum TLS/SSL version:'
  1688. FocusControl = MaxTlsVersionCombo
  1689. end
  1690. object MinTlsVersionCombo: TComboBox
  1691. Left = 304
  1692. Top = 15
  1693. Width = 77
  1694. Height = 21
  1695. Style = csDropDownList
  1696. Anchors = [akTop, akRight]
  1697. TabOrder = 0
  1698. OnChange = MinTlsVersionComboChange
  1699. Items.Strings = (
  1700. 'SSL 3.0'
  1701. 'TLS 1.0'
  1702. 'TLS 1.1'
  1703. 'TLS 1.2')
  1704. end
  1705. object MaxTlsVersionCombo: TComboBox
  1706. Left = 304
  1707. Top = 39
  1708. Width = 77
  1709. Height = 21
  1710. Style = csDropDownList
  1711. Anchors = [akTop, akRight]
  1712. TabOrder = 1
  1713. OnChange = MaxTlsVersionComboChange
  1714. Items.Strings = (
  1715. 'SSL 3.0'
  1716. 'TLS 1.0'
  1717. 'TLS 1.1'
  1718. 'TLS 1.2')
  1719. end
  1720. object SslSessionReuseCheck: TCheckBox
  1721. Left = 12
  1722. Top = 68
  1723. Width = 365
  1724. Height = 17
  1725. Anchors = [akLeft, akTop, akRight]
  1726. Caption = '&Reuse TLS/SSL session ID for data connections'
  1727. TabOrder = 2
  1728. OnClick = DataChange
  1729. end
  1730. end
  1731. object TlsAuthenticationGroup: TGroupBox
  1732. Left = 0
  1733. Top = 113
  1734. Width = 393
  1735. Height = 72
  1736. Anchors = [akLeft, akTop, akRight]
  1737. Caption = 'Authentication parameters'
  1738. TabOrder = 1
  1739. DesignSize = (
  1740. 393
  1741. 72)
  1742. object Label4: TLabel
  1743. Left = 12
  1744. Top = 20
  1745. Width = 99
  1746. Height = 13
  1747. Caption = '&Client certificate file:'
  1748. FocusControl = TlsCertificateFileEdit
  1749. end
  1750. object TlsCertificateFileEdit: TFilenameEdit
  1751. Left = 12
  1752. Top = 37
  1753. Width = 372
  1754. Height = 21
  1755. AcceptFiles = True
  1756. OnBeforeDialog = PathEditBeforeDialog
  1757. OnAfterDialog = TlsCertificateFileEditAfterDialog
  1758. Filter =
  1759. 'Certificates and private key files (*.pfx;*.p12;*.key;*.pem)|*.p' +
  1760. 'fx;*.p12;*.key;*.pem|All Files (*.*)|*.*'
  1761. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  1762. DialogTitle = 'Select client certificate file'
  1763. ClickKey = 16397
  1764. Anchors = [akLeft, akTop, akRight]
  1765. TabOrder = 0
  1766. Text = 'TlsCertificateFileEdit'
  1767. OnChange = DataChange
  1768. end
  1769. end
  1770. end
  1771. object AdvancedSheet: TTabSheet
  1772. Tag = 1
  1773. HelpType = htKeyword
  1774. HelpKeyword = 'ui_login_ssh'
  1775. Caption = 'SSH'
  1776. ImageIndex = 2
  1777. TabVisible = False
  1778. DesignSize = (
  1779. 401
  1780. 382)
  1781. object ProtocolGroup: TGroupBox
  1782. Left = 0
  1783. Top = 6
  1784. Width = 393
  1785. Height = 71
  1786. Anchors = [akLeft, akTop, akRight]
  1787. Caption = 'Protocol options'
  1788. TabOrder = 0
  1789. DesignSize = (
  1790. 393
  1791. 71)
  1792. object Label37: TLabel
  1793. Left = 12
  1794. Top = 42
  1795. Width = 103
  1796. Height = 13
  1797. Caption = 'SSH protocol version:'
  1798. FocusControl = SshProtCombo2
  1799. end
  1800. object CompressionCheck: TCheckBox
  1801. Left = 16
  1802. Top = 19
  1803. Width = 367
  1804. Height = 17
  1805. Anchors = [akLeft, akTop, akRight]
  1806. Caption = 'Enable &compression'
  1807. TabOrder = 0
  1808. OnClick = DataChange
  1809. end
  1810. object SshProtCombo2: TComboBox
  1811. Left = 303
  1812. Top = 37
  1813. Width = 80
  1814. Height = 21
  1815. Style = csDropDownList
  1816. Anchors = [akTop, akRight]
  1817. TabOrder = 1
  1818. OnChange = DataChange
  1819. Items.Strings = (
  1820. '1 (insecure)'
  1821. '2')
  1822. end
  1823. end
  1824. object EncryptionGroup: TGroupBox
  1825. Left = 0
  1826. Top = 83
  1827. Width = 393
  1828. Height = 171
  1829. Anchors = [akLeft, akTop, akRight]
  1830. Caption = 'Encryption options'
  1831. TabOrder = 1
  1832. DesignSize = (
  1833. 393
  1834. 171)
  1835. object Label8: TLabel
  1836. Left = 12
  1837. Top = 19
  1838. Width = 162
  1839. Height = 13
  1840. Caption = 'Encryption cipher selection &policy:'
  1841. FocusControl = CipherListBox
  1842. end
  1843. object CipherListBox: TListBox
  1844. Left = 12
  1845. Top = 36
  1846. Width = 285
  1847. Height = 99
  1848. Anchors = [akLeft, akTop, akRight]
  1849. DragMode = dmAutomatic
  1850. ItemHeight = 13
  1851. TabOrder = 0
  1852. OnClick = DataChange
  1853. OnDragDrop = AlgListBoxDragDrop
  1854. OnDragOver = AlgListBoxDragOver
  1855. OnStartDrag = AlgListBoxStartDrag
  1856. end
  1857. object Ssh2LegacyDESCheck: TCheckBox
  1858. Left = 16
  1859. Top = 142
  1860. Width = 367
  1861. Height = 17
  1862. Anchors = [akLeft, akTop, akRight]
  1863. Caption = 'Enable legacy use of single-&DES in SSH-2'
  1864. TabOrder = 3
  1865. end
  1866. object CipherUpButton: TButton
  1867. Left = 303
  1868. Top = 36
  1869. Width = 80
  1870. Height = 25
  1871. Anchors = [akTop, akRight]
  1872. Caption = '&Up'
  1873. TabOrder = 1
  1874. OnClick = CipherButtonClick
  1875. end
  1876. object CipherDownButton: TButton
  1877. Left = 303
  1878. Top = 68
  1879. Width = 80
  1880. Height = 25
  1881. Anchors = [akTop, akRight]
  1882. Caption = '&Down'
  1883. TabOrder = 2
  1884. OnClick = CipherButtonClick
  1885. end
  1886. end
  1887. end
  1888. object KexSheet: TTabSheet
  1889. Tag = 2
  1890. HelpType = htKeyword
  1891. HelpKeyword = 'ui_login_kex'
  1892. Caption = 'Key exchange'
  1893. ImageIndex = 13
  1894. TabVisible = False
  1895. DesignSize = (
  1896. 401
  1897. 382)
  1898. object KexOptionsGroup: TGroupBox
  1899. Left = 0
  1900. Top = 6
  1901. Width = 393
  1902. Height = 137
  1903. Anchors = [akLeft, akTop, akRight]
  1904. Caption = 'Key exchange algorithm options'
  1905. TabOrder = 0
  1906. DesignSize = (
  1907. 393
  1908. 137)
  1909. object Label28: TLabel
  1910. Left = 12
  1911. Top = 19
  1912. Width = 124
  1913. Height = 13
  1914. Caption = 'Algorithm selection &policy:'
  1915. FocusControl = KexListBox
  1916. end
  1917. object KexListBox: TListBox
  1918. Left = 12
  1919. Top = 36
  1920. Width = 285
  1921. Height = 89
  1922. Anchors = [akLeft, akTop, akRight]
  1923. DragMode = dmAutomatic
  1924. ItemHeight = 13
  1925. TabOrder = 0
  1926. OnClick = DataChange
  1927. OnDragDrop = AlgListBoxDragDrop
  1928. OnDragOver = AlgListBoxDragOver
  1929. OnStartDrag = AlgListBoxStartDrag
  1930. end
  1931. object KexUpButton: TButton
  1932. Left = 303
  1933. Top = 36
  1934. Width = 80
  1935. Height = 25
  1936. Anchors = [akTop, akRight]
  1937. Caption = '&Up'
  1938. TabOrder = 1
  1939. OnClick = KexButtonClick
  1940. end
  1941. object KexDownButton: TButton
  1942. Left = 303
  1943. Top = 68
  1944. Width = 80
  1945. Height = 25
  1946. Anchors = [akTop, akRight]
  1947. Caption = '&Down'
  1948. TabOrder = 2
  1949. OnClick = KexButtonClick
  1950. end
  1951. end
  1952. object KexReexchangeGroup: TGroupBox
  1953. Left = 0
  1954. Top = 150
  1955. Width = 393
  1956. Height = 69
  1957. Anchors = [akLeft, akTop, akRight]
  1958. Caption = 'Options controlling key re-exchange'
  1959. TabOrder = 1
  1960. DesignSize = (
  1961. 393
  1962. 69)
  1963. object Label31: TLabel
  1964. Left = 12
  1965. Top = 20
  1966. Width = 199
  1967. Height = 13
  1968. Caption = 'Max &minutes before rekey (0 for no limit):'
  1969. Color = clBtnFace
  1970. FocusControl = RekeyTimeEdit
  1971. ParentColor = False
  1972. end
  1973. object Label32: TLabel
  1974. Left = 12
  1975. Top = 44
  1976. Width = 184
  1977. Height = 13
  1978. Caption = 'Ma&x data before rekey (0 for no limit):'
  1979. Color = clBtnFace
  1980. FocusControl = RekeyDataEdit
  1981. ParentColor = False
  1982. end
  1983. object RekeyTimeEdit: TUpDownEdit
  1984. Left = 303
  1985. Top = 12
  1986. Width = 80
  1987. Height = 21
  1988. Alignment = taRightJustify
  1989. MaxValue = 1440.000000000000000000
  1990. Anchors = [akTop, akRight]
  1991. MaxLength = 4
  1992. TabOrder = 0
  1993. OnChange = DataChange
  1994. end
  1995. object RekeyDataEdit: TEdit
  1996. Left = 303
  1997. Top = 39
  1998. Width = 80
  1999. Height = 21
  2000. Anchors = [akTop, akRight]
  2001. MaxLength = 10
  2002. TabOrder = 1
  2003. OnChange = DataChange
  2004. end
  2005. end
  2006. end
  2007. object AuthSheet: TTabSheet
  2008. Tag = 2
  2009. HelpType = htKeyword
  2010. HelpKeyword = 'ui_login_authentication'
  2011. Caption = 'Authentication'
  2012. ImageIndex = 10
  2013. TabVisible = False
  2014. DesignSize = (
  2015. 401
  2016. 382)
  2017. object SshNoUserAuthCheck: TCheckBox
  2018. Left = 12
  2019. Top = 8
  2020. Width = 382
  2021. Height = 17
  2022. Anchors = [akLeft, akTop, akRight]
  2023. Caption = '&Bypass authentication entirely'
  2024. TabOrder = 0
  2025. OnClick = DataChange
  2026. end
  2027. object AuthenticationGroup: TGroupBox
  2028. Left = 0
  2029. Top = 32
  2030. Width = 393
  2031. Height = 117
  2032. Anchors = [akLeft, akTop, akRight]
  2033. Caption = 'Authentication options'
  2034. TabOrder = 1
  2035. DesignSize = (
  2036. 393
  2037. 117)
  2038. object TryAgentCheck: TCheckBox
  2039. Left = 12
  2040. Top = 19
  2041. Width = 373
  2042. Height = 17
  2043. Anchors = [akLeft, akTop, akRight]
  2044. Caption = 'Attempt authentication using &Pageant'
  2045. TabOrder = 0
  2046. OnClick = DataChange
  2047. end
  2048. object AuthTISCheck: TCheckBox
  2049. Left = 12
  2050. Top = 88
  2051. Width = 373
  2052. Height = 17
  2053. Anchors = [akLeft, akTop, akRight]
  2054. Caption = 'Atte&mpt TIS or CryptoCard authentication (SSH-1)'
  2055. TabOrder = 3
  2056. OnClick = DataChange
  2057. end
  2058. object AuthKICheck: TCheckBox
  2059. Left = 12
  2060. Top = 42
  2061. Width = 373
  2062. Height = 17
  2063. Anchors = [akLeft, akTop, akRight]
  2064. Caption = 'Attempt '#39'keyboard-&interactive'#39' authentication'
  2065. TabOrder = 1
  2066. OnClick = DataChange
  2067. end
  2068. object AuthKIPasswordCheck: TCheckBox
  2069. Left = 32
  2070. Top = 65
  2071. Width = 353
  2072. Height = 17
  2073. Anchors = [akLeft, akTop, akRight]
  2074. Caption = 'Respond with pass&word to the first prompt'
  2075. TabOrder = 2
  2076. OnClick = DataChange
  2077. end
  2078. end
  2079. object AuthenticationParamsGroup: TGroupBox
  2080. Left = 0
  2081. Top = 154
  2082. Width = 393
  2083. Height = 120
  2084. Anchors = [akLeft, akTop, akRight]
  2085. Caption = 'Authentication parameters'
  2086. TabOrder = 2
  2087. DesignSize = (
  2088. 393
  2089. 120)
  2090. object PrivateKeyLabel: TLabel
  2091. Left = 12
  2092. Top = 42
  2093. Width = 75
  2094. Height = 13
  2095. Caption = 'Private &key file:'
  2096. FocusControl = PrivateKeyEdit3
  2097. end
  2098. object AgentFwdCheck: TCheckBox
  2099. Left = 12
  2100. Top = 19
  2101. Width = 373
  2102. Height = 17
  2103. Anchors = [akLeft, akTop, akRight]
  2104. Caption = 'Allow agent &forwarding'
  2105. TabOrder = 0
  2106. OnClick = DataChange
  2107. end
  2108. object PrivateKeyEdit3: TFilenameEdit
  2109. Left = 12
  2110. Top = 59
  2111. Width = 372
  2112. Height = 21
  2113. AcceptFiles = True
  2114. OnBeforeDialog = PathEditBeforeDialog
  2115. OnAfterDialog = PrivateKeyEdit3AfterDialog
  2116. Filter =
  2117. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  2118. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  2119. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  2120. DialogTitle = 'Select private key file'
  2121. ClickKey = 16397
  2122. Anchors = [akLeft, akTop, akRight]
  2123. TabOrder = 1
  2124. Text = 'PrivateKeyEdit3'
  2125. OnChange = DataChange
  2126. end
  2127. object PrivateKeyToolsButton: TButton
  2128. Left = 151
  2129. Top = 86
  2130. Width = 101
  2131. Height = 25
  2132. Caption = '&Tools'
  2133. TabOrder = 2
  2134. OnClick = PrivateKeyToolsButtonClick
  2135. end
  2136. object PrivateKeyViewButton: TButton
  2137. Left = 12
  2138. Top = 86
  2139. Width = 133
  2140. Height = 25
  2141. Caption = '&Display Public Key'
  2142. TabOrder = 3
  2143. OnClick = PrivateKeyViewButtonClick
  2144. end
  2145. end
  2146. object GSSAPIGroup: TGroupBox
  2147. Left = 0
  2148. Top = 279
  2149. Width = 393
  2150. Height = 71
  2151. Anchors = [akLeft, akTop, akRight]
  2152. Caption = 'GSSAPI'
  2153. TabOrder = 3
  2154. DesignSize = (
  2155. 393
  2156. 71)
  2157. object AuthGSSAPICheck3: TCheckBox
  2158. Left = 12
  2159. Top = 19
  2160. Width = 373
  2161. Height = 17
  2162. Anchors = [akLeft, akTop, akRight]
  2163. Caption = 'Attempt &GSSAPI authentication'
  2164. TabOrder = 0
  2165. OnClick = AuthGSSAPICheck3Click
  2166. end
  2167. object GSSAPIFwdTGTCheck: TCheckBox
  2168. Left = 32
  2169. Top = 42
  2170. Width = 353
  2171. Height = 17
  2172. Anchors = [akLeft, akTop, akRight]
  2173. Caption = 'Allow GSSAPI &credential delegation'
  2174. TabOrder = 1
  2175. OnClick = AuthGSSAPICheck3Click
  2176. end
  2177. end
  2178. end
  2179. object BugsSheet: TTabSheet
  2180. Tag = 2
  2181. HelpType = htKeyword
  2182. HelpKeyword = 'ui_login_bugs'
  2183. Caption = 'Bugs'
  2184. ImageIndex = 9
  2185. TabVisible = False
  2186. DesignSize = (
  2187. 401
  2188. 382)
  2189. object BugsGroupBox: TGroupBox
  2190. Left = 0
  2191. Top = 6
  2192. Width = 393
  2193. Height = 289
  2194. Anchors = [akLeft, akTop, akRight]
  2195. Caption = 'Detection of known bugs in SSH servers'
  2196. TabOrder = 0
  2197. DesignSize = (
  2198. 393
  2199. 289)
  2200. object BugIgnore1Label: TLabel
  2201. Left = 12
  2202. Top = 212
  2203. Width = 169
  2204. Height = 13
  2205. Caption = 'Chokes on SSH-1 &ignore messages:'
  2206. FocusControl = BugIgnore1Combo
  2207. end
  2208. object BugPlainPW1Label: TLabel
  2209. Left = 12
  2210. Top = 236
  2211. Width = 195
  2212. Height = 13
  2213. Caption = 'Refuses all SSH-1 pass&word camouflage:'
  2214. FocusControl = BugPlainPW1Combo
  2215. end
  2216. object BugRSA1Label: TLabel
  2217. Left = 12
  2218. Top = 260
  2219. Width = 181
  2220. Height = 13
  2221. Caption = 'Chokes on SSH-1 &RSA authentication:'
  2222. FocusControl = BugRSA1Combo
  2223. end
  2224. object BugHMAC2Label: TLabel
  2225. Left = 12
  2226. Top = 68
  2227. Width = 154
  2228. Height = 13
  2229. Caption = 'Miscomputes SSH-2 H&MAC keys:'
  2230. FocusControl = BugHMAC2Combo
  2231. end
  2232. object BugDeriveKey2Label: TLabel
  2233. Left = 12
  2234. Top = 92
  2235. Width = 176
  2236. Height = 13
  2237. Caption = 'Miscomputes SSH-2 &encryption keys:'
  2238. FocusControl = BugDeriveKey2Combo
  2239. end
  2240. object BugRSAPad2Label: TLabel
  2241. Left = 12
  2242. Top = 116
  2243. Width = 210
  2244. Height = 13
  2245. Caption = 'Requires &padding on SSH-2 RSA signatures:'
  2246. FocusControl = BugRSAPad2Combo
  2247. end
  2248. object BugPKSessID2Label: TLabel
  2249. Left = 12
  2250. Top = 140
  2251. Width = 195
  2252. Height = 13
  2253. Caption = 'Misuses the sessio&n ID in SSH-2 PK auth:'
  2254. FocusControl = BugPKSessID2Combo
  2255. end
  2256. object BugRekey2Label: TLabel
  2257. Left = 12
  2258. Top = 164
  2259. Width = 187
  2260. Height = 13
  2261. Caption = 'Handles SSH-2 &key re-exchange badly:'
  2262. FocusControl = BugRekey2Combo
  2263. end
  2264. object BugMaxPkt2Label: TLabel
  2265. Left = 12
  2266. Top = 188
  2267. Width = 176
  2268. Height = 13
  2269. Caption = 'Ignores SSH-2 ma&ximum packet size:'
  2270. FocusControl = BugMaxPkt2Combo
  2271. end
  2272. object BugIgnore2Label: TLabel
  2273. Left = 12
  2274. Top = 20
  2275. Width = 169
  2276. Height = 13
  2277. Caption = 'Chokes on SSH-&2 ignore messages:'
  2278. FocusControl = BugIgnore2Combo
  2279. end
  2280. object BugWinAdjLabel: TLabel
  2281. Left = 12
  2282. Top = 44
  2283. Width = 212
  2284. Height = 13
  2285. Caption = 'Chokes on WinSCP'#39's SSH-2 '#39'winadj'#39' requests'
  2286. FocusControl = BugWinAdjCombo
  2287. end
  2288. object BugIgnore1Combo: TComboBox
  2289. Left = 320
  2290. Top = 207
  2291. Width = 61
  2292. Height = 21
  2293. Style = csDropDownList
  2294. Anchors = [akTop, akRight]
  2295. TabOrder = 8
  2296. OnChange = DataChange
  2297. end
  2298. object BugPlainPW1Combo: TComboBox
  2299. Left = 320
  2300. Top = 231
  2301. Width = 61
  2302. Height = 21
  2303. Style = csDropDownList
  2304. Anchors = [akTop, akRight]
  2305. TabOrder = 9
  2306. OnChange = DataChange
  2307. end
  2308. object BugRSA1Combo: TComboBox
  2309. Left = 320
  2310. Top = 255
  2311. Width = 61
  2312. Height = 21
  2313. Style = csDropDownList
  2314. Anchors = [akTop, akRight]
  2315. TabOrder = 10
  2316. OnChange = DataChange
  2317. end
  2318. object BugHMAC2Combo: TComboBox
  2319. Left = 320
  2320. Top = 63
  2321. Width = 61
  2322. Height = 21
  2323. Style = csDropDownList
  2324. Anchors = [akTop, akRight]
  2325. TabOrder = 2
  2326. OnChange = DataChange
  2327. end
  2328. object BugDeriveKey2Combo: TComboBox
  2329. Left = 320
  2330. Top = 87
  2331. Width = 61
  2332. Height = 21
  2333. Style = csDropDownList
  2334. Anchors = [akTop, akRight]
  2335. TabOrder = 3
  2336. OnChange = DataChange
  2337. end
  2338. object BugRSAPad2Combo: TComboBox
  2339. Left = 320
  2340. Top = 111
  2341. Width = 61
  2342. Height = 21
  2343. Style = csDropDownList
  2344. Anchors = [akTop, akRight]
  2345. TabOrder = 4
  2346. OnChange = DataChange
  2347. end
  2348. object BugPKSessID2Combo: TComboBox
  2349. Left = 320
  2350. Top = 135
  2351. Width = 61
  2352. Height = 21
  2353. Style = csDropDownList
  2354. Anchors = [akTop, akRight]
  2355. TabOrder = 5
  2356. OnChange = DataChange
  2357. end
  2358. object BugRekey2Combo: TComboBox
  2359. Left = 320
  2360. Top = 159
  2361. Width = 61
  2362. Height = 21
  2363. Style = csDropDownList
  2364. Anchors = [akTop, akRight]
  2365. TabOrder = 6
  2366. OnChange = DataChange
  2367. end
  2368. object BugMaxPkt2Combo: TComboBox
  2369. Left = 320
  2370. Top = 183
  2371. Width = 61
  2372. Height = 21
  2373. Style = csDropDownList
  2374. Anchors = [akTop, akRight]
  2375. TabOrder = 7
  2376. OnChange = DataChange
  2377. end
  2378. object BugIgnore2Combo: TComboBox
  2379. Left = 320
  2380. Top = 15
  2381. Width = 61
  2382. Height = 21
  2383. Style = csDropDownList
  2384. Anchors = [akTop, akRight]
  2385. TabOrder = 0
  2386. OnChange = DataChange
  2387. end
  2388. object BugWinAdjCombo: TComboBox
  2389. Left = 320
  2390. Top = 39
  2391. Width = 61
  2392. Height = 21
  2393. Style = csDropDownList
  2394. Anchors = [akTop, akRight]
  2395. TabOrder = 1
  2396. OnChange = DataChange
  2397. end
  2398. end
  2399. end
  2400. object NoteSheet: TTabSheet
  2401. HelpType = htKeyword
  2402. HelpKeyword = 'ui_login_note'
  2403. Caption = 'Note'
  2404. ImageIndex = 14
  2405. TabVisible = False
  2406. DesignSize = (
  2407. 401
  2408. 382)
  2409. object NoteGroup: TGroupBox
  2410. Left = 0
  2411. Top = 6
  2412. Width = 393
  2413. Height = 367
  2414. Anchors = [akLeft, akTop, akRight, akBottom]
  2415. Caption = 'Note'
  2416. TabOrder = 0
  2417. DesignSize = (
  2418. 393
  2419. 367)
  2420. object NoteMemo: TMemo
  2421. Left = 12
  2422. Top = 21
  2423. Width = 371
  2424. Height = 332
  2425. Anchors = [akLeft, akTop, akRight, akBottom]
  2426. MaxLength = 4000
  2427. TabOrder = 0
  2428. OnChange = DataChange
  2429. OnKeyDown = NoteMemoKeyDown
  2430. end
  2431. end
  2432. end
  2433. end
  2434. object LeftPanel: TPanel
  2435. Left = 0
  2436. Top = 0
  2437. Width = 152
  2438. Height = 392
  2439. Align = alLeft
  2440. BevelOuter = bvNone
  2441. TabOrder = 0
  2442. DesignSize = (
  2443. 152
  2444. 392)
  2445. object NavigationTree: TTreeView
  2446. Left = 8
  2447. Top = 9
  2448. Width = 136
  2449. Height = 379
  2450. Anchors = [akLeft, akTop, akRight, akBottom]
  2451. DoubleBuffered = True
  2452. HideSelection = False
  2453. HotTrack = True
  2454. Indent = 19
  2455. ParentDoubleBuffered = False
  2456. ReadOnly = True
  2457. ShowButtons = False
  2458. ShowRoot = False
  2459. TabOrder = 0
  2460. OnChange = NavigationTreeChange
  2461. OnCollapsing = NavigationTreeCollapsing
  2462. Items.NodeData = {
  2463. 030400000036000000000000000000000000000000FFFFFFFF00000000000000
  2464. 0006000000010C45006E007600690072006F006E006D0065006E007400580036
  2465. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2466. 0C4400690072006500630074006F007200690065007300580036000000000000
  2467. 000000000000000000FFFFFFFF000000000000000000000000010C5200650063
  2468. 00790063006C0065002000620069006E005800340000000000000000000000FF
  2469. FFFFFFFFFFFFFF000000000000000000000000010B45006E0063007200790070
  2470. 00740069006F006E00580028000000000000000000000000000000FFFFFFFF00
  2471. 0000000000000000000000010553004600540050005800260000000000000000
  2472. 00000000000000FFFFFFFF000000000000000000000000010453004300500058
  2473. 00260000000000000000000000FFFFFFFFFFFFFFFF0000000000000000000000
  2474. 000104460054005000580034000000000000000000000000000000FFFFFFFF00
  2475. 0000000000000002000000010B43006F006E006E0065006300740069006F006E
  2476. 0058002A000000000000000000000000000000FFFFFFFF000000000000000000
  2477. 0000000106500072006F007800790058002C0000000000000000000000000000
  2478. 00FFFFFFFF0000000000000000000000000107540075006E006E0065006C0058
  2479. 0026000000000000000000000000000000FFFFFFFF0000000000000000030000
  2480. 000104530053004800580038000000000000000000000000000000FFFFFFFF00
  2481. 0000000000000000000000010D4B00650078002000650078006300680061006E
  2482. 006700650058003C000000000000000000000000000000FFFFFFFF0000000000
  2483. 00000000000000010F410075007400680065006E007400690063006100740069
  2484. 006F006E00580028000000000000000000000000000000FFFFFFFF0000000000
  2485. 0000000000000001054200750067007300580028000000000000000000000000
  2486. 000000FFFFFFFF00000000000000000000000001054E006F00740065005800}
  2487. end
  2488. end
  2489. end
  2490. object OKBtn: TButton
  2491. Left = 307
  2492. Top = 401
  2493. Width = 75
  2494. Height = 25
  2495. Anchors = [akRight, akBottom]
  2496. Caption = 'OK'
  2497. Default = True
  2498. ModalResult = 1
  2499. TabOrder = 1
  2500. end
  2501. object CancelBtn: TButton
  2502. Left = 392
  2503. Top = 401
  2504. Width = 75
  2505. Height = 25
  2506. Anchors = [akRight, akBottom]
  2507. Cancel = True
  2508. Caption = 'Cancel'
  2509. ModalResult = 2
  2510. TabOrder = 2
  2511. end
  2512. object HelpButton: TButton
  2513. Left = 475
  2514. Top = 401
  2515. Width = 75
  2516. Height = 25
  2517. Anchors = [akRight, akBottom]
  2518. Caption = '&Help'
  2519. TabOrder = 3
  2520. OnClick = HelpButtonClick
  2521. end
  2522. object ColorButton: TButton
  2523. Left = 8
  2524. Top = 401
  2525. Width = 82
  2526. Height = 25
  2527. Anchors = [akLeft, akBottom]
  2528. Caption = '&Color'
  2529. TabOrder = 4
  2530. OnClick = ColorButtonClick
  2531. end
  2532. object ColorImageList: TImageList
  2533. AllocBy = 1
  2534. Left = 36
  2535. Top = 289
  2536. Bitmap = {
  2537. 494C010101000400500010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2538. 0000000000003600000028000000400000001000000001002000000000000010
  2539. 0000000000000000000000000000000000000000000000000000000000000000
  2540. 0000000000000000000000000000000000000000000000000000000000000000
  2541. 0000000000000000000000000000000000000000000000000000000000000000
  2542. 0000000000000000000000000000000000000000000000000000000000000000
  2543. 0000000000000000000000000000000000000000000000000000000000000000
  2544. 0000000000000000000000000000000000000000000000000000000000000000
  2545. 0000000000000000000000000000000000000000000000000000000000000000
  2546. 0000000000000000000000000000000000000000000000000000000000000000
  2547. 0000000000000000000000000000000000000000000000000000000000000000
  2548. 00004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2549. 3500000000000000000000000000000000000000000000000000000000000000
  2550. 0000000000000000000000000000000000000000000000000000000000000000
  2551. 0000000000000000000000000000000000000000000000000000000000000000
  2552. 0000000000000000000000000000000000000000000000000000000000000000
  2553. 0000000000000000000000000000000000000000000000000000000000000000
  2554. 0000000000000000000000000000000000000000000000000000000000000000
  2555. 0000000000000000000000000000000000000000000000000000000000000000
  2556. 000000000000000000004B3F35004B3F35004B3F35004B3F3500000000000000
  2557. 0000000000000000000000000000000000000000000000000000000000000000
  2558. 0000000000000000000000000000000000000000000000000000000000000000
  2559. 0000000000000000000000000000000000000000000000000000000000000000
  2560. 0000000000000000000000000000000000000000000000000000000000000000
  2561. 0000000000000000000000000000000000000000000000000000000000000000
  2562. 0000000000000000000000000000000000000000000000000000000000000000
  2563. 00000000000000000000000000000000000000000000645951004B3F35004B3F
  2564. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2565. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2566. 0000000000000000000000000000000000000000000000000000000000000000
  2567. 0000000000000000000000000000000000000000000000000000000000000000
  2568. 0000000000000000000000000000000000000000000000000000000000000000
  2569. 0000000000000000000000000000000000000000000000000000000000000000
  2570. 0000000000000000000000000000000000000000000000000000000000000000
  2571. 000000000000000000000000000000000000000000004B3F3500736052007360
  2572. 5200736052007360520073605200736052007360520073605200736052007360
  2573. 520073605200736052004B3F3500000000000000000000000000000000000000
  2574. 0000000000000000000000000000000000000000000000000000000000000000
  2575. 0000000000000000000000000000000000000000000000000000000000000000
  2576. 0000000000000000000000000000000000000000000000000000000000000000
  2577. 0000000000000000000000000000000000000000000000000000000000000000
  2578. 0000000000000000000000000000000000000000000000000000000000000000
  2579. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2580. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2581. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2582. 0000000000000000000000000000000000000000000000000000000000000000
  2583. 0000000000000000000000000000000000000000000000000000000000000000
  2584. 0000000000000000000000000000000000000000000000000000000000000000
  2585. 0000000000000000000000000000000000000000000000000000000000000000
  2586. 0000000000000000000000000000000000000000000000000000000000000000
  2587. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2588. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2589. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2590. 0000000000000000000000000000000000000000000000000000000000000000
  2591. 0000000000000000000000000000000000000000000000000000000000000000
  2592. 0000000000000000000000000000000000000000000000000000000000000000
  2593. 0000000000000000000000000000000000000000000000000000000000000000
  2594. 0000000000000000000000000000000000000000000000000000000000000000
  2595. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2596. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2597. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2598. 0000000000000000000000000000000000000000000000000000000000000000
  2599. 0000000000000000000000000000000000000000000000000000000000000000
  2600. 0000000000000000000000000000000000000000000000000000000000000000
  2601. 0000000000000000000000000000000000000000000000000000000000000000
  2602. 0000000000000000000000000000000000000000000000000000000000000000
  2603. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2604. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2605. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2606. 0000000000000000000000000000000000000000000000000000000000000000
  2607. 0000000000000000000000000000000000000000000000000000000000000000
  2608. 0000000000000000000000000000000000000000000000000000000000000000
  2609. 0000000000000000000000000000000000000000000000000000000000000000
  2610. 0000000000000000000000000000000000000000000000000000000000000000
  2611. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2612. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2613. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2614. 0000000000000000000000000000000000000000000000000000000000000000
  2615. 0000000000000000000000000000000000000000000000000000000000000000
  2616. 0000000000000000000000000000000000000000000000000000000000000000
  2617. 0000000000000000000000000000000000000000000000000000000000000000
  2618. 0000000000000000000000000000000000000000000000000000000000000000
  2619. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2620. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2621. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2622. 0000000000000000000000000000000000000000000000000000000000000000
  2623. 0000000000000000000000000000000000000000000000000000000000000000
  2624. 0000000000000000000000000000000000000000000000000000000000000000
  2625. 0000000000000000000000000000000000000000000000000000000000000000
  2626. 0000000000000000000000000000000000000000000000000000000000000000
  2627. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2628. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2629. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2630. 0000000000000000000000000000000000000000000000000000000000000000
  2631. 0000000000000000000000000000000000000000000000000000000000000000
  2632. 0000000000000000000000000000000000000000000000000000000000000000
  2633. 0000000000000000000000000000000000000000000000000000000000000000
  2634. 0000000000000000000000000000000000000000000000000000000000000000
  2635. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2636. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2637. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2638. 0000000000000000000000000000000000000000000000000000000000000000
  2639. 0000000000000000000000000000000000000000000000000000000000000000
  2640. 0000000000000000000000000000000000000000000000000000000000000000
  2641. 0000000000000000000000000000000000000000000000000000000000000000
  2642. 0000000000000000000000000000000000000000000000000000000000000000
  2643. 0000000000000000000000000000000000000000000062584F004B3F35004B3F
  2644. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2645. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2646. 0000000000000000000000000000000000000000000000000000000000000000
  2647. 0000000000000000000000000000000000000000000000000000000000000000
  2648. 0000000000000000000000000000000000000000000000000000000000000000
  2649. 0000000000000000000000000000000000000000000000000000000000000000
  2650. 0000000000000000000000000000000000000000000000000000000000000000
  2651. 0000000000000000000000000000000000000000000000000000000000000000
  2652. 0000000000000000000000000000000000000000000000000000000000000000
  2653. 0000000000000000000000000000000000000000000000000000000000000000
  2654. 0000000000000000000000000000000000000000000000000000000000000000
  2655. 0000000000000000000000000000000000000000000000000000000000000000
  2656. 0000000000000000000000000000000000000000000000000000000000000000
  2657. 0000000000000000000000000000000000000000000000000000000000000000
  2658. 0000000000000000000000000000000000000000000000000000000000000000
  2659. 0000000000000000000000000000000000000000000000000000000000000000
  2660. 0000000000000000000000000000000000000000000000000000000000000000
  2661. 0000000000000000000000000000000000000000000000000000000000000000
  2662. 0000000000000000000000000000000000000000000000000000000000000000
  2663. 0000000000000000000000000000000000000000000000000000000000000000
  2664. 0000000000000000000000000000000000000000000000000000000000000000
  2665. 0000000000000000000000000000000000000000000000000000000000000000
  2666. 0000000000000000000000000000000000000000000000000000000000000000
  2667. 000000000000000000000000000000000000424D3E000000000000003E000000
  2668. 2800000040000000100000000100010000000000800000000000000000000000
  2669. 000000000000000000000000FFFFFF00FFFF000000000000F00F000000000000
  2670. FC3F000000000000800100000000000080010000000000008001000000000000
  2671. 8001000000000000800100000000000080010000000000008001000000000000
  2672. 8001000000000000800100000000000080010000000000008001000000000000
  2673. FFFF000000000000FFFF00000000000000000000000000000000000000000000
  2674. 000000000000}
  2675. end
  2676. object ColorImageList120: TImageList
  2677. AllocBy = 1
  2678. Height = 20
  2679. Width = 20
  2680. Left = 132
  2681. Top = 289
  2682. Bitmap = {
  2683. 494C0101010010001C0014001400FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2684. 0000000000003600000028000000500000001400000001002000000000000019
  2685. 0000000000000000000000000000000000000000000000000000000000000000
  2686. 0000000000000000000000000000000000000000000000000000000000000000
  2687. 0000000000000000000000000000000000000000000000000000000000000000
  2688. 0000000000000000000000000000000000000000000000000000000000000000
  2689. 0000000000000000000000000000000000000000000000000000000000000000
  2690. 0000000000000000000000000000000000000000000000000000000000000000
  2691. 0000000000000000000000000000000000000000000000000000000000000000
  2692. 0000000000000000000000000000000000000000000000000000000000000000
  2693. 0000000000000000000000000000000000000000000000000000000000000000
  2694. 0000000000000000000000000000000000000000000000000000000000000000
  2695. 0000000000000000000000000000000000000000000000000000000000000000
  2696. 00000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2697. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2698. 0000000000000000000000000000000000000000000000000000000000000000
  2699. 0000000000000000000000000000000000000000000000000000000000000000
  2700. 0000000000000000000000000000000000000000000000000000000000000000
  2701. 0000000000000000000000000000000000000000000000000000000000000000
  2702. 0000000000000000000000000000000000000000000000000000000000000000
  2703. 0000000000000000000000000000000000000000000000000000000000000000
  2704. 0000000000000000000000000000000000000000000000000000000000000000
  2705. 0000000000000000000000000000000000000000000000000000000000000000
  2706. 0000000000004B3F350099816F0099816F0099816F0099816F0099816F009981
  2707. 6F0099816F0099816F004B3F3500000000000000000000000000000000000000
  2708. 0000000000000000000000000000000000000000000000000000000000000000
  2709. 0000000000000000000000000000000000000000000000000000000000000000
  2710. 0000000000000000000000000000000000000000000000000000000000000000
  2711. 0000000000000000000000000000000000000000000000000000000000000000
  2712. 0000000000000000000000000000000000000000000000000000000000000000
  2713. 0000000000000000000000000000000000000000000000000000000000000000
  2714. 0000000000000000000000000000000000000000000000000000000000000000
  2715. 0000000000000000000000000000000000000000000000000000000000000000
  2716. 00000000000062584F004B3F35004B3F35003028220030282200302822003028
  2717. 22004B3F35004B3F350062584F00000000000000000000000000000000000000
  2718. 0000000000000000000000000000000000000000000000000000000000000000
  2719. 0000000000000000000000000000000000000000000000000000000000000000
  2720. 0000000000000000000000000000000000000000000000000000000000000000
  2721. 0000000000000000000000000000000000000000000000000000000000000000
  2722. 0000000000000000000000000000000000000000000000000000000000000000
  2723. 0000000000000000000000000000000000000000000000000000000000000000
  2724. 0000000000000000000000000000000000000000000000000000000000000000
  2725. 0000000000000000000000000000000000000000000000000000000000000000
  2726. 00000000000000000000000000000000000027211C0027211C0027211C002721
  2727. 1C00000000000000000000000000000000000000000000000000000000000000
  2728. 0000000000000000000000000000000000000000000000000000000000000000
  2729. 0000000000000000000000000000000000000000000000000000000000000000
  2730. 0000000000000000000000000000000000000000000000000000000000000000
  2731. 0000000000000000000000000000000000000000000000000000000000000000
  2732. 0000000000000000000000000000000000000000000000000000000000000000
  2733. 0000000000000000000000000000000000000000000000000000000000000000
  2734. 0000000000000000000000000000000000000000000000000000000000000000
  2735. 0000000000000000000000000000000000000000000071675F004B3F35004B3F
  2736. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2737. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F350071675F000000
  2738. 0000000000000000000000000000000000000000000000000000000000000000
  2739. 0000000000000000000000000000000000000000000000000000000000000000
  2740. 0000000000000000000000000000000000000000000000000000000000000000
  2741. 0000000000000000000000000000000000000000000000000000000000000000
  2742. 0000000000000000000000000000000000000000000000000000000000000000
  2743. 0000000000000000000000000000000000000000000000000000000000000000
  2744. 0000000000000000000000000000000000000000000000000000000000000000
  2745. 000000000000000000000000000000000000000000004B3F35008C8078008C80
  2746. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  2747. 78008C8078008C8078008C80780029BD3E0029BD3E008C8078004B3F35000000
  2748. 0000000000000000000000000000000000000000000000000000000000000000
  2749. 0000000000000000000000000000000000000000000000000000000000000000
  2750. 0000000000000000000000000000000000000000000000000000000000000000
  2751. 0000000000000000000000000000000000000000000000000000000000000000
  2752. 0000000000000000000000000000000000000000000000000000000000000000
  2753. 0000000000000000000000000000000000000000000000000000000000000000
  2754. 0000000000000000000000000000000000000000000000000000000000000000
  2755. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2756. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2757. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2758. 0000000000000000000000000000000000000000000000000000000000000000
  2759. 0000000000000000000000000000000000000000000000000000000000000000
  2760. 0000000000000000000000000000000000000000000000000000000000000000
  2761. 0000000000000000000000000000000000000000000000000000000000000000
  2762. 0000000000000000000000000000000000000000000000000000000000000000
  2763. 0000000000000000000000000000000000000000000000000000000000000000
  2764. 0000000000000000000000000000000000000000000000000000000000000000
  2765. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2766. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2767. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2768. 0000000000000000000000000000000000000000000000000000000000000000
  2769. 0000000000000000000000000000000000000000000000000000000000000000
  2770. 0000000000000000000000000000000000000000000000000000000000000000
  2771. 0000000000000000000000000000000000000000000000000000000000000000
  2772. 0000000000000000000000000000000000000000000000000000000000000000
  2773. 0000000000000000000000000000000000000000000000000000000000000000
  2774. 0000000000000000000000000000000000000000000000000000000000000000
  2775. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2776. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2777. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2778. 0000000000000000000000000000000000000000000000000000000000000000
  2779. 0000000000000000000000000000000000000000000000000000000000000000
  2780. 0000000000000000000000000000000000000000000000000000000000000000
  2781. 0000000000000000000000000000000000000000000000000000000000000000
  2782. 0000000000000000000000000000000000000000000000000000000000000000
  2783. 0000000000000000000000000000000000000000000000000000000000000000
  2784. 0000000000000000000000000000000000000000000000000000000000000000
  2785. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2786. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2787. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2788. 0000000000000000000000000000000000000000000000000000000000000000
  2789. 0000000000000000000000000000000000000000000000000000000000000000
  2790. 0000000000000000000000000000000000000000000000000000000000000000
  2791. 0000000000000000000000000000000000000000000000000000000000000000
  2792. 0000000000000000000000000000000000000000000000000000000000000000
  2793. 0000000000000000000000000000000000000000000000000000000000000000
  2794. 0000000000000000000000000000000000000000000000000000000000000000
  2795. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2796. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2797. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2798. 0000000000000000000000000000000000000000000000000000000000000000
  2799. 0000000000000000000000000000000000000000000000000000000000000000
  2800. 0000000000000000000000000000000000000000000000000000000000000000
  2801. 0000000000000000000000000000000000000000000000000000000000000000
  2802. 0000000000000000000000000000000000000000000000000000000000000000
  2803. 0000000000000000000000000000000000000000000000000000000000000000
  2804. 0000000000000000000000000000000000000000000000000000000000000000
  2805. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2806. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2807. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2808. 0000000000000000000000000000000000000000000000000000000000000000
  2809. 0000000000000000000000000000000000000000000000000000000000000000
  2810. 0000000000000000000000000000000000000000000000000000000000000000
  2811. 0000000000000000000000000000000000000000000000000000000000000000
  2812. 0000000000000000000000000000000000000000000000000000000000000000
  2813. 0000000000000000000000000000000000000000000000000000000000000000
  2814. 0000000000000000000000000000000000000000000000000000000000000000
  2815. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2816. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2817. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2818. 0000000000000000000000000000000000000000000000000000000000000000
  2819. 0000000000000000000000000000000000000000000000000000000000000000
  2820. 0000000000000000000000000000000000000000000000000000000000000000
  2821. 0000000000000000000000000000000000000000000000000000000000000000
  2822. 0000000000000000000000000000000000000000000000000000000000000000
  2823. 0000000000000000000000000000000000000000000000000000000000000000
  2824. 0000000000000000000000000000000000000000000000000000000000000000
  2825. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2826. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2827. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2828. 0000000000000000000000000000000000000000000000000000000000000000
  2829. 0000000000000000000000000000000000000000000000000000000000000000
  2830. 0000000000000000000000000000000000000000000000000000000000000000
  2831. 0000000000000000000000000000000000000000000000000000000000000000
  2832. 0000000000000000000000000000000000000000000000000000000000000000
  2833. 0000000000000000000000000000000000000000000000000000000000000000
  2834. 0000000000000000000000000000000000000000000000000000000000000000
  2835. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2836. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2837. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2838. 0000000000000000000000000000000000000000000000000000000000000000
  2839. 0000000000000000000000000000000000000000000000000000000000000000
  2840. 0000000000000000000000000000000000000000000000000000000000000000
  2841. 0000000000000000000000000000000000000000000000000000000000000000
  2842. 0000000000000000000000000000000000000000000000000000000000000000
  2843. 0000000000000000000000000000000000000000000000000000000000000000
  2844. 0000000000000000000000000000000000000000000000000000000000000000
  2845. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2846. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2847. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2848. 0000000000000000000000000000000000000000000000000000000000000000
  2849. 0000000000000000000000000000000000000000000000000000000000000000
  2850. 0000000000000000000000000000000000000000000000000000000000000000
  2851. 0000000000000000000000000000000000000000000000000000000000000000
  2852. 0000000000000000000000000000000000000000000000000000000000000000
  2853. 0000000000000000000000000000000000000000000000000000000000000000
  2854. 0000000000000000000000000000000000000000000000000000000000000000
  2855. 000000000000000000000000000000000000000000006F655D004B3F35004B3F
  2856. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2857. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35006F655D000000
  2858. 0000000000000000000000000000000000000000000000000000000000000000
  2859. 0000000000000000000000000000000000000000000000000000000000000000
  2860. 0000000000000000000000000000000000000000000000000000000000000000
  2861. 0000000000000000000000000000000000000000000000000000000000000000
  2862. 0000000000000000000000000000000000000000000000000000000000000000
  2863. 0000000000000000000000000000000000000000000000000000000000000000
  2864. 0000000000000000000000000000000000000000000000000000000000000000
  2865. 0000000000000000000000000000000000000000000000000000000000000000
  2866. 0000000000000000000000000000000000000000000000000000000000000000
  2867. 0000000000000000000000000000000000000000000000000000000000000000
  2868. 0000000000000000000000000000000000000000000000000000000000000000
  2869. 0000000000000000000000000000000000000000000000000000000000000000
  2870. 0000000000000000000000000000000000000000000000000000000000000000
  2871. 0000000000000000000000000000000000000000000000000000000000000000
  2872. 0000000000000000000000000000000000000000000000000000000000000000
  2873. 0000000000000000000000000000000000000000000000000000000000000000
  2874. 0000000000000000000000000000000000000000000000000000000000000000
  2875. 0000000000000000000000000000000000000000000000000000000000000000
  2876. 0000000000000000000000000000000000000000000000000000000000000000
  2877. 0000000000000000000000000000000000000000000000000000000000000000
  2878. 0000000000000000000000000000000000000000000000000000000000000000
  2879. 0000000000000000000000000000000000000000000000000000000000000000
  2880. 0000000000000000000000000000000000000000000000000000000000000000
  2881. 0000000000000000000000000000000000000000000000000000000000000000
  2882. 0000000000000000000000000000000000000000000000000000000000000000
  2883. 0000000000000000000000000000000000000000000000000000000000000000
  2884. 0000000000000000000000000000000000000000000000000000000000000000
  2885. 000000000000000000000000000000000000424D3E000000000000003E000000
  2886. 2800000050000000140000000100010000000000F00000000000000000000000
  2887. 000000000000000000000000FFFFFF00FFFFF0000000000000000000F801F000
  2888. 0000000000000000F801F0000000000000000000F801F0000000000000000000
  2889. FF0FF00000000000000000008000100000000000000000008000100000000000
  2890. 0000000080001000000000000000000080001000000000000000000080001000
  2891. 0000000000000000800010000000000000000000800010000000000000000000
  2892. 8000100000000000000000008000100000000000000000008000100000000000
  2893. 0000000080001000000000000000000080001000000000000000000080001000
  2894. 0000000000000000FFFFF0000000000000000000FFFFF0000000000000000000
  2895. 00000000000000000000000000000000000000000000}
  2896. end
  2897. object ColorImageList144: TImageList
  2898. AllocBy = 1
  2899. Height = 24
  2900. Width = 24
  2901. Left = 36
  2902. Top = 337
  2903. Bitmap = {
  2904. 494C010101006800740018001800FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2905. 0000000000003600000028000000600000001800000001002000000000000024
  2906. 0000000000000000000000000000000000000000000000000000000000000000
  2907. 0000000000000000000000000000000000000000000000000000000000000000
  2908. 0000000000000000000000000000000000000000000000000000000000000000
  2909. 0000000000000000000000000000000000000000000000000000000000000000
  2910. 0000000000000000000000000000000000000000000000000000000000000000
  2911. 0000000000000000000000000000000000000000000000000000000000000000
  2912. 0000000000000000000000000000000000000000000000000000000000000000
  2913. 0000000000000000000000000000000000000000000000000000000000000000
  2914. 0000000000000000000000000000000000000000000000000000000000000000
  2915. 0000000000000000000000000000000000000000000000000000000000000000
  2916. 0000000000000000000000000000000000000000000000000000000000000000
  2917. 0000000000000000000000000000000000000000000000000000000000000000
  2918. 0000000000000000000000000000000000000000000000000000000000000000
  2919. 0000000000000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F
  2920. 35004B3F35004B3F35004B3F35004B3F35004B3F350062584F00000000000000
  2921. 0000000000000000000000000000000000000000000000000000000000000000
  2922. 0000000000000000000000000000000000000000000000000000000000000000
  2923. 0000000000000000000000000000000000000000000000000000000000000000
  2924. 0000000000000000000000000000000000000000000000000000000000000000
  2925. 0000000000000000000000000000000000000000000000000000000000000000
  2926. 0000000000000000000000000000000000000000000000000000000000000000
  2927. 0000000000000000000000000000000000000000000000000000000000000000
  2928. 0000000000000000000000000000000000000000000000000000000000000000
  2929. 0000000000000000000000000000000000000000000000000000000000000000
  2930. 0000000000000000000000000000000000000000000000000000000000000000
  2931. 000000000000000000004B3F350099816F0099816F0099816F0099816F009981
  2932. 6F0099816F0099816F0099816F0099816F0099816F004B3F3500000000000000
  2933. 0000000000000000000000000000000000000000000000000000000000000000
  2934. 0000000000000000000000000000000000000000000000000000000000000000
  2935. 0000000000000000000000000000000000000000000000000000000000000000
  2936. 0000000000000000000000000000000000000000000000000000000000000000
  2937. 0000000000000000000000000000000000000000000000000000000000000000
  2938. 0000000000000000000000000000000000000000000000000000000000000000
  2939. 0000000000000000000000000000000000000000000000000000000000000000
  2940. 0000000000000000000000000000000000000000000000000000000000000000
  2941. 0000000000000000000000000000000000000000000000000000000000000000
  2942. 0000000000000000000000000000000000000000000000000000000000000000
  2943. 000000000000000000004B3F35007360520073605200736052004B3F35004B3F
  2944. 35004B3F35004B3F35007360520073605200736052004B3F3500000000000000
  2945. 0000000000000000000000000000000000000000000000000000000000000000
  2946. 0000000000000000000000000000000000000000000000000000000000000000
  2947. 0000000000000000000000000000000000000000000000000000000000000000
  2948. 0000000000000000000000000000000000000000000000000000000000000000
  2949. 0000000000000000000000000000000000000000000000000000000000000000
  2950. 0000000000000000000000000000000000000000000000000000000000000000
  2951. 0000000000000000000000000000000000000000000000000000000000000000
  2952. 0000000000000000000000000000000000000000000000000000000000000000
  2953. 0000000000000000000000000000000000000000000000000000000000000000
  2954. 0000000000000000000000000000000000000000000000000000000000000000
  2955. 0000000000000000000062584F004B3F35004B3F35004B3F350042372F004237
  2956. 2F0042372F0042372F004B3F35004B3F35004B3F350062584F00000000000000
  2957. 0000000000000000000000000000000000000000000000000000000000000000
  2958. 0000000000000000000000000000000000000000000000000000000000000000
  2959. 0000000000000000000000000000000000000000000000000000000000000000
  2960. 0000000000000000000000000000000000000000000000000000000000000000
  2961. 0000000000000000000000000000000000000000000000000000000000000000
  2962. 0000000000000000000000000000000000000000000000000000000000000000
  2963. 0000000000000000000000000000000000000000000000000000000000000000
  2964. 0000000000000000000000000000000000000000000000000000000000000000
  2965. 0000000000000000000000000000000000000000000000000000000000000000
  2966. 0000000000000000000000000000000000000000000000000000000000000000
  2967. 0000000000000000000000000000000000000000000000000000302822003028
  2968. 2200302822003028220000000000000000000000000000000000000000000000
  2969. 0000000000000000000000000000000000000000000000000000000000000000
  2970. 0000000000000000000000000000000000000000000000000000000000000000
  2971. 0000000000000000000000000000000000000000000000000000000000000000
  2972. 0000000000000000000000000000000000000000000000000000000000000000
  2973. 0000000000000000000000000000000000000000000000000000000000000000
  2974. 0000000000000000000000000000000000000000000000000000000000000000
  2975. 0000000000000000000000000000000000000000000000000000000000000000
  2976. 0000000000000000000000000000000000000000000000000000000000000000
  2977. 0000000000000000000000000000000000000000000000000000000000000000
  2978. 00000000000000000000000000000000000000000000746A63004B3F35004B3F
  2979. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2980. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2981. 35004B3F35004B3F3500746A6300000000000000000000000000000000000000
  2982. 0000000000000000000000000000000000000000000000000000000000000000
  2983. 0000000000000000000000000000000000000000000000000000000000000000
  2984. 0000000000000000000000000000000000000000000000000000000000000000
  2985. 0000000000000000000000000000000000000000000000000000000000000000
  2986. 0000000000000000000000000000000000000000000000000000000000000000
  2987. 0000000000000000000000000000000000000000000000000000000000000000
  2988. 0000000000000000000000000000000000000000000000000000000000000000
  2989. 0000000000000000000000000000000000000000000000000000000000000000
  2990. 000000000000000000000000000000000000000000004B3F35004E4238004E42
  2991. 38004E4238004E4238004E4238004E4238004E4238004E4238004E4238004E42
  2992. 38004E4238004E4238004E4238004E4238004E4238004E4238004E42380029BD
  2993. 3E0029BD3E004E4238004B3F3500000000000000000000000000000000000000
  2994. 0000000000000000000000000000000000000000000000000000000000000000
  2995. 0000000000000000000000000000000000000000000000000000000000000000
  2996. 0000000000000000000000000000000000000000000000000000000000000000
  2997. 0000000000000000000000000000000000000000000000000000000000000000
  2998. 0000000000000000000000000000000000000000000000000000000000000000
  2999. 0000000000000000000000000000000000000000000000000000000000000000
  3000. 0000000000000000000000000000000000000000000000000000000000000000
  3001. 0000000000000000000000000000000000000000000000000000000000000000
  3002. 000000000000000000000000000000000000000000004B3F350051443B008C80
  3003. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3004. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3005. 78008C80780051443B004B3F3500000000000000000000000000000000000000
  3006. 0000000000000000000000000000000000000000000000000000000000000000
  3007. 0000000000000000000000000000000000000000000000000000000000000000
  3008. 0000000000000000000000000000000000000000000000000000000000000000
  3009. 0000000000000000000000000000000000000000000000000000000000000000
  3010. 0000000000000000000000000000000000000000000000000000000000000000
  3011. 0000000000000000000000000000000000000000000000000000000000000000
  3012. 0000000000000000000000000000000000000000000000000000000000000000
  3013. 0000000000000000000000000000000000000000000000000000000000000000
  3014. 000000000000000000000000000000000000000000004B3F350055473D00FF00
  3015. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3016. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3017. FF00FF00FF0055473D004B3F3500000000000000000000000000000000000000
  3018. 0000000000000000000000000000000000000000000000000000000000000000
  3019. 0000000000000000000000000000000000000000000000000000000000000000
  3020. 0000000000000000000000000000000000000000000000000000000000000000
  3021. 0000000000000000000000000000000000000000000000000000000000000000
  3022. 0000000000000000000000000000000000000000000000000000000000000000
  3023. 0000000000000000000000000000000000000000000000000000000000000000
  3024. 0000000000000000000000000000000000000000000000000000000000000000
  3025. 0000000000000000000000000000000000000000000000000000000000000000
  3026. 000000000000000000000000000000000000000000004B3F3500584A3F00FF00
  3027. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3028. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3029. FF00FF00FF00584A3F004B3F3500000000000000000000000000000000000000
  3030. 0000000000000000000000000000000000000000000000000000000000000000
  3031. 0000000000000000000000000000000000000000000000000000000000000000
  3032. 0000000000000000000000000000000000000000000000000000000000000000
  3033. 0000000000000000000000000000000000000000000000000000000000000000
  3034. 0000000000000000000000000000000000000000000000000000000000000000
  3035. 0000000000000000000000000000000000000000000000000000000000000000
  3036. 0000000000000000000000000000000000000000000000000000000000000000
  3037. 0000000000000000000000000000000000000000000000000000000000000000
  3038. 000000000000000000000000000000000000000000004B3F35005B4D4200FF00
  3039. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3040. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3041. FF00FF00FF005B4D42004B3F3500000000000000000000000000000000000000
  3042. 0000000000000000000000000000000000000000000000000000000000000000
  3043. 0000000000000000000000000000000000000000000000000000000000000000
  3044. 0000000000000000000000000000000000000000000000000000000000000000
  3045. 0000000000000000000000000000000000000000000000000000000000000000
  3046. 0000000000000000000000000000000000000000000000000000000000000000
  3047. 0000000000000000000000000000000000000000000000000000000000000000
  3048. 0000000000000000000000000000000000000000000000000000000000000000
  3049. 0000000000000000000000000000000000000000000000000000000000000000
  3050. 000000000000000000000000000000000000000000004B3F35005E504400FF00
  3051. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3052. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3053. FF00FF00FF005E5044004B3F3500000000000000000000000000000000000000
  3054. 0000000000000000000000000000000000000000000000000000000000000000
  3055. 0000000000000000000000000000000000000000000000000000000000000000
  3056. 0000000000000000000000000000000000000000000000000000000000000000
  3057. 0000000000000000000000000000000000000000000000000000000000000000
  3058. 0000000000000000000000000000000000000000000000000000000000000000
  3059. 0000000000000000000000000000000000000000000000000000000000000000
  3060. 0000000000000000000000000000000000000000000000000000000000000000
  3061. 0000000000000000000000000000000000000000000000000000000000000000
  3062. 000000000000000000000000000000000000000000004B3F350062534700FF00
  3063. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3064. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3065. FF00FF00FF00625347004B3F3500000000000000000000000000000000000000
  3066. 0000000000000000000000000000000000000000000000000000000000000000
  3067. 0000000000000000000000000000000000000000000000000000000000000000
  3068. 0000000000000000000000000000000000000000000000000000000000000000
  3069. 0000000000000000000000000000000000000000000000000000000000000000
  3070. 0000000000000000000000000000000000000000000000000000000000000000
  3071. 0000000000000000000000000000000000000000000000000000000000000000
  3072. 0000000000000000000000000000000000000000000000000000000000000000
  3073. 0000000000000000000000000000000000000000000000000000000000000000
  3074. 000000000000000000000000000000000000000000004B3F350065554900FF00
  3075. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3076. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3077. FF00FF00FF00655549004B3F3500000000000000000000000000000000000000
  3078. 0000000000000000000000000000000000000000000000000000000000000000
  3079. 0000000000000000000000000000000000000000000000000000000000000000
  3080. 0000000000000000000000000000000000000000000000000000000000000000
  3081. 0000000000000000000000000000000000000000000000000000000000000000
  3082. 0000000000000000000000000000000000000000000000000000000000000000
  3083. 0000000000000000000000000000000000000000000000000000000000000000
  3084. 0000000000000000000000000000000000000000000000000000000000000000
  3085. 0000000000000000000000000000000000000000000000000000000000000000
  3086. 000000000000000000000000000000000000000000004B3F350069584C00FF00
  3087. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3088. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3089. FF00FF00FF0069584C004B3F3500000000000000000000000000000000000000
  3090. 0000000000000000000000000000000000000000000000000000000000000000
  3091. 0000000000000000000000000000000000000000000000000000000000000000
  3092. 0000000000000000000000000000000000000000000000000000000000000000
  3093. 0000000000000000000000000000000000000000000000000000000000000000
  3094. 0000000000000000000000000000000000000000000000000000000000000000
  3095. 0000000000000000000000000000000000000000000000000000000000000000
  3096. 0000000000000000000000000000000000000000000000000000000000000000
  3097. 0000000000000000000000000000000000000000000000000000000000000000
  3098. 000000000000000000000000000000000000000000004B3F35006C5B4E00FF00
  3099. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3100. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3101. FF00FF00FF006C5B4E004B3F3500000000000000000000000000000000000000
  3102. 0000000000000000000000000000000000000000000000000000000000000000
  3103. 0000000000000000000000000000000000000000000000000000000000000000
  3104. 0000000000000000000000000000000000000000000000000000000000000000
  3105. 0000000000000000000000000000000000000000000000000000000000000000
  3106. 0000000000000000000000000000000000000000000000000000000000000000
  3107. 0000000000000000000000000000000000000000000000000000000000000000
  3108. 0000000000000000000000000000000000000000000000000000000000000000
  3109. 0000000000000000000000000000000000000000000000000000000000000000
  3110. 000000000000000000000000000000000000000000004B3F35006F5E5100FF00
  3111. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3112. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3113. FF00FF00FF006F5E51004B3F3500000000000000000000000000000000000000
  3114. 0000000000000000000000000000000000000000000000000000000000000000
  3115. 0000000000000000000000000000000000000000000000000000000000000000
  3116. 0000000000000000000000000000000000000000000000000000000000000000
  3117. 0000000000000000000000000000000000000000000000000000000000000000
  3118. 0000000000000000000000000000000000000000000000000000000000000000
  3119. 0000000000000000000000000000000000000000000000000000000000000000
  3120. 0000000000000000000000000000000000000000000000000000000000000000
  3121. 0000000000000000000000000000000000000000000000000000000000000000
  3122. 000000000000000000000000000000000000000000004B3F350073615300FF00
  3123. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3124. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3125. FF00FF00FF00736153004B3F3500000000000000000000000000000000000000
  3126. 0000000000000000000000000000000000000000000000000000000000000000
  3127. 0000000000000000000000000000000000000000000000000000000000000000
  3128. 0000000000000000000000000000000000000000000000000000000000000000
  3129. 0000000000000000000000000000000000000000000000000000000000000000
  3130. 0000000000000000000000000000000000000000000000000000000000000000
  3131. 0000000000000000000000000000000000000000000000000000000000000000
  3132. 0000000000000000000000000000000000000000000000000000000000000000
  3133. 0000000000000000000000000000000000000000000000000000000000000000
  3134. 000000000000000000000000000000000000000000004B3F350076645600FF00
  3135. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3136. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3137. FF00FF00FF00766456004B3F3500000000000000000000000000000000000000
  3138. 0000000000000000000000000000000000000000000000000000000000000000
  3139. 0000000000000000000000000000000000000000000000000000000000000000
  3140. 0000000000000000000000000000000000000000000000000000000000000000
  3141. 0000000000000000000000000000000000000000000000000000000000000000
  3142. 0000000000000000000000000000000000000000000000000000000000000000
  3143. 0000000000000000000000000000000000000000000000000000000000000000
  3144. 0000000000000000000000000000000000000000000000000000000000000000
  3145. 0000000000000000000000000000000000000000000000000000000000000000
  3146. 000000000000000000000000000000000000000000004B3F350079665800855D
  3147. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3148. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3149. 6700855D6700796658004B3F3500000000000000000000000000000000000000
  3150. 0000000000000000000000000000000000000000000000000000000000000000
  3151. 0000000000000000000000000000000000000000000000000000000000000000
  3152. 0000000000000000000000000000000000000000000000000000000000000000
  3153. 0000000000000000000000000000000000000000000000000000000000000000
  3154. 0000000000000000000000000000000000000000000000000000000000000000
  3155. 0000000000000000000000000000000000000000000000000000000000000000
  3156. 0000000000000000000000000000000000000000000000000000000000000000
  3157. 0000000000000000000000000000000000000000000000000000000000000000
  3158. 00000000000000000000000000000000000000000000726961004F4338004F43
  3159. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3160. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3161. 38004F4338004F43380072696100000000000000000000000000000000000000
  3162. 0000000000000000000000000000000000000000000000000000000000000000
  3163. 0000000000000000000000000000000000000000000000000000000000000000
  3164. 0000000000000000000000000000000000000000000000000000000000000000
  3165. 0000000000000000000000000000000000000000000000000000000000000000
  3166. 0000000000000000000000000000000000000000000000000000000000000000
  3167. 0000000000000000000000000000000000000000000000000000000000000000
  3168. 0000000000000000000000000000000000000000000000000000000000000000
  3169. 0000000000000000000000000000000000000000000000000000000000000000
  3170. 0000000000000000000000000000000000000000000000000000000000000000
  3171. 0000000000000000000000000000000000000000000000000000000000000000
  3172. 0000000000000000000000000000000000000000000000000000000000000000
  3173. 0000000000000000000000000000000000000000000000000000000000000000
  3174. 0000000000000000000000000000000000000000000000000000000000000000
  3175. 0000000000000000000000000000000000000000000000000000000000000000
  3176. 0000000000000000000000000000000000000000000000000000000000000000
  3177. 0000000000000000000000000000000000000000000000000000000000000000
  3178. 0000000000000000000000000000000000000000000000000000000000000000
  3179. 0000000000000000000000000000000000000000000000000000000000000000
  3180. 0000000000000000000000000000000000000000000000000000000000000000
  3181. 0000000000000000000000000000000000000000000000000000000000000000
  3182. 0000000000000000000000000000000000000000000000000000000000000000
  3183. 0000000000000000000000000000000000000000000000000000000000000000
  3184. 0000000000000000000000000000000000000000000000000000000000000000
  3185. 0000000000000000000000000000000000000000000000000000000000000000
  3186. 0000000000000000000000000000000000000000000000000000000000000000
  3187. 0000000000000000000000000000000000000000000000000000000000000000
  3188. 0000000000000000000000000000000000000000000000000000000000000000
  3189. 0000000000000000000000000000000000000000000000000000000000000000
  3190. 0000000000000000000000000000000000000000000000000000000000000000
  3191. 0000000000000000000000000000000000000000000000000000000000000000
  3192. 0000000000000000000000000000000000000000000000000000000000000000
  3193. 0000000000000000000000000000000000000000000000000000000000000000
  3194. 000000000000000000000000000000000000424D3E000000000000003E000000
  3195. 2800000060000000180000000100010000000000200100000000000000000000
  3196. 000000000000000000000000FFFFFF00FFFFFF000000000000000000FC003F00
  3197. 0000000000000000FC003F000000000000000000FC003F000000000000000000
  3198. FC003F000000000000000000FFC3FF0000000000000000008000010000000000
  3199. 0000000080000100000000000000000080000100000000000000000080000100
  3200. 0000000000000000800001000000000000000000800001000000000000000000
  3201. 8000010000000000000000008000010000000000000000008000010000000000
  3202. 0000000080000100000000000000000080000100000000000000000080000100
  3203. 0000000000000000800001000000000000000000800001000000000000000000
  3204. 800001000000000000000000800001000000000000000000FFFFFF0000000000
  3205. 00000000FFFFFF00000000000000000000000000000000000000000000000000
  3206. 000000000000}
  3207. end
  3208. object ColorImageList192: TImageList
  3209. AllocBy = 1
  3210. Height = 32
  3211. Width = 32
  3212. Left = 132
  3213. Top = 337
  3214. Bitmap = {
  3215. 494C0101010060006C0020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3216. 0000000000003600000028000000800000002000000001002000000000000040
  3217. 0000000000000000000000000000000000000000000000000000000000000000
  3218. 0000000000000000000000000000000000000000000000000000000000000000
  3219. 0000000000000000000000000000000000000000000000000000000000000000
  3220. 0000000000000000000000000000000000000000000000000000000000000000
  3221. 0000000000000000000000000000000000000000000000000000000000000000
  3222. 0000000000000000000000000000000000000000000000000000000000000000
  3223. 0000000000000000000000000000000000000000000000000000000000000000
  3224. 0000000000000000000000000000000000000000000000000000000000000000
  3225. 0000000000000000000000000000000000000000000000000000000000000000
  3226. 0000000000000000000000000000000000000000000000000000000000000000
  3227. 0000000000000000000000000000000000000000000000000000000000000000
  3228. 0000000000000000000000000000000000000000000000000000000000000000
  3229. 0000000000000000000000000000000000000000000000000000000000000000
  3230. 0000000000000000000000000000000000000000000000000000000000000000
  3231. 0000000000000000000000000000000000000000000000000000000000000000
  3232. 0000000000000000000000000000000000000000000000000000000000000000
  3233. 0000000000000000000000000000000000000000000000000000000000000000
  3234. 0000000000000000000000000000000000000000000000000000000000000000
  3235. 0000000000000000000000000000000000000000000000000000000000000000
  3236. 0000000000000000000000000000000000000000000000000000000000000000
  3237. 0000000000000000000000000000000000000000000000000000000000000000
  3238. 0000000000000000000000000000000000000000000000000000000000000000
  3239. 0000000000000000000000000000000000000000000000000000000000000000
  3240. 0000000000000000000000000000000000000000000000000000000000000000
  3241. 0000000000000000000000000000000000000000000000000000000000000000
  3242. 0000000000000000000000000000000000000000000000000000000000000000
  3243. 0000000000000000000000000000000000000000000000000000000000000000
  3244. 0000000000000000000000000000000000000000000000000000000000000000
  3245. 0000000000000000000000000000000000000000000000000000000000000000
  3246. 0000000000000000000000000000000000000000000000000000000000000000
  3247. 0000000000000000000000000000000000000000000000000000000000000000
  3248. 0000000000000000000000000000000000000000000000000000000000000000
  3249. 0000000000000000000000000000000000000000000000000000000000000000
  3250. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3251. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3252. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3253. 0000000000000000000000000000000000000000000000000000000000000000
  3254. 0000000000000000000000000000000000000000000000000000000000000000
  3255. 0000000000000000000000000000000000000000000000000000000000000000
  3256. 0000000000000000000000000000000000000000000000000000000000000000
  3257. 0000000000000000000000000000000000000000000000000000000000000000
  3258. 0000000000000000000000000000000000000000000000000000000000000000
  3259. 0000000000000000000000000000000000000000000000000000000000000000
  3260. 0000000000000000000000000000000000000000000000000000000000000000
  3261. 0000000000000000000000000000000000000000000000000000000000000000
  3262. 0000000000000000000000000000000000000000000000000000000000000000
  3263. 0000000000000000000000000000000000000000000000000000000000000000
  3264. 0000000000000000000000000000000000000000000000000000000000000000
  3265. 0000000000000000000000000000000000000000000000000000000000000000
  3266. 0000000000000000000000000000000000004B3F350099816F0099816F009981
  3267. 6F0099816F0099816F0099816F0099816F0099816F0099816F0099816F009981
  3268. 6F0099816F0099816F0099816F004B3F35000000000000000000000000000000
  3269. 0000000000000000000000000000000000000000000000000000000000000000
  3270. 0000000000000000000000000000000000000000000000000000000000000000
  3271. 0000000000000000000000000000000000000000000000000000000000000000
  3272. 0000000000000000000000000000000000000000000000000000000000000000
  3273. 0000000000000000000000000000000000000000000000000000000000000000
  3274. 0000000000000000000000000000000000000000000000000000000000000000
  3275. 0000000000000000000000000000000000000000000000000000000000000000
  3276. 0000000000000000000000000000000000000000000000000000000000000000
  3277. 0000000000000000000000000000000000000000000000000000000000000000
  3278. 0000000000000000000000000000000000000000000000000000000000000000
  3279. 0000000000000000000000000000000000000000000000000000000000000000
  3280. 0000000000000000000000000000000000000000000000000000000000000000
  3281. 0000000000000000000000000000000000000000000000000000000000000000
  3282. 0000000000000000000000000000000000004B3F350073605200736052007360
  3283. 5200736052004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35007360
  3284. 52007360520073605200736052004B3F35000000000000000000000000000000
  3285. 0000000000000000000000000000000000000000000000000000000000000000
  3286. 0000000000000000000000000000000000000000000000000000000000000000
  3287. 0000000000000000000000000000000000000000000000000000000000000000
  3288. 0000000000000000000000000000000000000000000000000000000000000000
  3289. 0000000000000000000000000000000000000000000000000000000000000000
  3290. 0000000000000000000000000000000000000000000000000000000000000000
  3291. 0000000000000000000000000000000000000000000000000000000000000000
  3292. 0000000000000000000000000000000000000000000000000000000000000000
  3293. 0000000000000000000000000000000000000000000000000000000000000000
  3294. 0000000000000000000000000000000000000000000000000000000000000000
  3295. 0000000000000000000000000000000000000000000000000000000000000000
  3296. 0000000000000000000000000000000000000000000000000000000000000000
  3297. 0000000000000000000000000000000000000000000000000000000000000000
  3298. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3299. 35004B3F3500453A3100453A3100453A3100453A3100453A3100453A31004B3F
  3300. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3301. 0000000000000000000000000000000000000000000000000000000000000000
  3302. 0000000000000000000000000000000000000000000000000000000000000000
  3303. 0000000000000000000000000000000000000000000000000000000000000000
  3304. 0000000000000000000000000000000000000000000000000000000000000000
  3305. 0000000000000000000000000000000000000000000000000000000000000000
  3306. 0000000000000000000000000000000000000000000000000000000000000000
  3307. 0000000000000000000000000000000000000000000000000000000000000000
  3308. 0000000000000000000000000000000000000000000000000000000000000000
  3309. 0000000000000000000000000000000000000000000000000000000000000000
  3310. 0000000000000000000000000000000000000000000000000000000000000000
  3311. 0000000000000000000000000000000000000000000000000000000000000000
  3312. 0000000000000000000000000000000000000000000000000000000000000000
  3313. 0000000000000000000000000000000000000000000000000000000000000000
  3314. 0000000000000000000000000000000000000000000000000000000000000000
  3315. 0000000000003930280039302800393028003930280039302800393028000000
  3316. 0000000000000000000000000000000000000000000000000000000000000000
  3317. 0000000000000000000000000000000000000000000000000000000000000000
  3318. 0000000000000000000000000000000000000000000000000000000000000000
  3319. 0000000000000000000000000000000000000000000000000000000000000000
  3320. 0000000000000000000000000000000000000000000000000000000000000000
  3321. 0000000000000000000000000000000000000000000000000000000000000000
  3322. 0000000000000000000000000000000000000000000000000000000000000000
  3323. 0000000000000000000000000000000000000000000000000000000000000000
  3324. 0000000000000000000000000000000000000000000000000000000000000000
  3325. 0000000000000000000000000000000000000000000000000000000000000000
  3326. 0000000000000000000000000000000000000000000000000000000000000000
  3327. 0000000000000000000000000000000000000000000000000000000000000000
  3328. 0000000000000000000000000000000000000000000000000000000000000000
  3329. 0000000000000000000000000000000000000000000000000000000000000000
  3330. 0000000000000000000000000000000000000000000000000000000000000000
  3331. 0000000000002D2620002D2620002D2620002D2620002D2620002D2620000000
  3332. 0000000000000000000000000000000000000000000000000000000000000000
  3333. 0000000000000000000000000000000000000000000000000000000000000000
  3334. 0000000000000000000000000000000000000000000000000000000000000000
  3335. 0000000000000000000000000000000000000000000000000000000000000000
  3336. 0000000000000000000000000000000000000000000000000000000000000000
  3337. 0000000000000000000000000000000000000000000000000000000000000000
  3338. 0000000000000000000000000000000000000000000000000000000000000000
  3339. 0000000000000000000000000000000000000000000000000000000000000000
  3340. 0000000000000000000000000000000000000000000000000000000000000000
  3341. 0000000000000000000000000000000000000000000000000000000000000000
  3342. 0000000000000000000000000000000000000000000000000000000000000000
  3343. 0000000000000000000000000000000000000000000000000000000000000000
  3344. 0000000000000000000000000000000000000000000000000000000000000000
  3345. 00000000000000000000000000000000000000000000000000008C857E004C40
  3346. 36004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3347. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3348. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3349. 35004C4036008F88810000000000000000000000000000000000000000000000
  3350. 0000000000000000000000000000000000000000000000000000000000000000
  3351. 0000000000000000000000000000000000000000000000000000000000000000
  3352. 0000000000000000000000000000000000000000000000000000000000000000
  3353. 0000000000000000000000000000000000000000000000000000000000000000
  3354. 0000000000000000000000000000000000000000000000000000000000000000
  3355. 0000000000000000000000000000000000000000000000000000000000000000
  3356. 0000000000000000000000000000000000000000000000000000000000000000
  3357. 0000000000000000000000000000000000000000000000000000000000000000
  3358. 0000000000000000000000000000000000000000000000000000000000000000
  3359. 0000000000000000000000000000000000000000000000000000000000000000
  3360. 0000000000000000000000000000000000000000000000000000000000000000
  3361. 00000000000000000000000000000000000000000000000000004C4036004D41
  3362. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3363. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3364. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3365. 38004D4138004C40360000000000000000000000000000000000000000000000
  3366. 0000000000000000000000000000000000000000000000000000000000000000
  3367. 0000000000000000000000000000000000000000000000000000000000000000
  3368. 0000000000000000000000000000000000000000000000000000000000000000
  3369. 0000000000000000000000000000000000000000000000000000000000000000
  3370. 0000000000000000000000000000000000000000000000000000000000000000
  3371. 0000000000000000000000000000000000000000000000000000000000000000
  3372. 0000000000000000000000000000000000000000000000000000000000000000
  3373. 0000000000000000000000000000000000000000000000000000000000000000
  3374. 0000000000000000000000000000000000000000000000000000000000000000
  3375. 0000000000000000000000000000000000000000000000000000000000000000
  3376. 0000000000000000000000000000000000000000000000000000000000000000
  3377. 00000000000000000000000000000000000000000000000000004B3F35005043
  3378. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3379. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3380. 3A0050433A0050433A0050433A0050433A0050433A0029BD3E0029BD3E0029BD
  3381. 3E0050433A004B3F350000000000000000000000000000000000000000000000
  3382. 0000000000000000000000000000000000000000000000000000000000000000
  3383. 0000000000000000000000000000000000000000000000000000000000000000
  3384. 0000000000000000000000000000000000000000000000000000000000000000
  3385. 0000000000000000000000000000000000000000000000000000000000000000
  3386. 0000000000000000000000000000000000000000000000000000000000000000
  3387. 0000000000000000000000000000000000000000000000000000000000000000
  3388. 0000000000000000000000000000000000000000000000000000000000000000
  3389. 0000000000000000000000000000000000000000000000000000000000000000
  3390. 0000000000000000000000000000000000000000000000000000000000000000
  3391. 0000000000000000000000000000000000000000000000000000000000000000
  3392. 0000000000000000000000000000000000000000000000000000000000000000
  3393. 00000000000000000000000000000000000000000000000000004B3F35005245
  3394. 3B008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3395. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3396. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3397. 780052453B004B3F350000000000000000000000000000000000000000000000
  3398. 0000000000000000000000000000000000000000000000000000000000000000
  3399. 0000000000000000000000000000000000000000000000000000000000000000
  3400. 0000000000000000000000000000000000000000000000000000000000000000
  3401. 0000000000000000000000000000000000000000000000000000000000000000
  3402. 0000000000000000000000000000000000000000000000000000000000000000
  3403. 0000000000000000000000000000000000000000000000000000000000000000
  3404. 0000000000000000000000000000000000000000000000000000000000000000
  3405. 0000000000000000000000000000000000000000000000000000000000000000
  3406. 0000000000000000000000000000000000000000000000000000000000000000
  3407. 0000000000000000000000000000000000000000000000000000000000000000
  3408. 0000000000000000000000000000000000000000000000000000000000000000
  3409. 00000000000000000000000000000000000000000000000000004B3F35005447
  3410. 3D00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3411. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3412. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3413. FF0054473D004B3F350000000000000000000000000000000000000000000000
  3414. 0000000000000000000000000000000000000000000000000000000000000000
  3415. 0000000000000000000000000000000000000000000000000000000000000000
  3416. 0000000000000000000000000000000000000000000000000000000000000000
  3417. 0000000000000000000000000000000000000000000000000000000000000000
  3418. 0000000000000000000000000000000000000000000000000000000000000000
  3419. 0000000000000000000000000000000000000000000000000000000000000000
  3420. 0000000000000000000000000000000000000000000000000000000000000000
  3421. 0000000000000000000000000000000000000000000000000000000000000000
  3422. 0000000000000000000000000000000000000000000000000000000000000000
  3423. 0000000000000000000000000000000000000000000000000000000000000000
  3424. 0000000000000000000000000000000000000000000000000000000000000000
  3425. 00000000000000000000000000000000000000000000000000004B3F35005749
  3426. 3F00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3427. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3428. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3429. FF0057493F004B3F350000000000000000000000000000000000000000000000
  3430. 0000000000000000000000000000000000000000000000000000000000000000
  3431. 0000000000000000000000000000000000000000000000000000000000000000
  3432. 0000000000000000000000000000000000000000000000000000000000000000
  3433. 0000000000000000000000000000000000000000000000000000000000000000
  3434. 0000000000000000000000000000000000000000000000000000000000000000
  3435. 0000000000000000000000000000000000000000000000000000000000000000
  3436. 0000000000000000000000000000000000000000000000000000000000000000
  3437. 0000000000000000000000000000000000000000000000000000000000000000
  3438. 0000000000000000000000000000000000000000000000000000000000000000
  3439. 0000000000000000000000000000000000000000000000000000000000000000
  3440. 0000000000000000000000000000000000000000000000000000000000000000
  3441. 00000000000000000000000000000000000000000000000000004B3F3500594B
  3442. 4000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3443. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3444. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3445. FF00594B40004B3F350000000000000000000000000000000000000000000000
  3446. 0000000000000000000000000000000000000000000000000000000000000000
  3447. 0000000000000000000000000000000000000000000000000000000000000000
  3448. 0000000000000000000000000000000000000000000000000000000000000000
  3449. 0000000000000000000000000000000000000000000000000000000000000000
  3450. 0000000000000000000000000000000000000000000000000000000000000000
  3451. 0000000000000000000000000000000000000000000000000000000000000000
  3452. 0000000000000000000000000000000000000000000000000000000000000000
  3453. 0000000000000000000000000000000000000000000000000000000000000000
  3454. 0000000000000000000000000000000000000000000000000000000000000000
  3455. 0000000000000000000000000000000000000000000000000000000000000000
  3456. 0000000000000000000000000000000000000000000000000000000000000000
  3457. 00000000000000000000000000000000000000000000000000004B3F35005B4D
  3458. 4200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3459. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3460. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3461. FF005B4D42004B3F350000000000000000000000000000000000000000000000
  3462. 0000000000000000000000000000000000000000000000000000000000000000
  3463. 0000000000000000000000000000000000000000000000000000000000000000
  3464. 0000000000000000000000000000000000000000000000000000000000000000
  3465. 0000000000000000000000000000000000000000000000000000000000000000
  3466. 0000000000000000000000000000000000000000000000000000000000000000
  3467. 0000000000000000000000000000000000000000000000000000000000000000
  3468. 0000000000000000000000000000000000000000000000000000000000000000
  3469. 0000000000000000000000000000000000000000000000000000000000000000
  3470. 0000000000000000000000000000000000000000000000000000000000000000
  3471. 0000000000000000000000000000000000000000000000000000000000000000
  3472. 0000000000000000000000000000000000000000000000000000000000000000
  3473. 00000000000000000000000000000000000000000000000000004B3F35005E4F
  3474. 4400FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3475. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3476. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3477. FF005E4F44004B3F350000000000000000000000000000000000000000000000
  3478. 0000000000000000000000000000000000000000000000000000000000000000
  3479. 0000000000000000000000000000000000000000000000000000000000000000
  3480. 0000000000000000000000000000000000000000000000000000000000000000
  3481. 0000000000000000000000000000000000000000000000000000000000000000
  3482. 0000000000000000000000000000000000000000000000000000000000000000
  3483. 0000000000000000000000000000000000000000000000000000000000000000
  3484. 0000000000000000000000000000000000000000000000000000000000000000
  3485. 0000000000000000000000000000000000000000000000000000000000000000
  3486. 0000000000000000000000000000000000000000000000000000000000000000
  3487. 0000000000000000000000000000000000000000000000000000000000000000
  3488. 0000000000000000000000000000000000000000000000000000000000000000
  3489. 00000000000000000000000000000000000000000000000000004B3F35006051
  3490. 4600FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3491. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3492. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3493. FF00605146004B3F350000000000000000000000000000000000000000000000
  3494. 0000000000000000000000000000000000000000000000000000000000000000
  3495. 0000000000000000000000000000000000000000000000000000000000000000
  3496. 0000000000000000000000000000000000000000000000000000000000000000
  3497. 0000000000000000000000000000000000000000000000000000000000000000
  3498. 0000000000000000000000000000000000000000000000000000000000000000
  3499. 0000000000000000000000000000000000000000000000000000000000000000
  3500. 0000000000000000000000000000000000000000000000000000000000000000
  3501. 0000000000000000000000000000000000000000000000000000000000000000
  3502. 0000000000000000000000000000000000000000000000000000000000000000
  3503. 0000000000000000000000000000000000000000000000000000000000000000
  3504. 0000000000000000000000000000000000000000000000000000000000000000
  3505. 00000000000000000000000000000000000000000000000000004B3F35006253
  3506. 4700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3507. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3508. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3509. FF00625347004B3F350000000000000000000000000000000000000000000000
  3510. 0000000000000000000000000000000000000000000000000000000000000000
  3511. 0000000000000000000000000000000000000000000000000000000000000000
  3512. 0000000000000000000000000000000000000000000000000000000000000000
  3513. 0000000000000000000000000000000000000000000000000000000000000000
  3514. 0000000000000000000000000000000000000000000000000000000000000000
  3515. 0000000000000000000000000000000000000000000000000000000000000000
  3516. 0000000000000000000000000000000000000000000000000000000000000000
  3517. 0000000000000000000000000000000000000000000000000000000000000000
  3518. 0000000000000000000000000000000000000000000000000000000000000000
  3519. 0000000000000000000000000000000000000000000000000000000000000000
  3520. 0000000000000000000000000000000000000000000000000000000000000000
  3521. 00000000000000000000000000000000000000000000000000004B3F35006555
  3522. 4900FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3523. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3524. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3525. FF00655549004B3F350000000000000000000000000000000000000000000000
  3526. 0000000000000000000000000000000000000000000000000000000000000000
  3527. 0000000000000000000000000000000000000000000000000000000000000000
  3528. 0000000000000000000000000000000000000000000000000000000000000000
  3529. 0000000000000000000000000000000000000000000000000000000000000000
  3530. 0000000000000000000000000000000000000000000000000000000000000000
  3531. 0000000000000000000000000000000000000000000000000000000000000000
  3532. 0000000000000000000000000000000000000000000000000000000000000000
  3533. 0000000000000000000000000000000000000000000000000000000000000000
  3534. 0000000000000000000000000000000000000000000000000000000000000000
  3535. 0000000000000000000000000000000000000000000000000000000000000000
  3536. 0000000000000000000000000000000000000000000000000000000000000000
  3537. 00000000000000000000000000000000000000000000000000004B3F35006757
  3538. 4B00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3539. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3540. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3541. FF0067574B004B3F350000000000000000000000000000000000000000000000
  3542. 0000000000000000000000000000000000000000000000000000000000000000
  3543. 0000000000000000000000000000000000000000000000000000000000000000
  3544. 0000000000000000000000000000000000000000000000000000000000000000
  3545. 0000000000000000000000000000000000000000000000000000000000000000
  3546. 0000000000000000000000000000000000000000000000000000000000000000
  3547. 0000000000000000000000000000000000000000000000000000000000000000
  3548. 0000000000000000000000000000000000000000000000000000000000000000
  3549. 0000000000000000000000000000000000000000000000000000000000000000
  3550. 0000000000000000000000000000000000000000000000000000000000000000
  3551. 0000000000000000000000000000000000000000000000000000000000000000
  3552. 0000000000000000000000000000000000000000000000000000000000000000
  3553. 00000000000000000000000000000000000000000000000000004B3F35006A59
  3554. 4C00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3555. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3556. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3557. FF006A594C004B3F350000000000000000000000000000000000000000000000
  3558. 0000000000000000000000000000000000000000000000000000000000000000
  3559. 0000000000000000000000000000000000000000000000000000000000000000
  3560. 0000000000000000000000000000000000000000000000000000000000000000
  3561. 0000000000000000000000000000000000000000000000000000000000000000
  3562. 0000000000000000000000000000000000000000000000000000000000000000
  3563. 0000000000000000000000000000000000000000000000000000000000000000
  3564. 0000000000000000000000000000000000000000000000000000000000000000
  3565. 0000000000000000000000000000000000000000000000000000000000000000
  3566. 0000000000000000000000000000000000000000000000000000000000000000
  3567. 0000000000000000000000000000000000000000000000000000000000000000
  3568. 0000000000000000000000000000000000000000000000000000000000000000
  3569. 00000000000000000000000000000000000000000000000000004B3F35006C5B
  3570. 4E00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3571. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3572. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3573. FF006C5B4E004B3F350000000000000000000000000000000000000000000000
  3574. 0000000000000000000000000000000000000000000000000000000000000000
  3575. 0000000000000000000000000000000000000000000000000000000000000000
  3576. 0000000000000000000000000000000000000000000000000000000000000000
  3577. 0000000000000000000000000000000000000000000000000000000000000000
  3578. 0000000000000000000000000000000000000000000000000000000000000000
  3579. 0000000000000000000000000000000000000000000000000000000000000000
  3580. 0000000000000000000000000000000000000000000000000000000000000000
  3581. 0000000000000000000000000000000000000000000000000000000000000000
  3582. 0000000000000000000000000000000000000000000000000000000000000000
  3583. 0000000000000000000000000000000000000000000000000000000000000000
  3584. 0000000000000000000000000000000000000000000000000000000000000000
  3585. 00000000000000000000000000000000000000000000000000004B3F35006F5D
  3586. 5000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3587. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3588. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3589. FF006F5D50004B3F350000000000000000000000000000000000000000000000
  3590. 0000000000000000000000000000000000000000000000000000000000000000
  3591. 0000000000000000000000000000000000000000000000000000000000000000
  3592. 0000000000000000000000000000000000000000000000000000000000000000
  3593. 0000000000000000000000000000000000000000000000000000000000000000
  3594. 0000000000000000000000000000000000000000000000000000000000000000
  3595. 0000000000000000000000000000000000000000000000000000000000000000
  3596. 0000000000000000000000000000000000000000000000000000000000000000
  3597. 0000000000000000000000000000000000000000000000000000000000000000
  3598. 0000000000000000000000000000000000000000000000000000000000000000
  3599. 0000000000000000000000000000000000000000000000000000000000000000
  3600. 0000000000000000000000000000000000000000000000000000000000000000
  3601. 00000000000000000000000000000000000000000000000000004B3F3500715F
  3602. 5200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3603. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3604. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3605. FF00715F52004B3F350000000000000000000000000000000000000000000000
  3606. 0000000000000000000000000000000000000000000000000000000000000000
  3607. 0000000000000000000000000000000000000000000000000000000000000000
  3608. 0000000000000000000000000000000000000000000000000000000000000000
  3609. 0000000000000000000000000000000000000000000000000000000000000000
  3610. 0000000000000000000000000000000000000000000000000000000000000000
  3611. 0000000000000000000000000000000000000000000000000000000000000000
  3612. 0000000000000000000000000000000000000000000000000000000000000000
  3613. 0000000000000000000000000000000000000000000000000000000000000000
  3614. 0000000000000000000000000000000000000000000000000000000000000000
  3615. 0000000000000000000000000000000000000000000000000000000000000000
  3616. 0000000000000000000000000000000000000000000000000000000000000000
  3617. 00000000000000000000000000000000000000000000000000004B3F35007361
  3618. 5300FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3619. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3620. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3621. FF00736153004B3F350000000000000000000000000000000000000000000000
  3622. 0000000000000000000000000000000000000000000000000000000000000000
  3623. 0000000000000000000000000000000000000000000000000000000000000000
  3624. 0000000000000000000000000000000000000000000000000000000000000000
  3625. 0000000000000000000000000000000000000000000000000000000000000000
  3626. 0000000000000000000000000000000000000000000000000000000000000000
  3627. 0000000000000000000000000000000000000000000000000000000000000000
  3628. 0000000000000000000000000000000000000000000000000000000000000000
  3629. 0000000000000000000000000000000000000000000000000000000000000000
  3630. 0000000000000000000000000000000000000000000000000000000000000000
  3631. 0000000000000000000000000000000000000000000000000000000000000000
  3632. 0000000000000000000000000000000000000000000000000000000000000000
  3633. 00000000000000000000000000000000000000000000000000004B3F35007563
  3634. 5500FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3635. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3636. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3637. FF00756355004B3F350000000000000000000000000000000000000000000000
  3638. 0000000000000000000000000000000000000000000000000000000000000000
  3639. 0000000000000000000000000000000000000000000000000000000000000000
  3640. 0000000000000000000000000000000000000000000000000000000000000000
  3641. 0000000000000000000000000000000000000000000000000000000000000000
  3642. 0000000000000000000000000000000000000000000000000000000000000000
  3643. 0000000000000000000000000000000000000000000000000000000000000000
  3644. 0000000000000000000000000000000000000000000000000000000000000000
  3645. 0000000000000000000000000000000000000000000000000000000000000000
  3646. 0000000000000000000000000000000000000000000000000000000000000000
  3647. 0000000000000000000000000000000000000000000000000000000000000000
  3648. 0000000000000000000000000000000000000000000000000000000000000000
  3649. 00000000000000000000000000000000000000000000000000004B3F35007865
  3650. 5700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3651. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3652. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3653. FF00786557004B3F350000000000000000000000000000000000000000000000
  3654. 0000000000000000000000000000000000000000000000000000000000000000
  3655. 0000000000000000000000000000000000000000000000000000000000000000
  3656. 0000000000000000000000000000000000000000000000000000000000000000
  3657. 0000000000000000000000000000000000000000000000000000000000000000
  3658. 0000000000000000000000000000000000000000000000000000000000000000
  3659. 0000000000000000000000000000000000000000000000000000000000000000
  3660. 0000000000000000000000000000000000000000000000000000000000000000
  3661. 0000000000000000000000000000000000000000000000000000000000000000
  3662. 0000000000000000000000000000000000000000000000000000000000000000
  3663. 0000000000000000000000000000000000000000000000000000000000000000
  3664. 0000000000000000000000000000000000000000000000000000000000000000
  3665. 00000000000000000000000000000000000000000000000000004C4036007A67
  3666. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3667. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3668. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3669. 59007A6759004C40360000000000000000000000000000000000000000000000
  3670. 0000000000000000000000000000000000000000000000000000000000000000
  3671. 0000000000000000000000000000000000000000000000000000000000000000
  3672. 0000000000000000000000000000000000000000000000000000000000000000
  3673. 0000000000000000000000000000000000000000000000000000000000000000
  3674. 0000000000000000000000000000000000000000000000000000000000000000
  3675. 0000000000000000000000000000000000000000000000000000000000000000
  3676. 0000000000000000000000000000000000000000000000000000000000000000
  3677. 0000000000000000000000000000000000000000000000000000000000000000
  3678. 0000000000000000000000000000000000000000000000000000000000000000
  3679. 0000000000000000000000000000000000000000000000000000000000000000
  3680. 0000000000000000000000000000000000000000000000000000000000000000
  3681. 00000000000000000000000000000000000000000000000000008B837D004B3F
  3682. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3683. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3684. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3685. 35004C4036008C857E0000000000000000000000000000000000000000000000
  3686. 0000000000000000000000000000000000000000000000000000000000000000
  3687. 0000000000000000000000000000000000000000000000000000000000000000
  3688. 0000000000000000000000000000000000000000000000000000000000000000
  3689. 0000000000000000000000000000000000000000000000000000000000000000
  3690. 0000000000000000000000000000000000000000000000000000000000000000
  3691. 0000000000000000000000000000000000000000000000000000000000000000
  3692. 0000000000000000000000000000000000000000000000000000000000000000
  3693. 0000000000000000000000000000000000000000000000000000000000000000
  3694. 0000000000000000000000000000000000000000000000000000000000000000
  3695. 0000000000000000000000000000000000000000000000000000000000000000
  3696. 0000000000000000000000000000000000000000000000000000000000000000
  3697. 0000000000000000000000000000000000000000000000000000000000000000
  3698. 0000000000000000000000000000000000000000000000000000000000000000
  3699. 0000000000000000000000000000000000000000000000000000000000000000
  3700. 0000000000000000000000000000000000000000000000000000000000000000
  3701. 0000000000000000000000000000000000000000000000000000000000000000
  3702. 0000000000000000000000000000000000000000000000000000000000000000
  3703. 0000000000000000000000000000000000000000000000000000000000000000
  3704. 0000000000000000000000000000000000000000000000000000000000000000
  3705. 0000000000000000000000000000000000000000000000000000000000000000
  3706. 0000000000000000000000000000000000000000000000000000000000000000
  3707. 0000000000000000000000000000000000000000000000000000000000000000
  3708. 0000000000000000000000000000000000000000000000000000000000000000
  3709. 0000000000000000000000000000000000000000000000000000000000000000
  3710. 0000000000000000000000000000000000000000000000000000000000000000
  3711. 0000000000000000000000000000000000000000000000000000000000000000
  3712. 0000000000000000000000000000000000000000000000000000000000000000
  3713. 0000000000000000000000000000000000000000000000000000000000000000
  3714. 0000000000000000000000000000000000000000000000000000000000000000
  3715. 0000000000000000000000000000000000000000000000000000000000000000
  3716. 0000000000000000000000000000000000000000000000000000000000000000
  3717. 0000000000000000000000000000000000000000000000000000000000000000
  3718. 0000000000000000000000000000000000000000000000000000000000000000
  3719. 0000000000000000000000000000000000000000000000000000000000000000
  3720. 0000000000000000000000000000000000000000000000000000000000000000
  3721. 0000000000000000000000000000000000000000000000000000000000000000
  3722. 0000000000000000000000000000000000000000000000000000000000000000
  3723. 0000000000000000000000000000000000000000000000000000000000000000
  3724. 0000000000000000000000000000000000000000000000000000000000000000
  3725. 0000000000000000000000000000000000000000000000000000000000000000
  3726. 0000000000000000000000000000000000000000000000000000000000000000
  3727. 0000000000000000000000000000000000000000000000000000000000000000
  3728. 0000000000000000000000000000000000000000000000000000000000000000
  3729. 000000000000000000000000000000000000424D3E000000000000003E000000
  3730. 2800000080000000200000000100010000000000000200000000000000000000
  3731. 000000000000000000000000FFFFFF00FFFFFFFF000000000000000000000000
  3732. FFFFFFFF000000000000000000000000FF0000FF000000000000000000000000
  3733. FF0000FF000000000000000000000000FF0000FF000000000000000000000000
  3734. FF0000FF000000000000000000000000FFF81FFF000000000000000000000000
  3735. FFF81FFF000000000000000000000000C0000003000000000000000000000000
  3736. C0000003000000000000000000000000C0000003000000000000000000000000
  3737. C0000003000000000000000000000000C0000003000000000000000000000000
  3738. C0000003000000000000000000000000C0000003000000000000000000000000
  3739. C0000003000000000000000000000000C0000003000000000000000000000000
  3740. C0000003000000000000000000000000C0000003000000000000000000000000
  3741. C0000003000000000000000000000000C0000003000000000000000000000000
  3742. C0000003000000000000000000000000C0000003000000000000000000000000
  3743. C0000003000000000000000000000000C0000003000000000000000000000000
  3744. C0000003000000000000000000000000C0000003000000000000000000000000
  3745. C0000003000000000000000000000000C0000003000000000000000000000000
  3746. C0000003000000000000000000000000FFFFFFFF000000000000000000000000
  3747. FFFFFFFF00000000000000000000000000000000000000000000000000000000
  3748. 000000000000}
  3749. end
  3750. object PrivateKeyMenu: TPopupMenu
  3751. Left = 128
  3752. Top = 384
  3753. object PrivateKeyGenerateItem: TMenuItem
  3754. Caption = '&Generate New Key Pair with PuTTYgen...'
  3755. OnClick = PrivateKeyGenerateItemClick
  3756. end
  3757. object PrivateKeyUploadItem: TMenuItem
  3758. Caption = '&Install Public Key into Server...'
  3759. OnClick = PrivateKeyUploadItemClick
  3760. end
  3761. end
  3762. end