ProjectPropertiesFrm.dfm 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. object ProjectPropertiesForm: TProjectPropertiesForm
  2. Left = 663
  3. Top = 261
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsSingle
  6. Caption = #39033#30446#23646#24615
  7. ClientHeight = 357
  8. ClientWidth = 530
  9. Color = clBtnFace
  10. Font.Charset = ANSI_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -12
  13. Font.Name = #23435#20307
  14. Font.Style = []
  15. OldCreateOrder = False
  16. DesignSize = (
  17. 530
  18. 357)
  19. PixelsPerInch = 96
  20. TextHeight = 12
  21. object btnOk: TButton
  22. Left = 361
  23. Top = 329
  24. Width = 75
  25. Height = 21
  26. Anchors = [akRight, akBottom]
  27. Caption = #30830' '#23450
  28. TabOrder = 0
  29. OnClick = btnOkClick
  30. end
  31. object btnCancel: TButton
  32. Left = 448
  33. Top = 329
  34. Width = 75
  35. Height = 21
  36. Anchors = [akRight, akBottom]
  37. Caption = #21462' '#28040
  38. ModalResult = 2
  39. TabOrder = 1
  40. end
  41. object pnlTop: TPanel
  42. Left = 0
  43. Top = 0
  44. Width = 530
  45. Height = 63
  46. Align = alTop
  47. BevelOuter = bvNone
  48. TabOrder = 2
  49. object tbTop: TToolBar
  50. Left = 0
  51. Top = 6
  52. Width = 530
  53. Height = 51
  54. AutoSize = True
  55. ButtonHeight = 51
  56. ButtonWidth = 67
  57. EdgeInner = esNone
  58. EdgeOuter = esNone
  59. Flat = True
  60. Images = Images
  61. ShowCaptions = True
  62. TabOrder = 0
  63. object tobtnBase: TToolButton
  64. Left = 0
  65. Top = 0
  66. Caption = #22522#30784#23646#24615
  67. Down = True
  68. ImageIndex = 0
  69. Style = tbsCheck
  70. OnClick = tobtnBaseClick
  71. end
  72. object tobtnStaff: TToolButton
  73. Tag = 1
  74. Left = 67
  75. Top = 0
  76. Caption = #35745#37327#21442#19982#20154
  77. ImageIndex = 1
  78. Style = tbsCheck
  79. OnClick = tobtnBaseClick
  80. end
  81. object tobtnView: TToolButton
  82. Tag = 2
  83. Left = 134
  84. Top = 0
  85. Caption = #26174#31034#35774#32622
  86. ImageIndex = 2
  87. Style = tbsCheck
  88. OnClick = tobtnBaseClick
  89. end
  90. end
  91. object pnlBlank: TPanel
  92. Left = 0
  93. Top = 0
  94. Width = 530
  95. Height = 6
  96. Align = alTop
  97. BevelOuter = bvNone
  98. TabOrder = 1
  99. end
  100. object jcbPhase: TJimComboBox
  101. Left = 379
  102. Top = 38
  103. Width = 145
  104. Height = 21
  105. AutoSize = False
  106. ButtonWidth = 17
  107. DropDownBox.Width = 145
  108. DropDownBox.Height = 150
  109. DropDownBox.ShowToolBar = False
  110. Style = cbsOfficeXP
  111. ItemIndex = -1
  112. ItemHeight = 14
  113. Visible = False
  114. OnChanged = jcbPhaseChanged
  115. end
  116. end
  117. object jpsProperties: TJimPages
  118. Left = 0
  119. Top = 63
  120. Width = 530
  121. Height = 255
  122. ActivePage = jpsPropertiesView
  123. ActivePageIndex = 2
  124. Align = alTop
  125. Caption = 'jpsProperties'
  126. object jpsPropertiesBase: TJimPage
  127. Left = 0
  128. Top = 0
  129. Width = 530
  130. Height = 255
  131. TabName = 'Base'
  132. Caption = 'Base'
  133. DesignSize = (
  134. 530
  135. 255)
  136. object pnlBase: TPanel
  137. Left = 0
  138. Top = 3
  139. Width = 529
  140. Height = 247
  141. Anchors = [akLeft, akTop, akRight]
  142. BevelOuter = bvNone
  143. TabOrder = 0
  144. object tbContents: TToolBar
  145. Left = 0
  146. Top = 0
  147. Width = 91
  148. Height = 247
  149. Align = alLeft
  150. AutoSize = True
  151. ButtonHeight = 20
  152. ButtonWidth = 91
  153. Color = clBtnFace
  154. Ctl3D = False
  155. EdgeBorders = []
  156. Flat = True
  157. ParentColor = False
  158. ShowCaptions = True
  159. TabOrder = 1
  160. object tobtnDealInfo: TToolButton
  161. Tag = 1
  162. Left = 0
  163. Top = 0
  164. Caption = ' '#21512#21516#20449#24687' '
  165. Down = True
  166. ImageIndex = 0
  167. Wrap = True
  168. Style = tbsCheck
  169. OnClick = tobtnDealInfoClick
  170. end
  171. object tobtnTechParameters: TToolButton
  172. Tag = 2
  173. Left = 0
  174. Top = 20
  175. Caption = #25216#26415#21442#25968
  176. ImageIndex = 1
  177. Wrap = True
  178. Style = tbsCheck
  179. OnClick = tobtnDealInfoClick
  180. end
  181. object tobtnDealPayment: TToolButton
  182. Tag = 3
  183. Left = 0
  184. Top = 40
  185. Caption = #21512#21516#25903#20184
  186. ImageIndex = 4
  187. Wrap = True
  188. Style = tbsCheck
  189. OnClick = tobtnDealInfoClick
  190. end
  191. object tobtnSafe: TToolButton
  192. Tag = 4
  193. Left = 0
  194. Top = 60
  195. Caption = #25991#20214#23433#20840
  196. ImageIndex = 5
  197. Wrap = True
  198. Style = tbsCheck
  199. OnClick = tobtnDealInfoClick
  200. end
  201. object tobtnCalcParameters: TToolButton
  202. Tag = 5
  203. Left = 0
  204. Top = 80
  205. Caption = #35745#31639#21442#25968
  206. ImageIndex = 6
  207. Wrap = True
  208. Style = tbsCheck
  209. OnClick = tobtnDealInfoClick
  210. end
  211. object tobtnDateTime: TToolButton
  212. Tag = 6
  213. Left = 0
  214. Top = 100
  215. Caption = #26102#38388#21442#25968
  216. ImageIndex = 7
  217. Style = tbsCheck
  218. OnClick = tobtnDealInfoClick
  219. end
  220. end
  221. object msbBase: TMScrollBox
  222. Left = 91
  223. Top = 0
  224. Width = 438
  225. Height = 247
  226. HorzScrollBar.Range = 401
  227. VertScrollBar.Range = 1348
  228. Align = alClient
  229. AutoScroll = False
  230. BevelInner = bvNone
  231. BevelOuter = bvNone
  232. BorderStyle = bsNone
  233. Color = clBtnFace
  234. Ctl3D = False
  235. ParentColor = False
  236. ParentCtl3D = False
  237. TabOrder = 0
  238. OnMouseWheel = msbBaseMouseWheel
  239. OnMouseWheelDown = msbBaseMouseWheelDown
  240. OnMouseWheelUp = msbBaseMouseWheelUp
  241. OnVScroll = msbBaseVScroll
  242. object lblDealInfo: TLabel
  243. Left = 7
  244. Top = 4
  245. Width = 48
  246. Height = 12
  247. Caption = #21512#21516#20449#24687
  248. Font.Charset = ANSI_CHARSET
  249. Font.Color = clBlue
  250. Font.Height = -12
  251. Font.Name = #23435#20307
  252. Font.Style = []
  253. ParentFont = False
  254. end
  255. object lblBuilder: TLabel
  256. Left = 34
  257. Top = 108
  258. Width = 60
  259. Height = 12
  260. Caption = #24314#35774#21333#20301#65306
  261. end
  262. object lblConstructor: TLabel
  263. Left = 34
  264. Top = 192
  265. Width = 66
  266. Height = 12
  267. Caption = #25215#21253#21333#20301'1'#65306
  268. end
  269. object lblSupervisor: TLabel
  270. Left = 34
  271. Top = 360
  272. Width = 66
  273. Height = 12
  274. Caption = #30417#29702#21333#20301'1'#65306
  275. end
  276. object lblTechParameters: TLabel
  277. Left = 7
  278. Top = 539
  279. Width = 48
  280. Height = 12
  281. Caption = #25216#26415#21442#25968
  282. Font.Charset = ANSI_CHARSET
  283. Font.Color = clBlue
  284. Font.Height = -12
  285. Font.Name = #23435#20307
  286. Font.Style = []
  287. ParentFont = False
  288. end
  289. object lblLoadLevel: TLabel
  290. Left = 34
  291. Top = 561
  292. Width = 60
  293. Height = 12
  294. Caption = #20844#36335#31561#32423#65306
  295. end
  296. object lblDealPayTitle: TLabel
  297. Left = 7
  298. Top = 699
  299. Width = 48
  300. Height = 12
  301. Caption = #21512#21516#25903#20184
  302. Font.Charset = ANSI_CHARSET
  303. Font.Color = clBlue
  304. Font.Height = -12
  305. Font.Name = #23435#20307
  306. Font.Style = []
  307. ParentFont = False
  308. end
  309. object lblSafeTitel: TLabel
  310. Left = 7
  311. Top = 803
  312. Width = 48
  313. Height = 12
  314. Caption = #25991#20214#23433#20840
  315. Font.Charset = ANSI_CHARSET
  316. Font.Color = clBlue
  317. Font.Height = -12
  318. Font.Name = #23435#20307
  319. Font.Style = []
  320. ParentFont = False
  321. end
  322. object lblUnlockPassword: TLabel
  323. Left = 36
  324. Top = 827
  325. Width = 84
  326. Height = 12
  327. Caption = #35299#38145#33410#28857#23494#30721#65306
  328. end
  329. object lblPasswordHint: TLabel
  330. Left = 128
  331. Top = 828
  332. Width = 90
  333. Height = 12
  334. Caption = 'lblPasswordHint'
  335. Font.Charset = ANSI_CHARSET
  336. Font.Color = clRed
  337. Font.Height = -12
  338. Font.Name = #23435#20307
  339. Font.Style = []
  340. ParentFont = False
  341. Visible = False
  342. end
  343. object lblCalcParametersTitel: TLabel
  344. Left = 7
  345. Top = 931
  346. Width = 48
  347. Height = 12
  348. Caption = #35745#31639#21442#25968
  349. Font.Charset = ANSI_CHARSET
  350. Font.Color = clBlue
  351. Font.Height = -12
  352. Font.Name = #23435#20307
  353. Font.Style = []
  354. ParentFont = False
  355. end
  356. object lblDigit: TLabel
  357. Left = 36
  358. Top = 955
  359. Width = 84
  360. Height = 12
  361. Caption = #20445#30041#23567#25968#20301#25968#65306
  362. end
  363. object lblDateTime: TLabel
  364. Left = 7
  365. Top = 1104
  366. Width = 48
  367. Height = 12
  368. Caption = #26102#38388#21442#25968
  369. Font.Charset = ANSI_CHARSET
  370. Font.Color = clBlue
  371. Font.Height = -12
  372. Font.Name = #23435#20307
  373. Font.Style = []
  374. ParentFont = False
  375. end
  376. object lblBaseline: TLabel
  377. Left = 36
  378. Top = 1127
  379. Width = 60
  380. Height = 12
  381. Caption = #36215#22987#26085#26399#65306
  382. end
  383. object lblDeadline: TLabel
  384. Left = 36
  385. Top = 1152
  386. Width = 60
  387. Height = 12
  388. Caption = #25130#27490#26085#26399#65306
  389. end
  390. object lblDateHint: TLabel
  391. Left = 36
  392. Top = 1174
  393. Width = 192
  394. Height = 12
  395. Caption = #24403#21069#25130#27490#26085#26399' '#65308' '#36215#22987#26085#26399#65292#35831#26680#26597
  396. Font.Charset = ANSI_CHARSET
  397. Font.Color = clRed
  398. Font.Height = -12
  399. Font.Name = #23435#20307
  400. Font.Style = []
  401. ParentFont = False
  402. end
  403. object lblSupervisor_2: TLabel
  404. Left = 34
  405. Top = 444
  406. Width = 66
  407. Height = 12
  408. Caption = #30417#29702#21333#20301'2'#65306
  409. end
  410. object lblConstructor_2: TLabel
  411. Left = 34
  412. Top = 274
  413. Width = 66
  414. Height = 12
  415. Caption = #25215#21253#21333#20301'2'#65306
  416. end
  417. object pnlDealInfoBar: TPanel
  418. Left = 62
  419. Top = 9
  420. Width = 339
  421. Height = 2
  422. BevelOuter = bvLowered
  423. TabOrder = 0
  424. end
  425. object leProjectName: TLabeledEdit
  426. Left = 33
  427. Top = 36
  428. Width = 330
  429. Height = 18
  430. Ctl3D = False
  431. EditLabel.Width = 84
  432. EditLabel.Height = 12
  433. EditLabel.Caption = #24314#35774#39033#30446#21517#31216#65306
  434. ParentCtl3D = False
  435. TabOrder = 1
  436. end
  437. object leDealName: TLabeledEdit
  438. Left = 33
  439. Top = 76
  440. Width = 152
  441. Height = 18
  442. Ctl3D = False
  443. EditLabel.Width = 60
  444. EditLabel.Height = 12
  445. EditLabel.Caption = #21512#21516#21517#31216#65306
  446. ParentCtl3D = False
  447. TabOrder = 2
  448. end
  449. object leDealIndex: TLabeledEdit
  450. Left = 195
  451. Top = 76
  452. Width = 80
  453. Height = 18
  454. Ctl3D = False
  455. EditLabel.Width = 60
  456. EditLabel.Height = 12
  457. EditLabel.Caption = #21512#21516#32534#21495#65306
  458. ParentCtl3D = False
  459. TabOrder = 3
  460. end
  461. object leBName: TLabeledEdit
  462. Left = 101
  463. Top = 123
  464. Width = 261
  465. Height = 18
  466. Ctl3D = False
  467. EditLabel.Width = 60
  468. EditLabel.Height = 12
  469. EditLabel.Caption = #21333#20301#21517#31216#65306
  470. ParentCtl3D = False
  471. TabOrder = 4
  472. end
  473. object leBLegal: TLabeledEdit
  474. Left = 101
  475. Top = 164
  476. Width = 137
  477. Height = 18
  478. Ctl3D = False
  479. EditLabel.Width = 60
  480. EditLabel.Height = 12
  481. EditLabel.Caption = #27861#20154#20195#34920#65306
  482. ParentCtl3D = False
  483. TabOrder = 5
  484. end
  485. object leBDate: TLabeledEdit
  486. Left = 245
  487. Top = 164
  488. Width = 119
  489. Height = 18
  490. Ctl3D = False
  491. EditLabel.Width = 60
  492. EditLabel.Height = 12
  493. EditLabel.Caption = #31614#35746#26085#26399#65306
  494. ParentCtl3D = False
  495. TabOrder = 6
  496. end
  497. object leCName: TLabeledEdit
  498. Left = 101
  499. Top = 207
  500. Width = 262
  501. Height = 18
  502. Ctl3D = False
  503. EditLabel.Width = 60
  504. EditLabel.Height = 12
  505. EditLabel.Caption = #21333#20301#21517#31216#65306
  506. ParentCtl3D = False
  507. TabOrder = 7
  508. end
  509. object leCLegal: TLabeledEdit
  510. Left = 101
  511. Top = 248
  512. Width = 137
  513. Height = 18
  514. Ctl3D = False
  515. EditLabel.Width = 60
  516. EditLabel.Height = 12
  517. EditLabel.Caption = #27861#20154#20195#34920#65306
  518. ParentCtl3D = False
  519. TabOrder = 8
  520. end
  521. object leCDate: TLabeledEdit
  522. Left = 245
  523. Top = 248
  524. Width = 119
  525. Height = 18
  526. Ctl3D = False
  527. EditLabel.Width = 60
  528. EditLabel.Height = 12
  529. EditLabel.Caption = #31614#35746#26085#26399#65306
  530. ParentCtl3D = False
  531. TabOrder = 9
  532. end
  533. object leSName: TLabeledEdit
  534. Left = 101
  535. Top = 375
  536. Width = 262
  537. Height = 18
  538. Ctl3D = False
  539. EditLabel.Width = 60
  540. EditLabel.Height = 12
  541. EditLabel.Caption = #21333#20301#21517#31216#65306
  542. ParentCtl3D = False
  543. TabOrder = 10
  544. end
  545. object leSLegal: TLabeledEdit
  546. Left = 101
  547. Top = 415
  548. Width = 137
  549. Height = 18
  550. Ctl3D = False
  551. EditLabel.Width = 60
  552. EditLabel.Height = 12
  553. EditLabel.Caption = #27861#20154#20195#34920#65306
  554. ParentCtl3D = False
  555. TabOrder = 11
  556. end
  557. object leSDate: TLabeledEdit
  558. Left = 245
  559. Top = 415
  560. Width = 119
  561. Height = 18
  562. Ctl3D = False
  563. EditLabel.Width = 60
  564. EditLabel.Height = 12
  565. EditLabel.Caption = #31614#35746#26085#26399#65306
  566. ParentCtl3D = False
  567. TabOrder = 12
  568. end
  569. object pnlTechParametersBar: TPanel
  570. Left = 62
  571. Top = 544
  572. Width = 339
  573. Height = 2
  574. BevelOuter = bvLowered
  575. TabOrder = 21
  576. end
  577. object leStartPeg: TLabeledEdit
  578. Left = 34
  579. Top = 619
  580. Width = 132
  581. Height = 18
  582. Ctl3D = False
  583. EditLabel.Width = 60
  584. EditLabel.Height = 12
  585. EditLabel.Caption = #36215#28857#26729#21495#65306
  586. ParentCtl3D = False
  587. TabOrder = 14
  588. end
  589. object leEndPeg: TLabeledEdit
  590. Left = 176
  591. Top = 619
  592. Width = 131
  593. Height = 18
  594. Ctl3D = False
  595. EditLabel.Width = 60
  596. EditLabel.Height = 12
  597. EditLabel.Caption = #32456#28857#26729#21495#65306
  598. ParentCtl3D = False
  599. TabOrder = 15
  600. end
  601. object leLength: TLabeledEdit
  602. Left = 34
  603. Top = 659
  604. Width = 132
  605. Height = 18
  606. Ctl3D = False
  607. EditLabel.Width = 72
  608. EditLabel.Height = 12
  609. EditLabel.Caption = #38271#24230#65288'km'#65289#65306
  610. ParentCtl3D = False
  611. TabOrder = 16
  612. end
  613. object leLaneCount: TLabeledEdit
  614. Left = 176
  615. Top = 659
  616. Width = 132
  617. Height = 18
  618. Ctl3D = False
  619. EditLabel.Width = 48
  620. EditLabel.Height = 12
  621. EditLabel.Caption = #36710#36947#25968#65306
  622. ParentCtl3D = False
  623. TabOrder = 17
  624. end
  625. object cbLoadLevel: TComboBox
  626. Left = 34
  627. Top = 578
  628. Width = 132
  629. Height = 20
  630. Ctl3D = False
  631. DropDownCount = 5
  632. ItemHeight = 12
  633. ParentCtl3D = False
  634. TabOrder = 13
  635. Items.Strings = (
  636. #39640#36895#20844#36335
  637. #19968#32423#20844#36335
  638. #20108#32423#20844#36335
  639. #19977#32423#20844#36335
  640. #22235#32423#20844#36335)
  641. end
  642. object pnlDealPayBar: TPanel
  643. Left = 62
  644. Top = 705
  645. Width = 339
  646. Height = 2
  647. BevelOuter = bvLowered
  648. TabOrder = 22
  649. end
  650. object leContractPrice: TLabeledEdit
  651. Left = 133
  652. Top = 720
  653. Width = 117
  654. Height = 18
  655. BiDiMode = bdLeftToRight
  656. Ctl3D = False
  657. EditLabel.Width = 96
  658. EditLabel.Height = 12
  659. EditLabel.BiDiMode = bdLeftToRight
  660. EditLabel.Caption = #31614#32422#21512#21516#20215#65306' '
  661. EditLabel.ParentBiDiMode = False
  662. LabelPosition = lpLeft
  663. ParentBiDiMode = False
  664. ParentCtl3D = False
  665. TabOrder = 18
  666. OnClick = leContractPriceClick
  667. end
  668. object leStartedSubsist: TLabeledEdit
  669. Left = 133
  670. Top = 747
  671. Width = 118
  672. Height = 18
  673. Ctl3D = False
  674. EditLabel.Width = 96
  675. EditLabel.Height = 12
  676. EditLabel.Caption = #31614#32422#24320#24037#39044#20184#27454#65306
  677. LabelPosition = lpLeft
  678. ParentCtl3D = False
  679. TabOrder = 19
  680. OnClick = leContractPriceClick
  681. end
  682. object leMaterialSubsist: TLabeledEdit
  683. Left = 133
  684. Top = 773
  685. Width = 119
  686. Height = 18
  687. Ctl3D = False
  688. EditLabel.Width = 96
  689. EditLabel.Height = 12
  690. EditLabel.Caption = #31614#32422#26448#26009#39044#20184#27454#65306
  691. LabelPosition = lpLeft
  692. ParentCtl3D = False
  693. TabOrder = 20
  694. OnClick = leContractPriceClick
  695. end
  696. object pnlSafeBar: TPanel
  697. Left = 62
  698. Top = 809
  699. Width = 339
  700. Height = 2
  701. BevelOuter = bvLowered
  702. TabOrder = 23
  703. end
  704. object pnlUnlockPassword: TPanel
  705. Left = 40
  706. Top = 841
  707. Width = 361
  708. Height = 85
  709. BevelOuter = bvNone
  710. TabOrder = 24
  711. object pnlOrgPW: TPanel
  712. Left = 0
  713. Top = 0
  714. Width = 361
  715. Height = 28
  716. Align = alTop
  717. BevelOuter = bvNone
  718. TabOrder = 0
  719. object imgOrg: TImage
  720. Left = 213
  721. Top = 9
  722. Width = 16
  723. Height = 16
  724. Picture.Data = {
  725. 055449636F6E0000010001001010000001002000680400001600000028000000
  726. 1000000020000000010020000000000000000000000000000000000000000000
  727. 0000000000000000000000000000000000000000000000000000000000000000
  728. 0000000000000000000000000000000000000000000000000000000000000000
  729. 0000000000000000000000000000000000000000000000000000000000000000
  730. 0000000000000000000000000000000000000000000000000000000000000000
  731. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  732. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  733. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  734. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  735. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  736. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  737. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  738. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  739. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  740. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  741. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  742. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  743. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  744. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  745. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  746. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  747. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  748. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  749. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  750. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  751. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  752. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  753. 0000000000000000000000000000000000000000020518220205192200000000
  754. 0000000000000000000000000205182202051922000000000000000000000000
  755. 0000000000000000000000000000000000000000000000000000000000000000
  756. 0000000000000000000000000000000000000000000000000000000000000000
  757. 0000000000000000000000000000000000000000000000000000000000000000
  758. 0000000000000000000000000000000000000000000000000000000000000000
  759. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  760. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  761. FFFF0000}
  762. Visible = False
  763. end
  764. object leUnlockPassword: TLabeledEdit
  765. Left = 89
  766. Top = 8
  767. Width = 117
  768. Height = 18
  769. Hint = #24403#21069#23494#30721#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  770. BiDiMode = bdLeftToRight
  771. Ctl3D = False
  772. EditLabel.Width = 66
  773. EditLabel.Height = 12
  774. EditLabel.BiDiMode = bdLeftToRight
  775. EditLabel.Caption = #24403#21069#23494#30721#65306' '
  776. EditLabel.ParentBiDiMode = False
  777. LabelPosition = lpLeft
  778. MaxLength = 16
  779. ParentBiDiMode = False
  780. ParentCtl3D = False
  781. PasswordChar = '*'
  782. TabOrder = 0
  783. OnExit = leUnlockPasswordExit
  784. OnKeyPress = leUnlockPasswordKeyPress
  785. end
  786. end
  787. object pnlNewPW: TPanel
  788. Left = 0
  789. Top = 28
  790. Width = 361
  791. Height = 57
  792. Align = alClient
  793. BevelOuter = bvNone
  794. TabOrder = 1
  795. object imgNew: TImage
  796. Left = 213
  797. Top = 8
  798. Width = 16
  799. Height = 16
  800. Picture.Data = {
  801. 055449636F6E0000010001001010000001002000680400001600000028000000
  802. 1000000020000000010020000000000000000000000000000000000000000000
  803. 0000000000000000000000000000000000000000000000000000000000000000
  804. 0000000000000000000000000000000000000000000000000000000000000000
  805. 0000000000000000000000000000000000000000000000000000000000000000
  806. 0000000000000000000000000000000000000000000000000000000000000000
  807. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  808. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  809. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  810. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  811. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  812. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  813. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  814. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  815. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  816. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  817. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  818. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  819. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  820. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  821. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  822. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  823. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  824. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  825. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  826. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  827. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  828. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  829. 0000000000000000000000000000000000000000020518220205192200000000
  830. 0000000000000000000000000205182202051922000000000000000000000000
  831. 0000000000000000000000000000000000000000000000000000000000000000
  832. 0000000000000000000000000000000000000000000000000000000000000000
  833. 0000000000000000000000000000000000000000000000000000000000000000
  834. 0000000000000000000000000000000000000000000000000000000000000000
  835. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  836. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  837. FFFF0000}
  838. Visible = False
  839. end
  840. object imgNewAgain: TImage
  841. Left = 213
  842. Top = 35
  843. Width = 16
  844. Height = 16
  845. Picture.Data = {
  846. 055449636F6E0000010001001010000001002000680400001600000028000000
  847. 1000000020000000010020000000000000000000000000000000000000000000
  848. 0000000000000000000000000000000000000000000000000000000000000000
  849. 0000000000000000000000000000000000000000000000000000000000000000
  850. 0000000000000000000000000000000000000000000000000000000000000000
  851. 0000000000000000000000000000000000000000000000000000000000000000
  852. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  853. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  854. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  855. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  856. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  857. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  858. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  859. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  860. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  861. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  862. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  863. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  864. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  865. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  866. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  867. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  868. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  869. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  870. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  871. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  872. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  873. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  874. 0000000000000000000000000000000000000000020518220205192200000000
  875. 0000000000000000000000000205182202051922000000000000000000000000
  876. 0000000000000000000000000000000000000000000000000000000000000000
  877. 0000000000000000000000000000000000000000000000000000000000000000
  878. 0000000000000000000000000000000000000000000000000000000000000000
  879. 0000000000000000000000000000000000000000000000000000000000000000
  880. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  881. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  882. FFFF0000}
  883. Visible = False
  884. end
  885. object leNewUnlockPasswordAgain: TLabeledEdit
  886. Left = 89
  887. Top = 34
  888. Width = 117
  889. Height = 18
  890. Hint = #20004#27425#36755#20837#30340#26032#23494#30721#24517#39035#30456#21516
  891. BiDiMode = bdLeftToRight
  892. Ctl3D = False
  893. EditLabel.Width = 78
  894. EditLabel.Height = 12
  895. EditLabel.BiDiMode = bdLeftToRight
  896. EditLabel.Caption = #30830#35748#26032#23494#30721#65306' '
  897. EditLabel.ParentBiDiMode = False
  898. LabelPosition = lpLeft
  899. MaxLength = 16
  900. ParentBiDiMode = False
  901. ParentCtl3D = False
  902. PasswordChar = '*'
  903. ReadOnly = True
  904. TabOrder = 0
  905. OnExit = leNewUnlockPasswordAgainExit
  906. OnKeyPress = leUnlockPasswordKeyPress
  907. end
  908. object leNewUnLockPassword: TLabeledEdit
  909. Left = 89
  910. Top = 7
  911. Width = 117
  912. Height = 18
  913. Hint = #26032#23494#30721#24517#39035#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  914. BiDiMode = bdLeftToRight
  915. Ctl3D = False
  916. EditLabel.Width = 54
  917. EditLabel.Height = 12
  918. EditLabel.BiDiMode = bdLeftToRight
  919. EditLabel.Caption = #26032#23494#30721#65306' '
  920. EditLabel.ParentBiDiMode = False
  921. LabelPosition = lpLeft
  922. MaxLength = 16
  923. ParentBiDiMode = False
  924. ParentCtl3D = False
  925. PasswordChar = '*'
  926. TabOrder = 1
  927. OnExit = leNewUnLockPasswordExit
  928. OnKeyPress = leUnlockPasswordKeyPress
  929. end
  930. end
  931. end
  932. object leDealType: TLabeledEdit
  933. Left = 283
  934. Top = 76
  935. Width = 80
  936. Height = 18
  937. Ctl3D = False
  938. EditLabel.Width = 60
  939. EditLabel.Height = 12
  940. EditLabel.Caption = #21512#21516#31867#21035#65306
  941. ParentCtl3D = False
  942. TabOrder = 25
  943. end
  944. object pnlCalcParametersBar: TPanel
  945. Left = 62
  946. Top = 937
  947. Width = 339
  948. Height = 2
  949. BevelOuter = bvLowered
  950. TabOrder = 26
  951. end
  952. object leQuantityDigit: TLabeledEdit
  953. Left = 100
  954. Top = 972
  955. Width = 87
  956. Height = 18
  957. EditLabel.Width = 36
  958. EditLabel.Height = 12
  959. EditLabel.Caption = #25968#37327#65306
  960. LabelPosition = lpLeft
  961. TabOrder = 27
  962. Text = '3'
  963. end
  964. object leTotalPriceDigit: TLabeledEdit
  965. Left = 264
  966. Top = 972
  967. Width = 87
  968. Height = 18
  969. EditLabel.Width = 36
  970. EditLabel.Height = 12
  971. EditLabel.Caption = #37329#39069#65306
  972. LabelPosition = lpLeft
  973. TabOrder = 28
  974. Text = '0'
  975. end
  976. object udQuantity: TUpDown
  977. Left = 187
  978. Top = 972
  979. Width = 16
  980. Height = 18
  981. Associate = leQuantityDigit
  982. Max = 10
  983. Position = 3
  984. TabOrder = 29
  985. end
  986. object udTotalPrice: TUpDown
  987. Left = 351
  988. Top = 972
  989. Width = 16
  990. Height = 18
  991. Associate = leTotalPriceDigit
  992. Max = 10
  993. TabOrder = 30
  994. end
  995. object gbPM_Digit: TGroupBox
  996. Left = 52
  997. Top = 1051
  998. Width = 349
  999. Height = 44
  1000. Caption = #20215#24046
  1001. TabOrder = 31
  1002. Visible = False
  1003. object lePM_PriceDigit: TLabeledEdit
  1004. Left = 48
  1005. Top = 19
  1006. Width = 87
  1007. Height = 18
  1008. EditLabel.Width = 36
  1009. EditLabel.Height = 12
  1010. EditLabel.Caption = #21333#20215#65306
  1011. LabelPosition = lpLeft
  1012. TabOrder = 0
  1013. Text = '0'
  1014. end
  1015. object udPM_PriceDigit: TUpDown
  1016. Left = 135
  1017. Top = 19
  1018. Width = 16
  1019. Height = 18
  1020. Associate = lePM_PriceDigit
  1021. Max = 10
  1022. TabOrder = 1
  1023. end
  1024. end
  1025. object pnlDateTime: TPanel
  1026. Left = 62
  1027. Top = 1110
  1028. Width = 339
  1029. Height = 2
  1030. BevelOuter = bvLowered
  1031. TabOrder = 32
  1032. end
  1033. object dtpBaseline: TDateTimePicker
  1034. Left = 104
  1035. Top = 1123
  1036. Width = 105
  1037. Height = 20
  1038. Date = 0.457352881945553200
  1039. Format = 'yyyy-MM-dd'
  1040. Time = 0.457352881945553200
  1041. TabOrder = 33
  1042. OnChange = dtpBaselineChange
  1043. end
  1044. object dtpDeadline: TDateTimePicker
  1045. Left = 104
  1046. Top = 1148
  1047. Width = 105
  1048. Height = 20
  1049. Date = 0.457352881945553200
  1050. Format = 'yyyy-MM-dd'
  1051. Time = 0.457352881945553200
  1052. TabOrder = 34
  1053. OnChange = dtpBaselineChange
  1054. end
  1055. object cbDealPayAloneDigiy: TCheckBox
  1056. Left = 62
  1057. Top = 999
  1058. Width = 131
  1059. Height = 17
  1060. Caption = #21512#21516#25903#20184#21333#29420#35774#32622
  1061. TabOrder = 35
  1062. OnClick = cbDealPayAloneDigiyClick
  1063. end
  1064. object leDealPayTotalPriceDigit: TLabeledEdit
  1065. Left = 100
  1066. Top = 1023
  1067. Width = 87
  1068. Height = 18
  1069. EditLabel.Width = 36
  1070. EditLabel.Height = 12
  1071. EditLabel.Caption = #37329#39069#65306
  1072. LabelPosition = lpLeft
  1073. TabOrder = 36
  1074. Text = '0'
  1075. end
  1076. object udDealPayTotalPriceDigit: TUpDown
  1077. Left = 187
  1078. Top = 1023
  1079. Width = 16
  1080. Height = 18
  1081. Associate = leDealPayTotalPriceDigit
  1082. Max = 10
  1083. TabOrder = 37
  1084. end
  1085. object leDealPhase: TLabeledEdit
  1086. Left = 177
  1087. Top = 578
  1088. Width = 131
  1089. Height = 18
  1090. Ctl3D = False
  1091. EditLabel.Width = 60
  1092. EditLabel.Height = 12
  1093. EditLabel.Caption = #21512#21516#24037#26399#65306
  1094. ParentCtl3D = False
  1095. TabOrder = 38
  1096. end
  1097. object leSName_2: TLabeledEdit
  1098. Left = 101
  1099. Top = 459
  1100. Width = 262
  1101. Height = 18
  1102. Ctl3D = False
  1103. EditLabel.Width = 60
  1104. EditLabel.Height = 12
  1105. EditLabel.Caption = #21333#20301#21517#31216#65306
  1106. ParentCtl3D = False
  1107. TabOrder = 39
  1108. end
  1109. object leSLegal_2: TLabeledEdit
  1110. Left = 101
  1111. Top = 499
  1112. Width = 137
  1113. Height = 18
  1114. Ctl3D = False
  1115. EditLabel.Width = 60
  1116. EditLabel.Height = 12
  1117. EditLabel.Caption = #27861#20154#20195#34920#65306
  1118. ParentCtl3D = False
  1119. TabOrder = 40
  1120. end
  1121. object leSDate_2: TLabeledEdit
  1122. Left = 245
  1123. Top = 499
  1124. Width = 119
  1125. Height = 18
  1126. Ctl3D = False
  1127. EditLabel.Width = 60
  1128. EditLabel.Height = 12
  1129. EditLabel.Caption = #31614#35746#26085#26399#65306
  1130. ParentCtl3D = False
  1131. TabOrder = 41
  1132. end
  1133. object leCName_2: TLabeledEdit
  1134. Left = 101
  1135. Top = 289
  1136. Width = 262
  1137. Height = 18
  1138. Ctl3D = False
  1139. EditLabel.Width = 60
  1140. EditLabel.Height = 12
  1141. EditLabel.Caption = #21333#20301#21517#31216#65306
  1142. ParentCtl3D = False
  1143. TabOrder = 42
  1144. end
  1145. object leCLegal_2: TLabeledEdit
  1146. Left = 101
  1147. Top = 330
  1148. Width = 137
  1149. Height = 18
  1150. Ctl3D = False
  1151. EditLabel.Width = 60
  1152. EditLabel.Height = 12
  1153. EditLabel.Caption = #27861#20154#20195#34920#65306
  1154. ParentCtl3D = False
  1155. TabOrder = 43
  1156. end
  1157. object leCDate_2: TLabeledEdit
  1158. Left = 245
  1159. Top = 330
  1160. Width = 119
  1161. Height = 18
  1162. Ctl3D = False
  1163. EditLabel.Width = 60
  1164. EditLabel.Height = 12
  1165. EditLabel.Caption = #31614#35746#26085#26399#65306
  1166. ParentCtl3D = False
  1167. TabOrder = 44
  1168. end
  1169. end
  1170. end
  1171. end
  1172. object jpsPropertiesStaff: TJimPage
  1173. Left = 0
  1174. Top = 0
  1175. Width = 530
  1176. Height = 255
  1177. TabName = 'Staff'
  1178. Caption = 'Staff'
  1179. object zgStaff: TZJGrid
  1180. Left = 0
  1181. Top = 0
  1182. Width = 530
  1183. Height = 255
  1184. Options = [goRangeSelect, goRowSizing, goColSizing, goCellNotMaintainData, goFixedRowShowNo, goFixedColShowNo, goAlwaysShowSelection]
  1185. OptionsEx = []
  1186. RowCount = 1
  1187. ShowGridLine = False
  1188. DefaultColWidth = 73
  1189. Selection.AlphaBlend = False
  1190. Selection.TransparentColor = False
  1191. FrozenCol = 0
  1192. FrozenRow = 0
  1193. OnCellGetColor = zgStaffCellGetColor
  1194. OnCellGetFont = zgStaffCellGetFont
  1195. Font.Charset = ANSI_CHARSET
  1196. Font.Color = clBlack
  1197. Font.Height = -12
  1198. Font.Name = #23435#20307
  1199. Font.Style = []
  1200. ParentFont = False
  1201. Align = alClient
  1202. end
  1203. end
  1204. object jpsPropertiesView: TJimPage
  1205. Left = 0
  1206. Top = 0
  1207. Width = 530
  1208. Height = 255
  1209. TabName = 'View'
  1210. Caption = 'View'
  1211. object leView: TLabel
  1212. Left = 7
  1213. Top = 5
  1214. Width = 48
  1215. Height = 12
  1216. Caption = #39033#30446#26174#31034
  1217. Font.Charset = ANSI_CHARSET
  1218. Font.Color = clBlue
  1219. Font.Height = -12
  1220. Font.Name = #23435#20307
  1221. Font.Style = []
  1222. ParentFont = False
  1223. end
  1224. object leReport: TLabel
  1225. Left = 7
  1226. Top = 141
  1227. Width = 48
  1228. Height = 12
  1229. Caption = #25253#34920#24213#32441
  1230. Font.Charset = ANSI_CHARSET
  1231. Font.Color = clBlue
  1232. Font.Height = -12
  1233. Font.Name = #23435#20307
  1234. Font.Style = []
  1235. ParentFont = False
  1236. end
  1237. object pnlViewBar: TPanel
  1238. Left = 62
  1239. Top = 11
  1240. Width = 457
  1241. Height = 2
  1242. BevelOuter = bvLowered
  1243. TabOrder = 0
  1244. end
  1245. object pnlAllView: TPanel
  1246. Left = 8
  1247. Top = 24
  1248. Width = 505
  1249. Height = 105
  1250. BevelOuter = bvNone
  1251. TabOrder = 1
  1252. object pnlViewPart1: TPanel
  1253. Left = 0
  1254. Top = 0
  1255. Width = 249
  1256. Height = 105
  1257. Align = alLeft
  1258. BevelOuter = bvNone
  1259. TabOrder = 0
  1260. object pnlAlias: TPanel
  1261. Left = 0
  1262. Top = 25
  1263. Width = 249
  1264. Height = 25
  1265. Align = alTop
  1266. BevelOuter = bvNone
  1267. TabOrder = 0
  1268. object cbShowAlias: TCheckBox
  1269. Left = 33
  1270. Top = 8
  1271. Width = 80
  1272. Height = 17
  1273. Hint = #25511#21046#21035#21517#21015#26174#31034
  1274. Caption = #21035#21517
  1275. Ctl3D = False
  1276. Font.Charset = ANSI_CHARSET
  1277. Font.Color = clWindowText
  1278. Font.Height = -12
  1279. Font.Name = #23435#20307
  1280. Font.Style = []
  1281. ParentCtl3D = False
  1282. ParentFont = False
  1283. ParentShowHint = False
  1284. ShowHint = True
  1285. TabOrder = 0
  1286. end
  1287. end
  1288. object pnlBGL: TPanel
  1289. Left = 0
  1290. Top = 75
  1291. Width = 249
  1292. Height = 25
  1293. Align = alTop
  1294. BevelOuter = bvNone
  1295. TabOrder = 1
  1296. object cbShowBGLCode: TCheckBox
  1297. Left = 33
  1298. Top = 8
  1299. Width = 80
  1300. Height = 17
  1301. Hint = #25511#21046#21464#26356#20196#21015#26174#31034
  1302. Caption = #21464#26356#20196
  1303. Ctl3D = False
  1304. Font.Charset = ANSI_CHARSET
  1305. Font.Color = clWindowText
  1306. Font.Height = -12
  1307. Font.Name = #23435#20307
  1308. Font.Style = []
  1309. ParentCtl3D = False
  1310. ParentFont = False
  1311. ParentShowHint = False
  1312. ShowHint = True
  1313. TabOrder = 0
  1314. end
  1315. end
  1316. object pnlDesignQuantity: TPanel
  1317. Left = 0
  1318. Top = 50
  1319. Width = 249
  1320. Height = 25
  1321. Align = alTop
  1322. BevelOuter = bvNone
  1323. TabOrder = 2
  1324. object cbShowDesignQuantity: TCheckBox
  1325. Left = 33
  1326. Top = 8
  1327. Width = 80
  1328. Height = 17
  1329. Hint = #25511#21046#35774#35745#25968#37327#21015#26174#31034
  1330. Caption = #35774#35745#25968#37327
  1331. Ctl3D = False
  1332. Font.Charset = ANSI_CHARSET
  1333. Font.Color = clWindowText
  1334. Font.Height = -12
  1335. Font.Name = #23435#20307
  1336. Font.Style = []
  1337. ParentCtl3D = False
  1338. ParentFont = False
  1339. ParentShowHint = False
  1340. ShowHint = True
  1341. TabOrder = 0
  1342. end
  1343. end
  1344. object pnlPriceChange: TPanel
  1345. Left = 0
  1346. Top = 0
  1347. Width = 249
  1348. Height = 25
  1349. Align = alTop
  1350. BevelOuter = bvNone
  1351. TabOrder = 3
  1352. Visible = False
  1353. object cbShowPriceChange: TCheckBox
  1354. Left = 33
  1355. Top = 8
  1356. Width = 88
  1357. Height = 17
  1358. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1359. Caption = #21333#20215#21464#26356
  1360. Ctl3D = False
  1361. Font.Charset = ANSI_CHARSET
  1362. Font.Color = clWindowText
  1363. Font.Height = -12
  1364. Font.Name = #23435#20307
  1365. Font.Style = []
  1366. ParentCtl3D = False
  1367. ParentFont = False
  1368. ParentShowHint = False
  1369. ShowHint = True
  1370. TabOrder = 0
  1371. end
  1372. end
  1373. end
  1374. object pnlViewPart2: TPanel
  1375. Left = 249
  1376. Top = 0
  1377. Width = 256
  1378. Height = 105
  1379. Align = alClient
  1380. BevelOuter = bvNone
  1381. TabOrder = 1
  1382. object pnlApprovalCode: TPanel
  1383. Left = 0
  1384. Top = 0
  1385. Width = 256
  1386. Height = 25
  1387. Align = alTop
  1388. BevelOuter = bvNone
  1389. TabOrder = 0
  1390. object cbShowApprovalCode: TCheckBox
  1391. Left = 33
  1392. Top = 8
  1393. Width = 88
  1394. Height = 17
  1395. Hint = #25511#21046#25209#22797#32534#21495#21015#26174#31034
  1396. Caption = #25209#22797#32534#21495
  1397. Ctl3D = False
  1398. Font.Charset = ANSI_CHARSET
  1399. Font.Color = clWindowText
  1400. Font.Height = -12
  1401. Font.Name = #23435#20307
  1402. Font.Style = []
  1403. ParentCtl3D = False
  1404. ParentFont = False
  1405. ParentShowHint = False
  1406. ShowHint = True
  1407. TabOrder = 0
  1408. end
  1409. end
  1410. end
  1411. end
  1412. object pnlReport: TPanel
  1413. Left = 62
  1414. Top = 147
  1415. Width = 457
  1416. Height = 2
  1417. BevelOuter = bvLowered
  1418. TabOrder = 2
  1419. end
  1420. object cbShowReportShading: TCheckBox
  1421. Left = 40
  1422. Top = 160
  1423. Width = 17
  1424. Height = 17
  1425. TabOrder = 3
  1426. OnClick = cbShowReportShadingClick
  1427. end
  1428. object edtReportShading: TEdit
  1429. Left = 64
  1430. Top = 160
  1431. Width = 177
  1432. Height = 18
  1433. Ctl3D = False
  1434. ParentCtl3D = False
  1435. TabOrder = 4
  1436. end
  1437. object pnlReportView: TPanel
  1438. Left = 0
  1439. Top = 128
  1440. Width = 529
  1441. Height = 89
  1442. BevelOuter = bvNone
  1443. TabOrder = 5
  1444. object lblReportShowStateTitle: TLabel
  1445. Left = 7
  1446. Top = 5
  1447. Width = 96
  1448. Height = 12
  1449. Caption = #25253#34920#26174#31034#23457#25209#29366#24577
  1450. Font.Charset = ANSI_CHARSET
  1451. Font.Color = clBlue
  1452. Font.Height = -12
  1453. Font.Name = #23435#20307
  1454. Font.Style = []
  1455. ParentFont = False
  1456. end
  1457. object pnlReportViewBar: TPanel
  1458. Left = 110
  1459. Top = 11
  1460. Width = 410
  1461. Height = 2
  1462. BevelOuter = bvLowered
  1463. TabOrder = 0
  1464. end
  1465. object cbReportShowState: TCheckBox
  1466. Left = 41
  1467. Top = 24
  1468. Width = 16
  1469. Height = 17
  1470. TabOrder = 1
  1471. OnClick = cbReportShowStateClick
  1472. end
  1473. object edtReportShowStateText: TEdit
  1474. Left = 65
  1475. Top = 22
  1476. Width = 121
  1477. Height = 20
  1478. MaxLength = 20
  1479. TabOrder = 2
  1480. Text = #25253#34920#26410#23457#26680
  1481. end
  1482. object cbReportShowStageWithoutReply: TCheckBox
  1483. Left = 64
  1484. Top = 48
  1485. Width = 121
  1486. Height = 17
  1487. Caption = #25209#22797#29366#24577#19981#26174#31034
  1488. TabOrder = 3
  1489. end
  1490. end
  1491. object pnlOverRange: TPanel
  1492. Left = 1
  1493. Top = 197
  1494. Width = 529
  1495. Height = 45
  1496. BevelOuter = bvNone
  1497. TabOrder = 6
  1498. object Label1: TLabel
  1499. Left = 7
  1500. Top = 5
  1501. Width = 48
  1502. Height = 12
  1503. Caption = #36229#35745#21151#33021
  1504. Font.Charset = ANSI_CHARSET
  1505. Font.Color = clBlue
  1506. Font.Height = -12
  1507. Font.Name = #23435#20307
  1508. Font.Style = []
  1509. ParentFont = False
  1510. end
  1511. object Panel2: TPanel
  1512. Left = 64
  1513. Top = 11
  1514. Width = 455
  1515. Height = 2
  1516. BevelOuter = bvLowered
  1517. TabOrder = 0
  1518. end
  1519. object cbShowOverRange: TCheckBox
  1520. Left = 40
  1521. Top = 26
  1522. Width = 121
  1523. Height = 17
  1524. Caption = #24213#33394#26631#32418#25552#31034
  1525. TabOrder = 1
  1526. end
  1527. end
  1528. end
  1529. end
  1530. object xpm: TXPMenu
  1531. DimLevel = 30
  1532. GrayLevel = 10
  1533. Font.Charset = DEFAULT_CHARSET
  1534. Font.Color = clMenuText
  1535. Font.Height = -12
  1536. Font.Name = #23435#20307
  1537. Font.Style = []
  1538. Color = clBtnFace
  1539. IconBackColor = clBtnFace
  1540. MenuBarColor = clBtnFace
  1541. SelectColor = 38640
  1542. SelectBorderColor = clHighlight
  1543. SelectFontColor = clMenuText
  1544. DisabledColor = clInactiveCaption
  1545. SeparatorColor = clBtnFace
  1546. CheckedColor = clHighlight
  1547. IconWidth = 24
  1548. DrawSelect = True
  1549. UseSystemColors = False
  1550. OverrideOwnerDraw = False
  1551. Gradient = False
  1552. FlatMenu = False
  1553. AutoDetect = True
  1554. XPControls = [xcToolbar]
  1555. Active = True
  1556. ControlUseTrueXPStyle = True
  1557. BtnRoundArc = 5
  1558. BtnOutLineBorderColor = 7552000
  1559. BtnInnerBorderMoveColor = 3257087
  1560. BtnInnerBorderFocusColor = 15183500
  1561. BtnSurfaceNormalColor = 16251903
  1562. BtnSurfaceDownColor = 14608359
  1563. BtnSurfaceBottomLineColor = 14608359
  1564. BtnSurfaceDownBottomLineColor = 15199215
  1565. RdoChkControlChkColor = 41472
  1566. ComboBoxChkColor = 9201994
  1567. ComboboxSurfaceMoveColor = 16771030
  1568. ControlDisabledBorderColor = 11913158
  1569. Left = 7
  1570. Top = 324
  1571. end
  1572. object Images: TImageList
  1573. DrawingStyle = dsTransparent
  1574. Height = 32
  1575. Width = 32
  1576. Left = 352
  1577. Top = 8
  1578. Bitmap = {
  1579. 494C010103000400040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  1580. 0000000000003600000028000000800000002000000001002000000000000040
  1581. 0000000000000000000000000000000000000000000000000000000000000000
  1582. 0000000000000000000000000000000000000000000000000000000000000000
  1583. 0000000000000000000000000000000000000000000000000000000000000000
  1584. 0000000000000000000000000000000000000000000000000000000000000000
  1585. 0000000000000000000000000000000000000000000000000000000000000000
  1586. 0000000000000000000000000000000000000000000000000000000000000000
  1587. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1588. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1589. 0E000E0E0E000E0E0E000E0E0E000E0E0E000000000000000000000000000000
  1590. 0000000000000000000000000000000000000000000000000000000000000000
  1591. 0000000000000000000000000000000000000000000000000000000000000000
  1592. 0000000000000000000000000000000000000000000000000000000000000000
  1593. 0000000000000000000000000000000000000000000000000000000000000000
  1594. 0000000000000000000000000000000000000000000000000000000000000000
  1595. 0000000000000000000000000000000000000000000000000000000000000000
  1596. 0000000000000000000000000000000000000000000000000000000000000000
  1597. 0000000000000000000000000000000000000000000000000000000000000000
  1598. 0000000000000000000000000000000000000000000000000000000000000000
  1599. 00000000000000000000000000000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1600. 0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1601. 0D000D0D0D000D0D0D000D0D0D00000000000000000000000000000000000000
  1602. 0000000000000000000000000000000000000000000000000000000000000000
  1603. 000000000000000000000000000000000000000000000E0E0E00CBCFCF00CBCF
  1604. CF00C9D0CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCF
  1605. CF00CBCFCF00CBCFCF00C9D0CF000E0E0E000000000000000000000000000000
  1606. 0000000000000000000000000000000000000000000000000000000000000000
  1607. 0000000000000000000000000000000000000000000000000000000000000000
  1608. 0000000000000000000000000000000000000000000000000000000000000000
  1609. 0000000000000000000000000000000000000000000000000000000000000000
  1610. 0000000000000000000000000000000000000000000000000000000000000000
  1611. 0000000000000000000000000000000000000000000000000000000000000000
  1612. 0000000000000000000000000000000000000000000000000000000000000000
  1613. 0000000000000000000000000000000000000000000000000000000000000000
  1614. 0000000000000000000000000000000000000000000000000000000000000000
  1615. 000000000000000000000000000000000000C1C9C900C1C9C800C1C9C900C1C9
  1616. C900C1C9C900C1C9C900C2C9C900C2C9C900C1C9C900C1C9C900C2C9C900C1C9
  1617. C900C2C9C900C1C9C9000D0D0D00000000000000000000000000000000000000
  1618. 0000000000000000000000000000000000000000000000000000000000000000
  1619. 000000000000000000000000000000000000000000000E0E0E00E5E7E700E5E7
  1620. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1621. E700E5E7E700E5E7E700E5E7E7000E0E0E000000000000000000000000000000
  1622. 0000000000000000000000000000000000000000000000000000000000000000
  1623. 0000000000000000000000000000000000000000000000000000000000000000
  1624. 0000000000000000000000000000000000000000000000000000000000000000
  1625. 0000000000000000000000000000000000000000000000000000000000000000
  1626. 0000000000000000000000000000000000000000000000000000000000000000
  1627. 0000000000000000000000000000000000000000000000000000000000000000
  1628. 0000000000000000000000000000000000000000000000000000000000000000
  1629. 0000000000000000000000000000000000000000000000000000000000000000
  1630. 0000000000000000000000000000000000000000000000000000000000000000
  1631. 000000000000000000000000000000000000C4CBCB00C4CBCB00242424002424
  1632. 240024242400C4CBCC00C4CCCC00C4CCCB00C4CBCB00C4CCCB00C4CBCC00C4CB
  1633. CB00C4CBCB00C4CBCC000D0D0D00000000000000000000000000000000000000
  1634. 0000000000000000000000000000000000000000000000000000000000000000
  1635. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1636. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1637. 0E000E0E0E000E0E0E00000000000E0E0E000000000000000000000000000000
  1638. 0000000000000000000000000000000000000000000000000000000000000000
  1639. 0000000000000000000000000000000000000000000000000000000000000000
  1640. 0000000000000000000000000000000000000000000000000000000000000000
  1641. 0000000000000000000000000000000000000000000000000000000000000000
  1642. 0000000000000000000000000000000000000000000000000000000000000000
  1643. 0000000000000000000000000000000000000000000000000000000000000000
  1644. 0000000000000000000000000000000000000000000000000000000000000000
  1645. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1646. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1647. 0E000E0E0E000E0E0E000000000000000000C8CECE002424240000DEFF0000DE
  1648. FF0000DEFF0024242400C8CFCE00C8CECE00C7CFCE00C7CFCE00C8CECF00C7CE
  1649. CE00C7CECE00C7CECF000D0D0D00000000000000000000000000000000000000
  1650. 0000000000000000000000000000000000000000000000000000000000000000
  1651. 0000000000000000000000000000000000000000000000000000000000000000
  1652. 0000CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1653. CF00CBCFCF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1654. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1655. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1656. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1657. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1658. 0000000000000000000000000000000000000000000000000000000000000000
  1659. 0000000000000000000000000000000000000000000000000000000000000000
  1660. 0000000000000000000000000000000000000000000000000000000000000000
  1661. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1662. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1663. 0E000E0E0E000E0E0E000000000000000000CCD1D2002424240000DEFF0000DE
  1664. FF0000DEFF0024242400CBD2D2000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1665. 0E00CBD1D100CCD1D1000D0D0D00000000000000000000000000000000000000
  1666. 0000000000000000000000000000000000000000000000000000000000000000
  1667. 0000000000000000000000000000000000000000000000000000000000000E0E
  1668. 0E00FFFFFF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1669. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1670. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1671. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1672. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1673. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1674. 0000000000000000000000000000000000000000000000000000000000000000
  1675. 0000000000000000000000000000000000000000000000000000000000000000
  1676. 0000000000000000000000000000000000000000000000000000000000000000
  1677. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1678. 0E00FFFFFF00BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7
  1679. C700BFC7C700BFC7C7000000000000000000D0D6D60024242400FFFFFF0000DE
  1680. FF0000DEFF0024242400D0D5D500D0D6D500CFD5D500D0D5D500CFD6D500CFD5
  1681. D500CFD5D500D0D5D5000D0D0D00000000000000000000000000000000000000
  1682. 0000000000000000000000000000000000000000000000000000000000000000
  1683. 000000000000000000000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E
  1684. 0E00FFFFFF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B
  1685. 0A00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00C8CF
  1686. CF00C9D0CF00C8CFCF00C9CFCF00C9D0CF00C8CFCF00C8CFCF00C8CFCF00C8CF
  1687. CF00C8D0CF00C9CFCF00C9CFCF00C9CFD000C8CFCF00C9CFCF00C9CFCF00C9CF
  1688. CF00C9CFCF00C9CFCF00C9CFCF00C9CFCF00C8CFCF00C9CFCF00C9CFCF00C9D0
  1689. CF00C9CFCF000E0E0E000E0E0E00000000000000000000000000000000000000
  1690. 0000000000000000000000000000000000000000000000000000000000000000
  1691. 0000000000000000000000000000000000000000000000000000000000000000
  1692. 0000000000000000000000000000000000000000000000000000000000000000
  1693. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1694. 0E00FFFFFF00C1C9CA00C2C9C900C2C9CA00C2C9C900C2CAC900C2CAC900C2C9
  1695. C900C1C9C900C1C9C9000000000000000000D5D9D900D4DAD900242424002424
  1696. 240024242400D4D9D900D5D9D900D4D9D900D4D9D900D4D9D900D4D9D900D4D9
  1697. D900D4D9D900D4D9D9000D0D0D00000000000000000000000000000000000000
  1698. 0000000000000000000000000000000000000000000000000000000000000000
  1699. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1700. 0E00FFFFFF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C009572
  1701. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00D6DB
  1702. DB00D6DBDB00D6DBDB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DB
  1703. DB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DBDB00D7DBDB00D7DB
  1704. DB00D7DBDB0000000000D7DBDB0000000000D6DBDB0000000000D6DBDB00D7DB
  1705. DB00D7DBDB000E0E0E000E0E0E00000000000000000000000000000000000000
  1706. 0000000000000000000000000000000000000000000000000000000000000000
  1707. 0000000000000000000000000000000000000000000000000000000000000000
  1708. 0000000000000000000000000000000000000000000000000000000000000000
  1709. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1710. 0E00FFFFFF00C6CCCC00C5CCCD00C5CCCC00C6CDCC00C5CCCD00C6CCCC00C5CC
  1711. CC00C5CCCC00C6CDCD000000000000000000D9DDDD00D8DDDC00D9DDDD00D9DD
  1712. DD00D9DDDD00D9DDDD00D9DDDD00D8DDDD00D9DDDD00D8DDDD00D9DCDD00D9DD
  1713. DD00D9DDDD00D9DDDD000D0D0D00000000000000000000000000000000000000
  1714. 0000000000000000000000000000000000000000000000000000000000000000
  1715. 000000000000000000000FBBFB00000000000000000000000000000000000000
  1716. 0000FFFFFF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D009976
  1717. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00E4E7
  1718. E600000000000000000000000000000000000000000000000000000000000000
  1719. 0000E4E7E700E5E7E700E5E7E700E5E7E700E4E7E700E5E7E700E5E7E600E5E7
  1720. E700E5E7E70000000000E4E7E70000000000E4E7E70000000000E5E7E700E5E7
  1721. E600E5E7E7000E0E0E000E0E0E00000000000000000000000000000000000000
  1722. 0000000000000000000000000000000000000000000000000000000000000000
  1723. 0000000000000000000000000000000000000000000000000000000000000000
  1724. 0000000000000000000000000000000000000000000000000000000000000000
  1725. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1726. 0E00FFFFFF00CAD0D100CAD0D000CAD0D000C9D0D000C9D0D000CAD0D000C9D0
  1727. D000CAD0D000CAD0D0000000000000000000DDE0E000DDE0E000242424002424
  1728. 240024242400DDE1E100DDE0E100DDE1E100DEE1E000DDE1E100DDE1E100DEE1
  1729. E000DDE1E100DDE0E1000D0D0D00000000000000000000000000000000000000
  1730. 0000000000000000000000000000000000000000000000000000000000000000
  1731. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1732. 0E00FFFFFF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B
  1733. 0C00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00EEEF
  1734. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1735. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1736. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1737. EF00EEEFEF000E0E0E000E0E0E00000000000000000000000000000000000000
  1738. 0000000000000000000000000000000000000000000000000000000000000000
  1739. 0000000000000000000000000000000000000000000000000000000000000000
  1740. 0000000000000000000000000000000000000000000000000000000000000000
  1741. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1742. 0E00FFFFFF00CFD4D400CFD4D500CFD4D400CED4D400CFD4D400CFD4D400CFD4
  1743. D500CFD4D400CFD4D4000000000000000000E2E4E50024242400003CFF00003C
  1744. FF00003CFF0024242400E2E4E500E1E4E400E1E5E400E2E4E500E2E4E400E1E5
  1745. E400E1E4E400E2E4E4000D0D0D00000000000000000000000000000000000000
  1746. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1747. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1748. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1749. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1750. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1751. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1752. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1753. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1754. 0000000000000000000000000000000000000000000000000000000000000000
  1755. 0000000000000000000000000000000000000000000000000000000000000000
  1756. 0000000000000000000000000000000000000000000000000000000000000000
  1757. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1758. 0E00FFFFFF00D3D8D900D4D9D900D3D8D900D4D9D800D4D8D800D4D8D900D4D9
  1759. D900D4D8D900D4D9D9000000000000000000E5E7E80024242400003CFF00003C
  1760. FF00003CFF0024242400E5E7E7000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1761. 0E00E5E8E800E5E8E8000D0D0D00000000000000000000000000000000000000
  1762. 0000000000000000000000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1763. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCFCF00CBCF
  1764. CF00CBCFCF00C9D0CF000E0E0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1765. FF00FFFFFF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1766. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1767. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1768. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1769. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1770. 0000000000000000000000000000000000000000000000000000000000000000
  1771. 0000000000000000000000000000000000000000000000000000000000000000
  1772. 0000000000000000000000000000000000000000000000000000000000000000
  1773. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1774. 0E00FFFFFF00D9DEDD00D9DDDD00DADDDD00D9DDDD00DADDDD00D9DEDD00D9DD
  1775. DD00D9DDDD00DADEDD000000000000000000E9EAEA0024242400FFFFFF00003C
  1776. FF00003CFF0024242400E9EBEA00E8EBEB00E9EBEB00E9EBEA00E8EBEB00E9EB
  1777. EA00E9EBEB00E9EBEB000D0D0D00000000000000000000000000000000000000
  1778. 0000000000000000000000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1779. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1780. E700E5E7E700E5E7E7000E0E0E00000000000E0E0E000E0E0E000E0E0E000E0E
  1781. 0E000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1782. 0000000000000E0E0E000E0E0E00CECECE00CECECE00CECECE00CECECE00CECE
  1783. CE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECE
  1784. CE00CECECE00CECECE00CECECE00CECECE00CECECE000E0E0E000E0E0E000000
  1785. 0000000000000000000000000000000000000000000000000000000000000000
  1786. 0000000000000000000000000000000000000000000000000000000000000000
  1787. 0000000000000000000000000000000000000000000000000000000000000000
  1788. 0000000000000000000000000000000000000000000000000000000000000000
  1789. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1790. 0E00FFFFFF00DFE1E200DEE2E200DEE2E100DFE2E200DFE1E100DEE2E100DFE2
  1791. E200DEE2E200DEE2E2000000000000000000EBEDED00EBEDED00242424002424
  1792. 240024242400ECEDED00ECEDEE00ECEDED00EBEDED00EBEDED00ECEDED00ECED
  1793. ED00ECEDED00ECEDEE000D0D0D00000000000000000000000000000000000000
  1794. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1795. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1796. 0E000E0E0E000E0E0E000E0E0E0000000000000000000FBBFB00000000000000
  1797. 0000000000000000000000000000000000000000000000000000000000000000
  1798. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1799. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1800. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1801. 0000000000000000000000000000000000000000000000000000000000000000
  1802. 0000000000000000000000000000000000000000000000000000000000000000
  1803. 0000000000000000000000000000000000000000000000000000000000000000
  1804. 0000000000000000000000000000000000000000000000000000000000000000
  1805. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1806. 0E00FFFFFF00E3E6E600E4E6E600E4E6E600E4E6E600E3E6E600E4E6E600E4E6
  1807. E600E4E6E600E3E6E6000000000000000000EEEFEF00EEEFEF00EEEFEF00EEEF
  1808. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1809. EF00EEEFEF00EEEFEF000D0D0D00000000000000000000000000000000000000
  1810. 00000000000000000000000000000000000000000000000000000E0E0E00CBCF
  1811. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1812. CF000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1813. 0000000000000000000000000000000000000000000000000000000000000000
  1814. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1815. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1816. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1817. 0000000000000000000000000000000000000000000000000000000000000000
  1818. 0000000000000000000000000000000000000000000000000000000000000000
  1819. 0000000000000000000000000000000000000000000000000000000000000000
  1820. 0000000000000000000000000000000000000000000000000000000000000000
  1821. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1822. 0E00FFFFFF00E8EAE900E7EAEA00E8EAEA00E7E9EA00E8EAE900E7E9EA00E8EA
  1823. EA00E7E9EA00E8E9E90000000000000000000000000000000000000000000000
  1824. 0000000000000000000000000000000000000000000000000000000000000000
  1825. 000000000000000000000D0D0D00000000000000000000000000000000000000
  1826. 00000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E0E00FFFF
  1827. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1828. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1829. 0000000000000000000000000000000000000000000000000000000000000000
  1830. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B39A
  1831. 1000AF950F000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1832. 0E00916C0A008F690A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1833. 0000000000000000000000000000000000000000000000000000000000000000
  1834. 0000000000000000000000000000000000000000000000000000000000000000
  1835. 0000000000000000000000000000000000000000000000000000000000000000
  1836. 0000000000000000000000000000000000000000000000000000000000000000
  1837. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1838. 0E00FFFFFF00ECEDED00EBEDED00ECEDED00ECEDED00ECEDED00EBECEC00EBEC
  1839. ED00ECEDEC00EBEDEC0000000000000000000000000000000000000000000000
  1840. 0000000000000000000000000000000000000000000000000000000000000000
  1841. 0000000000000000000000000000000000000000000000000000000000000000
  1842. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1843. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1844. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1845. 0000000000000000000000000000000000000000000000000000000000000000
  1846. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B69D
  1847. 1000B29810000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1848. 0E00936E0A00906B0A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1849. 0000000000000000000000000000000000000000000000000000000000000000
  1850. 0000000000000000000000000000000000000000000000000000000000000000
  1851. 0000000000000000000000000000000000000000000000000000000000000000
  1852. 0000000000000000000000000000000000000000000000000000000000000000
  1853. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1854. 0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1855. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1856. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1857. FF000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1858. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1859. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  1860. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1861. 0000000000000000000000000000000000000000000000000000000000000000
  1862. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1863. 0E000E0E0E000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1864. 0E0094710B00926D0B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1865. 0000000000000000000000000000000000000000000000000000000000000000
  1866. 0000000000000000000000000000000000000000000000000000000000000000
  1867. 0000000000000000000000000000000000000000000000000000000000000000
  1868. 0000000000000000000000000000000000000000000000000000000000000000
  1869. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1870. 0E00DCCF710094700B0095700B0094700B0094700B0094700B0094700A00946F
  1871. 0B0094700B0094700A0094700B00946F0B0094700B0094700B0094700B009470
  1872. 0A0094700B0094700A0094700B00946F0B0094700B00946F0B0094700B009470
  1873. 0B000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1874. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1875. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  1876. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1877. 0000000000000000000000000000000000000000000000000000000000000000
  1878. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1879. 0E00F2F2F2000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1880. 0E0097740B0094700B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1881. 0000000000000000000000000000000000000000000000000000000000000000
  1882. 0000000000000000000000000000000000000000000000000000000000000000
  1883. 0000000000000000000000000000000000000000000000000000000000000000
  1884. 0000000000000000000000000000000000000000000000000000000000000000
  1885. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1886. 0E00DCCF71009C7A0B009B7A0C009C7A0C009C790C009C790C009B7A0C009C7A
  1887. 0C009C7A0B009C7A0C009C7A0C009B7A0C009C7A0C009B790C009C7A0C009C7A
  1888. 0C009B790C009B7A0C009B7A0C009B7A0C009C7A0C009C790C009B7A0C009B79
  1889. 0C000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1890. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00FFFF
  1891. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  1892. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB00000000000000
  1893. 0000000000000000000000000000000000000000000000000000000000000000
  1894. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1895. 0E00F2F2F2000E0E0E00F6DF2100F6DF2100F6DF2100F6DF2100F6DF21000E0E
  1896. 0E009A780C0097720C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1897. 0000000000000000000000000000000000000000000000000000000000000000
  1898. 0000000000000000000000000000000000000000000000000000000000000000
  1899. 0000000000000000000000000000000000000000000000000000000000000000
  1900. 0000000000000000000000000000000000000000000000000000000000000000
  1901. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1902. 0E00DCCF7100A4860D00A4850D00A3850D00A4850D00A4850D00A4860D00A485
  1903. 0D00A4860D00A4850D00A4860D00A4860D00A4860D00A4860D00A4850E00A486
  1904. 0D00A4860D00A3860D00A4860D00A4850D00A4850D00A4850D00A3860D00A485
  1905. 0D000E0E0E000E0E0E0000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1906. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF000E0E0E00FFFF
  1907. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1908. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1909. 0000000000000000000000000000000000000000000000000000000000000000
  1910. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1911. 0E00F2F2F2000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1912. 0E009C7B0C0099760B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1913. 0000000000000000000000000000000000000000000000000000000000000000
  1914. 0000000000000000000000000000000000000000000000000000000000000000
  1915. 0000000000000000000000000000000000000000000000000000000000000000
  1916. 0000000000000000000000000000000000000000000000000000000000000000
  1917. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1918. 0E00DCCF7100AD920F00AD910E00AD920F00AE920E00AD920F00AD920F00AD92
  1919. 0F00AD920F00AE910F00AD910E00AD910E00AD920F00AD920E00AD920F00AD92
  1920. 0F00AD920E00AD920F00AD920E00AD910F00AE920F00AD920E00AD920E00AD91
  1921. 0F000E0E0E000E0E0E0000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1922. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E7000E0E0E00FFFF
  1923. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1924. FF000E0E0E000000000000000000000000000000000000000000000000000000
  1925. 0000000000000000000000000000000000000000000000000000000000000000
  1926. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1927. 0E00F6DF2100F6DF2100F6DF21000E0E0E00B0951000AC8F0E00A78A0E00A385
  1928. 0D009F7E0D009B790C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1929. 0000000000000000000000000000000000000000000000000000000000000000
  1930. 0000000000000000000000000000000000000000000000000000000000000000
  1931. 0000000000000000000000000000000000000000000000000000000000000000
  1932. 0000000000000000000000000000000000000000000000000000000000000000
  1933. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1934. 0E00DCCF7100B69D1000B69D1100B69E1000B69D1000B69D1000DCCF7100DCCF
  1935. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1936. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1937. 71000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1938. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1939. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1940. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  1941. 0000000000000000000000000000000000000000000000000000000000000000
  1942. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1943. 0E000E0E0E000E0E0E000E0E0E000E0E0E00B39A1000AB8E0E00AB8E0E00A788
  1944. 0E00A2830D009E7D0C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1945. 0000000000000000000000000000000000000000000000000000000000000000
  1946. 0000000000000000000000000000000000000000000000000000000000000000
  1947. 0000000000000000000000000000000000000000000000000000000000000000
  1948. 0000000000000000000000000000000000000000000000000000000000000000
  1949. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1950. 0E00DCCF7100BDA71100BDA71100BCA71100BDA71100BDA711000E0E0E000E0E
  1951. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1952. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1953. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00CBCF
  1954. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1955. CF000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1956. 0000000000000000000000000000000000000000000000000000000000000000
  1957. 0000000000000000000000000000000000000000000000000000000000000000
  1958. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100F6DF
  1959. 2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF
  1960. 2100F6DF2100F6DF21000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1961. 0000000000000000000000000000000000000000000000000000000000000000
  1962. 0000000000000000000000000000000000000000000000000000000000000000
  1963. 0000000000000000000000000000000000000000000000000000000000000000
  1964. 0000000000000000000000000000000000000000000000000000000000000000
  1965. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1966. 0E00DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF71000E0E0E000E0E
  1967. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1968. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1969. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00FFFF
  1970. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1971. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1972. 0000000000000000000000000000000000000000000000000000000000000000
  1973. 0000000000000000000000000000000000000000000000000000000000000000
  1974. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1975. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1976. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1977. 0000000000000000000000000000000000000000000000000000000000000000
  1978. 0000000000000000000000000000000000000000000000000000000000000000
  1979. 0000000000000000000000000000000000000000000000000000000000000000
  1980. 0000000000000000000000000000000000000000000000000000000000000000
  1981. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1982. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1983. 0E00000000000000000000000000000000000000000000000000000000000000
  1984. 0000000000000000000000000000000000000000000000000000000000000000
  1985. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1986. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1987. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1988. 0000000000000000000000000000000000000000000000000000000000000000
  1989. 0000000000000000000000000000000000000000000000000000000000000000
  1990. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1991. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1992. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1993. 0000000000000000000000000000000000000000000000000000000000000000
  1994. 0000000000000000000000000000000000000000000000000000000000000000
  1995. 0000000000000000000000000000000000000000000000000000000000000000
  1996. 0000000000000000000000000000000000000000000000000000000000000000
  1997. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1998. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1999. 0E00000000000000000000000000000000000000000000000000000000000000
  2000. 0000000000000000000000000000000000000000000000000000000000000000
  2001. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2002. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  2003. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  2004. 0000000000000000000000000000000000000000000000000000000000000000
  2005. 0000000000000000000000000000000000000000000000000000000000000000
  2006. 0000000000000E0E0E000E0E0E00AAAAAA00FFFFFF00FFFFFF00FFFFFF00FFFF
  2007. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  2008. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AAAAAA000E0E0E000E0E0E000000
  2009. 0000000000000000000000000000000000000000000000000000000000000000
  2010. 0000000000000000000000000000000000000000000000000000000000000000
  2011. 0000000000000000000000000000000000000000000000000000000000000000
  2012. 0000000000000000000000000000000000000000000000000000000000000000
  2013. 0000000000000000000000000000000000000000000000000000000000000000
  2014. 0000000000000000000000000000000000000000000000000000000000000000
  2015. 0000000000000000000000000000000000000000000000000000000000000000
  2016. 0000000000000000000000000000000000000000000000000000000000000000
  2017. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2018. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  2019. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB0000000000000000000000
  2020. 0000000000000000000000000000000000000000000000000000000000000000
  2021. 0000000000000000000000000000000000000000000000000000000000000000
  2022. 0000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2023. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2024. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000000
  2025. 0000000000000000000000000000000000000000000000000000000000000000
  2026. 0000000000000000000000000000000000000000000000000000000000000000
  2027. 0000000000000000000000000000000000000000000000000000000000000000
  2028. 0000000000000000000000000000000000000000000000000000000000000000
  2029. 0000000000000000000000000000000000000000000000000000000000000000
  2030. 0000000000000000000000000000000000000000000000000000000000000000
  2031. 0000000000000000000000000000000000000000000000000000000000000000
  2032. 0000000000000000000000000000000000000000000000000000000000000000
  2033. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2034. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  2035. F2000E0E0E000000000000000000000000000000000000000000000000000000
  2036. 0000000000000000000000000000000000000000000000000000000000000000
  2037. 0000000000000000000000000000000000000000000000000000000000000000
  2038. 000000000000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2039. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2040. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00000000000000
  2041. 0000000000000000000000000000000000000000000000000000000000000000
  2042. 0000000000000000000000000000000000000000000000000000000000000000
  2043. 0000000000000000000000000000000000000000000000000000000000000000
  2044. 0000000000000000000000000000000000000000000000000000000000000000
  2045. 0000000000000000000000000000000000000000000000000000000000000000
  2046. 0000000000000000000000000000000000000000000000000000000000000000
  2047. 0000000000000000000000000000000000000000000000000000000000000000
  2048. 0000000000000000000000000000000000000000000000000000000000000000
  2049. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2050. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  2051. F2000E0E0E000000000000000000000000000000000000000000000000000000
  2052. 0000000000000000000000000000000000000000000000000000000000000000
  2053. 0000000000000000000000000000000000000000000000000000000000000000
  2054. 0000000000000000000000000000000000000000000000000000000000000000
  2055. 0000000000000000000000000000000000000000000000000000000000000000
  2056. 0000000000000000000000000000000000000000000000000000000000000000
  2057. 0000000000000000000000000000000000000000000000000000000000000000
  2058. 0000000000000000000000000000000000000000000000000000000000000000
  2059. 0000000000000000000000000000000000000000000000000000000000000000
  2060. 0000000000000000000000000000000000000000000000000000000000000000
  2061. 0000000000000000000000000000000000000000000000000000000000000000
  2062. 0000000000000000000000000000000000000000000000000000000000000000
  2063. 0000000000000000000000000000000000000000000000000000000000000000
  2064. 0000000000000000000000000000000000000000000000000000000000000000
  2065. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  2066. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  2067. FF000E0E0E000000000000000000000000000000000000000000000000000000
  2068. 0000000000000000000000000000000000000000000000000000000000000000
  2069. 0000000000000000000000000000000000000000000000000000000000000000
  2070. 0000000000000000000000000000000000000000000000000000000000000000
  2071. 0000000000000000000000000000000000000000000000000000000000000000
  2072. 0000000000000000000000000000000000000000000000000000000000000000
  2073. 0000000000000000000000000000000000000000000000000000000000000000
  2074. 0000000000000000000000000000000000000000000000000000000000000000
  2075. 0000000000000000000000000000000000000000000000000000000000000000
  2076. 0000000000000000000000000000000000000000000000000000000000000000
  2077. 0000000000000000000000000000000000000000000000000000000000000000
  2078. 0000000000000000000000000000000000000000000000000000000000000000
  2079. 0000000000000000000000000000000000000000000000000000000000000000
  2080. 0000000000000000000000000000000000000000000000000000000000000000
  2081. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  2082. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  2083. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  2084. 0000000000000000000000000000000000000000000000000000000000000000
  2085. 0000000000000000000000000000000000000000000000000000000000000000
  2086. 0000000000000000000000000000000000000000000000000000000000000000
  2087. 0000000000000000000000000000000000000000000000000000000000000000
  2088. 0000000000000000000000000000000000000000000000000000000000000000
  2089. 0000000000000000000000000000000000000000000000000000000000000000
  2090. 0000000000000000000000000000000000000000000000000000000000000000
  2091. 0000000000000000000000000000000000000000000000000000000000000000
  2092. 0000000000000000000000000000000000000000000000000000000000000000
  2093. 000000000000000000000000000000000000424D3E000000000000003E000000
  2094. 2800000080000000200000000100010000000000000200000000000000000000
  2095. 000000000000000000000000FFFFFF00FFFC0000FFFF0000FFFFFFFF00000000
  2096. FFFC0000FFFF0000FFFFFFFF00000000FFFC0000FFFF0000FFFFFFFF00000000
  2097. FFFC0000FFFF0000FFFFFFFF00000000C0000000FFF000008000000100000000
  2098. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  2099. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  2100. C0000000FE0000018000000100000000C0000000FE0000018000000100000000
  2101. C0000000FE0000018000000100000000C0000000FE000001F800001F00000000
  2102. C0000000C0000001F800001F00000000C0000000C000000FF800001F00000000
  2103. C0000000C000000FF800001F00000000C0000000C000000FF800001F00000000
  2104. C0000003C000000FF800001F00000000C00000030000000FF800001F00000000
  2105. C00000030000000FF800001F00000000C00000030000000FF800001F00000000
  2106. C00000030000000FF800001F00000000C0000003000003FFF800001F00000000
  2107. C0000003000003FFF800001F00000000C000000380001FFFF800001F00000000
  2108. C00FFFFF80001FFFF800001F00000000C00FFFFF80001FFFF800001F00000000
  2109. FFFFFFFF80001FFFF800001F00000000FFFFFFFF80001FFFFC00003F00000000
  2110. FFFFFFFF80001FFFFFFFFFFF00000000FFFFFFFF8003FFFFFFFFFFFF00000000
  2111. FFFFFFFF8003FFFFFFFFFFFF0000000000000000000000000000000000000000
  2112. 000000000000}
  2113. end
  2114. object zaStaff: TZjGridDBA
  2115. Columns = <
  2116. item
  2117. Title.Caption = #26399#25968
  2118. Title.CaptionAcrossCols = '1'
  2119. Title.Font.Charset = GB2312_CHARSET
  2120. Title.Font.Color = clWindowText
  2121. Title.Font.Height = -12
  2122. Title.Font.Name = #23435#20307
  2123. Title.Font.Style = []
  2124. Alignment = taCenter
  2125. Font.Charset = GB2312_CHARSET
  2126. Font.Color = clWindowText
  2127. Font.Height = -12
  2128. Font.Name = #23435#20307
  2129. Font.Style = []
  2130. FieldName = 'PhaseID'
  2131. Width = 20
  2132. Visible = False
  2133. ReadOnly = True
  2134. end
  2135. item
  2136. Title.Caption = #23457#26680#27969#31243
  2137. Title.CaptionAcrossCols = '1'
  2138. Title.Font.Charset = GB2312_CHARSET
  2139. Title.Font.Color = clWindowText
  2140. Title.Font.Height = -12
  2141. Title.Font.Name = #23435#20307
  2142. Title.Font.Style = []
  2143. Alignment = taCenter
  2144. Font.Charset = GB2312_CHARSET
  2145. Font.Color = clWindowText
  2146. Font.Height = -12
  2147. Font.Name = #23435#20307
  2148. Font.Style = []
  2149. FieldName = 'StageID'
  2150. Width = 60
  2151. ReadOnly = True
  2152. end
  2153. item
  2154. Title.Caption = #21333#20301
  2155. Title.CaptionAcrossCols = '1'
  2156. Title.Font.Charset = GB2312_CHARSET
  2157. Title.Font.Color = clWindowText
  2158. Title.Font.Height = -12
  2159. Title.Font.Name = #23435#20307
  2160. Title.Font.Style = []
  2161. Alignment = taLeftJustify
  2162. Font.Charset = GB2312_CHARSET
  2163. Font.Color = clWindowText
  2164. Font.Height = -12
  2165. Font.Name = #23435#20307
  2166. Font.Style = []
  2167. FieldName = 'Company'
  2168. Width = 220
  2169. ReadOnly = False
  2170. end
  2171. item
  2172. Title.Caption = #35282#33394
  2173. Title.CaptionAcrossCols = '1'
  2174. Title.Font.Charset = GB2312_CHARSET
  2175. Title.Font.Color = clWindowText
  2176. Title.Font.Height = -12
  2177. Title.Font.Name = #23435#20307
  2178. Title.Font.Style = []
  2179. Alignment = taLeftJustify
  2180. Font.Charset = GB2312_CHARSET
  2181. Font.Color = clWindowText
  2182. Font.Height = -12
  2183. Font.Name = #23435#20307
  2184. Font.Style = []
  2185. FieldName = 'Role'
  2186. Width = 80
  2187. ReadOnly = False
  2188. end
  2189. item
  2190. Title.Caption = #22995#21517
  2191. Title.CaptionAcrossCols = '1'
  2192. Title.Font.Charset = GB2312_CHARSET
  2193. Title.Font.Color = clWindowText
  2194. Title.Font.Height = -12
  2195. Title.Font.Name = #23435#20307
  2196. Title.Font.Style = []
  2197. Alignment = taLeftJustify
  2198. Font.Charset = GB2312_CHARSET
  2199. Font.Color = clWindowText
  2200. Font.Height = -12
  2201. Font.Name = #23435#20307
  2202. Font.Style = []
  2203. FieldName = 'Name'
  2204. Width = 60
  2205. ReadOnly = False
  2206. end>
  2207. Grid = zgStaff
  2208. ExtendRowCount = 0
  2209. Left = 400
  2210. Top = 14
  2211. end
  2212. object imgValid: TImageList
  2213. Left = 352
  2214. Top = 40
  2215. Bitmap = {
  2216. 494C010102000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2217. 0000000000003600000028000000400000001000000001002000000000000010
  2218. 0000000000000000000000000000000000000000000000000000000000000000
  2219. 0000000000000000000000000000000000000000000000000000000000000000
  2220. 0000000000000000000000000000000000000000000000000000000000000000
  2221. 0000000000000000000000000000000000000000000000000000000000000000
  2222. 0000000000000000000000000000000000000000000000000000000000000000
  2223. 0000000000000000000000000000000000000000000000000000000000000000
  2224. 0000000000000000000000000000000000000000000000000000000000000000
  2225. 0000000000000000000000000000000000000000000000000000000000000000
  2226. 0000000000000000000000000000000000000000000000000000000000000000
  2227. 0000000000000000000000000000000000000000000000000000000000000000
  2228. 0000000000000000000000000000000000000000000000000000000000000000
  2229. 0000000000000000000000000000000000000000000000000000000000000000
  2230. 0000000000000000000000000000000000000000000000000000000000000000
  2231. 0000000000000000000000000000000000000000000000000000000000000000
  2232. 0000000000000000000000000000000000000000000000000000000000000000
  2233. 0000000000000000000000000000000000000000000000000000000000000000
  2234. 0000000000000000000000000000000000000000000000000000000000000000
  2235. 000000000000ECECECFF75AF78FF7BAD7EFFFBFBFBFF00000000000000000000
  2236. 0000000000000000000000000000000000000000000000000000000000000000
  2237. 0000DCDDDFFFDCDDDFFF00000000000000000000000000000000DCDDDFFFDCDD
  2238. DFFF000000000000000000000000000000000000000000000000000000000000
  2239. 0000000000000000000000000000000000000000000000000000000000000000
  2240. 0000000000000000000000000000000000000000000000000000000000000000
  2241. 0000000000000000000000000000000000000000000000000000000000000000
  2242. 0000000000000000000000000000000000000000000000000000000000000000
  2243. 0000C9D0CAFF56B95BFF41E84AFF40E64AFF74AD77FFF9F9F9FF000000000000
  2244. 000000000000000000000000000000000000000000000000000000000000D1D2
  2245. D7FF2A35C1FF2634C2FFD0D1D5FF0000000000000000D2D3D7FF2A35C1FF2634
  2246. C2FFCFD1D5FF0000000000000000000000000000000000000000000000000000
  2247. 0000000000000000000000000000000000000000000000000000000000000000
  2248. 0000000000000000000000000000000000000000000000000000000000000000
  2249. 0000000000000000000000000000000000000000000000000000000000000000
  2250. 000000000000000000000000000000000000000000000000000000000000A1B7
  2251. A3FF45CC4DFF42E44CFF3ED847FF3ED948FF42E64CFF70B074FFF7F7F7FF0000
  2252. 0000000000000000000000000000000000000000000000000000DADBDEFF3745
  2253. C5FF0409E4FF060BE5FF2F3EC1FFDADADDFFDADBDEFF303FC1FF060CE5FF0409
  2254. E4FF3645C6FFD9DADDFF00000000000000000000000000000000000000000000
  2255. 0000000000000000000000000000000000000000000000000000000000000000
  2256. 0000000000000000000000000000000000000000000000000000000000000000
  2257. 0000000000000000000000000000000000000000000000000000000000000000
  2258. 00000000000000000000000000000000000000000000F1F1F1FF7CAF7FFF43DF
  2259. 4DFF43E14DFF41D94AFF44E24DFF42DC4BFF41DA4AFF45E74FFF6CB170FFF4F4
  2260. F4FF000000000000000000000000000000000000000000000000DBDCDEFF4553
  2261. C6FF2932EFFF0814E5FF0C16EAFF3946BBFF3948BBFF0C16EAFF0814E5FF2932
  2262. EFFF4552C9FFD9DADDFF00000000000000000000000000000000000000000000
  2263. 0000000000000000000000000000000000000000000000000000000000000000
  2264. 0000000000000000000000000000000000000000000000000000000000000000
  2265. 0000000000000000000000000000000000000000000000000000000000000000
  2266. 000000000000000000000000000000000000CDD2CEFF60B866FF48E852FF44DD
  2267. 4EFF44DD4EFF46E350FF57C35EFF46D44FFF46E14FFF44DB4DFF48E952FF69B3
  2268. 6EFFF1F1F1FF000000000000000000000000000000000000000000000000D2D3
  2269. D8FF4C5CC6FF303EF4FF1325E9FF1526EBFF1526EBFF1325E9FF2F3EF4FF4C5A
  2270. C7FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2271. 0000000000000000000000000000000000000000000000000000000000000000
  2272. 0000000000000000000000000000000000000000000000000000000000000000
  2273. 0000000000000000000000000000000000000000000000000000000000000000
  2274. 00000000000000000000000000000000000077B37AFF4FF85AFF46DB4FFF49E3
  2275. 52FF49E452FF8AB58CFFF1F1F1FFB2C2B3FF4BDA53FF49E453FF46DC50FF4BEB
  2276. 55FF67B56CFFECECECFF00000000000000000000000000000000000000000000
  2277. 0000DBDBDEFF5663C1FF293FF1FF1E3AEFFF1E3AEFFF293FF1FF5563C0FFD9D9
  2278. DDFF000000000000000000000000000000000000000000000000000000000000
  2279. 0000000000000000000000000000000000000000000000000000000000000000
  2280. 0000000000000000000000000000000000000000000000000000000000000000
  2281. 0000000000000000000000000000000000000000000000000000000000000000
  2282. 000000000000000000000000000000000000DBDEDBFF5CC663FF51F65CFF50D6
  2283. 57FFA9BEABFF000000000000000000000000B6C5B7FF4ED756FF4CE656FF48DD
  2284. 52FF4DEC58FF65B96BFFE7E8E7FF000000000000000000000000000000000000
  2285. 0000D9DADDFF3D4DC0FF2340F4FF294EF4FF294EF4FF2341F5FF3C4CC1FFD8D9
  2286. DCFF000000000000000000000000000000000000000000000000000000000000
  2287. 0000000000000000000000000000000000000000000000000000000000000000
  2288. 0000000000000000000000000000000000000000000000000000000000000000
  2289. 0000000000000000000000000000000000000000000000000000000000000000
  2290. 00000000000000000000000000000000000000000000D2D7D2FF78BB7DFFC7CF
  2291. C7FF0000000000000000000000000000000000000000BCC8BDFF52D759FF4FE8
  2292. 59FF4BDE54FF50ED5BFF63BB6AFFE2E4E3FF000000000000000000000000D1D2
  2293. D7FF3547C8FF2545FFFF2C56F7FF4364FAFF4464FAFF2C56F7FF2546FFFF3446
  2294. C8FFCFD0D5FF0000000000000000000000000000000000000000000000000000
  2295. 0000000000000000000000000000000000000000000000000000000000000000
  2296. 0000000000000000000000000000000000000000000000000000000000000000
  2297. 0000000000000000000000000000000000000000000000000000000000000000
  2298. 0000000000000000000000000000000000000000000000000000000000000000
  2299. 0000000000000000000000000000000000000000000000000000C2CBC2FF55D4
  2300. 5DFF51EA5CFF4DDE57FF52EE5EFF5EC166FF0000000000000000DADBDEFF3C4D
  2301. D0FF284CFFFF3667FCFF4768FFFF5261C1FF5261C0FF4769FFFF3667FCFF284C
  2302. FFFF3B4CD1FFD9DADDFF00000000000000000000000000000000000000000000
  2303. 0000000000000000000000000000000000000000000000000000000000000000
  2304. 0000000000000000000000000000000000000000000000000000000000000000
  2305. 0000000000000000000000000000000000000000000000000000000000000000
  2306. 0000000000000000000000000000000000000000000000000000000000000000
  2307. 000000000000000000000000000000000000000000000000000000000000C7CF
  2308. C7FF5AD262FF54EC5FFF54EC5FFF57D65EFF0000000000000000DBDBDEFF4858
  2309. D0FF4568FFFF476BFFFF4E5ECBFFDADADDFFDBDBDEFF4F5ECAFF476CFFFF4568
  2310. FFFF4657D1FFD9D9DDFF00000000000000000000000000000000000000000000
  2311. 0000000000000000000000000000000000000000000000000000000000000000
  2312. 0000000000000000000000000000000000000000000000000000000000000000
  2313. 0000000000000000000000000000000000000000000000000000000000000000
  2314. 0000000000000000000000000000000000000000000000000000000000000000
  2315. 0000000000000000000000000000000000000000000000000000000000000000
  2316. 0000CDD3CDFF5AD362FF56D960FFC8D0C8FF000000000000000000000000D2D3
  2317. D7FF4A5AD1FF4758D1FFD1D2D6FF0000000000000000D2D2D7FF495AD1FF4759
  2318. D1FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2319. 0000000000000000000000000000000000000000000000000000000000000000
  2320. 0000000000000000000000000000000000000000000000000000000000000000
  2321. 0000000000000000000000000000000000000000000000000000000000000000
  2322. 0000000000000000000000000000000000000000000000000000000000000000
  2323. 0000000000000000000000000000000000000000000000000000000000000000
  2324. 000000000000D9DDD9FFD3D8D3FF000000000000000000000000000000000000
  2325. 0000DDDDE0FFDDDDE0FF00000000000000000000000000000000DDDDE0FFDDDD
  2326. E0FF000000000000000000000000000000000000000000000000000000000000
  2327. 0000000000000000000000000000000000000000000000000000000000000000
  2328. 0000000000000000000000000000000000000000000000000000000000000000
  2329. 0000000000000000000000000000000000000000000000000000000000000000
  2330. 0000000000000000000000000000000000000000000000000000000000000000
  2331. 0000000000000000000000000000000000000000000000000000000000000000
  2332. 0000000000000000000000000000000000000000000000000000000000000000
  2333. 0000000000000000000000000000000000000000000000000000000000000000
  2334. 0000000000000000000000000000000000000000000000000000000000000000
  2335. 0000000000000000000000000000000000000000000000000000000000000000
  2336. 0000000000000000000000000000000000000000000000000000000000000000
  2337. 0000000000000000000000000000000000000000000000000000000000000000
  2338. 0000000000000000000000000000000000000000000000000000000000000000
  2339. 0000000000000000000000000000000000000000000000000000000000000000
  2340. 0000000000000000000000000000000000000000000000000000000000000000
  2341. 0000000000000000000000000000000000000000000000000000000000000000
  2342. 0000000000000000000000000000000000000000000000000000000000000000
  2343. 0000000000000000000000000000000000000000000000000000000000000000
  2344. 0000000000000000000000000000000000000000000000000000000000000000
  2345. 0000000000000000000000000000000000000000000000000000000000000000
  2346. 000000000000000000000000000000000000424D3E000000000000003E000000
  2347. 2800000040000000100000000100010000000000800000000000000000000000
  2348. 000000000000000000000000FFFFFF00FFFFFFFF00000000FFFFFFFF00000000
  2349. F87FF3CF00000000F03FE18700000000E01FC00300000000800FC00300000000
  2350. 0007E007000000000003F00F000000000701F00F000000008F80E00700000000
  2351. FFC0C00300000000FFE0C00300000000FFF0E18700000000FFF9F3CF00000000
  2352. FFFFFFFF00000000FFFFFFFF0000000000000000000000000000000000000000
  2353. 000000000000}
  2354. end
  2355. end