SiteAdvanced.dfm 164 KB

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