1
0

SiteAdvanced.dfm 165 KB

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