VDSS020MF.dfm 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544
  1. object VDSS020M: TVDSS020M
  2. Left = 352
  3. Top = 109
  4. Caption = 'VDS-'#44160#51648#44592' '#44368#53685#47049' '#53685#44228
  5. ClientHeight = 763
  6. ClientWidth = 1355
  7. Color = clWhite
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -13
  11. Font.Name = #47569#51008' '#44256#46357
  12. Font.Style = []
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. Scaled = False
  16. ShowHint = True
  17. OnClose = FormClose
  18. OnCreate = FormCreate
  19. OnShow = FormShow
  20. DesignSize = (
  21. 1355
  22. 763)
  23. PixelsPerInch = 96
  24. TextHeight = 17
  25. object ShpList: TShape
  26. Left = 4
  27. Top = 118
  28. Width = 1346
  29. Height = 641
  30. Anchors = [akLeft, akTop, akRight, akBottom]
  31. Pen.Color = 10849679
  32. Pen.Width = 2
  33. ExplicitHeight = 613
  34. end
  35. object LblRptTitle: TLabel
  36. Left = 944
  37. Top = 39
  38. Width = 190
  39. Height = 16
  40. Anchors = [akLeft, akTop, akRight]
  41. Caption = 'VDS-'#44160#51648#44592' '#44368#53685#47049' '#53685#44228
  42. Font.Charset = DEFAULT_CHARSET
  43. Font.Color = clRed
  44. Font.Height = -16
  45. Font.Name = #44404#47548
  46. Font.Style = [fsBold]
  47. ParentFont = False
  48. ParentShowHint = False
  49. ShowHint = True
  50. Visible = False
  51. end
  52. object LblQryDay: TLabel
  53. Left = 705
  54. Top = 37
  55. Width = 58
  56. Height = 16
  57. Anchors = [akLeft, akTop, akRight]
  58. Caption = 'QryDay'
  59. Font.Charset = DEFAULT_CHARSET
  60. Font.Color = clRed
  61. Font.Height = -16
  62. Font.Name = #44404#47548
  63. Font.Style = [fsBold]
  64. ParentFont = False
  65. ParentShowHint = False
  66. ShowHint = True
  67. Visible = False
  68. end
  69. object LblQryYear: TLabel
  70. Left = 781
  71. Top = 39
  72. Width = 65
  73. Height = 16
  74. Anchors = [akLeft, akTop, akRight]
  75. Caption = 'QryYear'
  76. Font.Charset = DEFAULT_CHARSET
  77. Font.Color = clRed
  78. Font.Height = -16
  79. Font.Name = #44404#47548
  80. Font.Style = [fsBold]
  81. ParentFont = False
  82. ParentShowHint = False
  83. ShowHint = True
  84. Visible = False
  85. end
  86. object LblQryTm: TLabel
  87. Left = 639
  88. Top = 39
  89. Width = 52
  90. Height = 16
  91. Anchors = [akLeft, akTop, akRight]
  92. Caption = 'QryTm'
  93. Font.Charset = DEFAULT_CHARSET
  94. Font.Color = clRed
  95. Font.Height = -16
  96. Font.Name = #44404#47548
  97. Font.Style = [fsBold]
  98. ParentFont = False
  99. ParentShowHint = False
  100. ShowHint = True
  101. Visible = False
  102. end
  103. object ShpTitle: TShape
  104. Left = 4
  105. Top = 4
  106. Width = 1347
  107. Height = 40
  108. Anchors = [akLeft, akTop, akRight]
  109. Brush.Color = 14671839
  110. Pen.Color = 10849679
  111. Pen.Width = 2
  112. ExplicitWidth = 1269
  113. end
  114. object LblCaption: TLabel
  115. Left = 16
  116. Top = 10
  117. Width = 267
  118. Height = 23
  119. Caption = #53440#51060#53952' '
  120. Font.Charset = DEFAULT_CHARSET
  121. Font.Color = 4740964
  122. Font.Height = -17
  123. Font.Name = #47569#51008' '#44256#46357
  124. Font.Style = [fsBold]
  125. ParentFont = False
  126. ParentShowHint = False
  127. ShowHint = True
  128. end
  129. object PgQuery: TcxPageControl
  130. Tag = 9
  131. Left = 4
  132. Top = 50
  133. Width = 1347
  134. Height = 68
  135. Cursor = crHandPoint
  136. Anchors = [akLeft, akTop, akRight]
  137. Focusable = False
  138. TabOrder = 0
  139. Properties.ActivePage = TsDay
  140. Properties.HotTrack = True
  141. Properties.Images = LimgTmp
  142. Properties.Options = [pcoAlwaysShowGoDialogButton, pcoFixedTabWidthWhenRotated, pcoGradient, pcoGradientClientArea, pcoRedrawOnResize]
  143. Properties.TabSlants.Positions = [spRight]
  144. TabSlants.Positions = [spRight]
  145. OnChange = PgQueryChange
  146. ClientRectBottom = 63
  147. ClientRectLeft = 2
  148. ClientRectRight = 1342
  149. ClientRectTop = 28
  150. object TsDay: TcxTabSheet
  151. Caption = #49884#44036#45824#48324' '#53685#44228' '
  152. ImageIndex = 2
  153. DesignSize = (
  154. 1340
  155. 35)
  156. object LblRecordsTm: TLabel
  157. Left = 1200
  158. Top = 10
  159. Width = 52
  160. Height = 17
  161. Alignment = taRightJustify
  162. Anchors = [akTop, akRight]
  163. Caption = #51312#54924#44148#49688
  164. Transparent = True
  165. end
  166. object DtDay: TDateTimePicker
  167. Left = 216
  168. Top = 6
  169. Width = 145
  170. Height = 25
  171. BevelInner = bvNone
  172. BevelOuter = bvNone
  173. BevelKind = bkFlat
  174. Date = 39924.557697118050000000
  175. Format = 'yyyy/MM/dd'
  176. Time = 39924.557697118050000000
  177. DoubleBuffered = True
  178. ImeName = 'Microsoft Office IME 2007'
  179. ParentDoubleBuffered = False
  180. ParentShowHint = False
  181. ShowHint = True
  182. TabOrder = 0
  183. end
  184. object Lbl2: TcxLabel
  185. Left = 164
  186. Top = 7
  187. Caption = #53685#44228#51068
  188. ParentShowHint = False
  189. ShowHint = True
  190. Style.BorderStyle = ebsNone
  191. Style.Edges = [bLeft, bTop, bRight, bBottom]
  192. Style.TextStyle = []
  193. Properties.Alignment.Horz = taRightJustify
  194. Properties.Alignment.Vert = taVCenter
  195. Transparent = True
  196. AnchorX = 207
  197. AnchorY = 18
  198. end
  199. end
  200. object TsMon: TcxTabSheet
  201. Caption = #51068#48324' '#53685#44228' '
  202. ImageIndex = 1
  203. DesignSize = (
  204. 1340
  205. 35)
  206. object LblRecordsDay: TLabel
  207. Left = 1195
  208. Top = 10
  209. Width = 52
  210. Height = 17
  211. Alignment = taRightJustify
  212. Anchors = [akTop, akRight]
  213. Caption = #51312#54924#44148#49688
  214. Transparent = True
  215. end
  216. object DtMon: TDateTimePicker
  217. Left = 111
  218. Top = 6
  219. Width = 84
  220. Height = 25
  221. BevelInner = bvNone
  222. BevelOuter = bvNone
  223. BevelKind = bkFlat
  224. Date = 39924.557697118050000000
  225. Format = 'yyyy/MM'
  226. Time = 39924.557697118050000000
  227. DateMode = dmUpDown
  228. ImeName = 'Microsoft Office IME 2007'
  229. ParentShowHint = False
  230. ShowHint = True
  231. TabOrder = 1
  232. end
  233. object cxLabel1: TcxLabel
  234. Left = 63
  235. Top = 6
  236. Caption = #53685#44228#50900
  237. ParentShowHint = False
  238. ShowHint = True
  239. Style.BorderStyle = ebsNone
  240. Style.Edges = [bLeft, bTop, bRight, bBottom]
  241. Style.TextStyle = []
  242. Properties.Alignment.Horz = taRightJustify
  243. Properties.Alignment.Vert = taVCenter
  244. Transparent = True
  245. AnchorX = 106
  246. AnchorY = 17
  247. end
  248. object DtStTime: TDateTimePicker
  249. Left = 200
  250. Top = 6
  251. Width = 80
  252. Height = 25
  253. BevelInner = bvNone
  254. BevelOuter = bvNone
  255. BevelKind = bkFlat
  256. Date = 39924.557697118050000000
  257. Format = ' HH:mm'
  258. Time = 39924.557697118050000000
  259. Color = clWhite
  260. DateMode = dmUpDown
  261. ImeName = 'Microsoft Office IME 2007'
  262. Kind = dtkTime
  263. ParentColor = True
  264. TabOrder = 2
  265. end
  266. object DtEdTime: TDateTimePicker
  267. Left = 310
  268. Top = 6
  269. Width = 80
  270. Height = 25
  271. BevelInner = bvNone
  272. BevelOuter = bvNone
  273. BevelKind = bkFlat
  274. Date = 39924.557697118050000000
  275. Format = ' HH:mm'
  276. Time = 39924.557697118050000000
  277. Color = clWhite
  278. DateMode = dmUpDown
  279. ImeName = 'Microsoft Office IME 2007'
  280. Kind = dtkTime
  281. ParentColor = True
  282. TabOrder = 3
  283. end
  284. object cxLabel3: TcxLabel
  285. Left = 282
  286. Top = 7
  287. AutoSize = False
  288. Caption = ' ~ '
  289. ParentShowHint = False
  290. ShowHint = True
  291. Style.BorderStyle = ebsNone
  292. Style.Edges = [bLeft, bTop, bRight, bBottom]
  293. Style.TextStyle = []
  294. Properties.Alignment.Horz = taCenter
  295. Transparent = True
  296. Height = 20
  297. Width = 25
  298. AnchorX = 295
  299. end
  300. end
  301. object TsYear: TcxTabSheet
  302. Caption = #50900#48324' '#53685#44228' '
  303. ImageIndex = 0
  304. TabVisible = False
  305. DesignSize = (
  306. 1340
  307. 35)
  308. object LblRecordsYear: TLabel
  309. Left = 1200
  310. Top = 10
  311. Width = 52
  312. Height = 17
  313. Alignment = taRightJustify
  314. Anchors = [akTop, akRight]
  315. Caption = #51312#54924#44148#49688
  316. Transparent = True
  317. end
  318. object DtYear: TDateTimePicker
  319. Left = 275
  320. Top = 6
  321. Width = 77
  322. Height = 25
  323. BevelInner = bvNone
  324. BevelOuter = bvNone
  325. BevelKind = bkFlat
  326. Date = 39924.557697118050000000
  327. Format = 'yyyy'#45380
  328. Time = 39924.557697118050000000
  329. DateMode = dmUpDown
  330. ImeName = 'Microsoft Office IME 2007'
  331. ParentShowHint = False
  332. ShowHint = True
  333. TabOrder = 1
  334. end
  335. object cxLabel2: TcxLabel
  336. Left = 159
  337. Top = 7
  338. AutoSize = False
  339. Caption = #53685#44228#45380
  340. ParentShowHint = False
  341. ShowHint = True
  342. Style.BorderStyle = ebsNone
  343. Style.Edges = [bLeft, bTop, bRight, bBottom]
  344. Style.TextStyle = []
  345. Properties.Alignment.Horz = taRightJustify
  346. Transparent = True
  347. Height = 20
  348. Width = 110
  349. AnchorX = 269
  350. end
  351. end
  352. end
  353. object BtnSearch: TcxButton
  354. Left = 425
  355. Top = 84
  356. Width = 80
  357. Height = 25
  358. Cursor = crHandPoint
  359. Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
  360. Caption = #51312#54924
  361. Colors.Default = 3893744
  362. LookAndFeel.Kind = lfUltraFlat
  363. LookAndFeel.NativeStyle = False
  364. TabOrder = 1
  365. Font.Charset = DEFAULT_CHARSET
  366. Font.Color = clWindowText
  367. Font.Height = -13
  368. Font.Name = #47569#51008' '#44256#46357
  369. Font.Style = [fsBold]
  370. ParentFont = False
  371. OnClick = BtnSearchClick
  372. end
  373. object BtnGraph: TcxButton
  374. Left = 948
  375. Top = 84
  376. Width = 80
  377. Height = 25
  378. Cursor = crHandPoint
  379. Hint = #45936#51060#53552#47484' '#44536#47000#54532#47196' '#52636#47141#54633#45768#45796'.'
  380. Anchors = [akTop, akRight]
  381. Caption = #44536#47000#54532
  382. Colors.Default = 3893744
  383. LookAndFeel.Kind = lfUltraFlat
  384. LookAndFeel.NativeStyle = False
  385. TabOrder = 2
  386. Visible = False
  387. Font.Charset = DEFAULT_CHARSET
  388. Font.Color = clWindowText
  389. Font.Height = -13
  390. Font.Name = #47569#51008' '#44256#46357
  391. Font.Style = [fsBold]
  392. ParentFont = False
  393. OnClick = BtnGraphClick
  394. end
  395. object BtnPrint: TcxButton
  396. Left = 1029
  397. Top = 84
  398. Width = 80
  399. Height = 25
  400. Cursor = crHandPoint
  401. Hint = #45936#51060#53552#47484' '#54532#47536#53552#47196' '#52636#47141#54633#45768#45796'.'
  402. Anchors = [akTop, akRight]
  403. Caption = #51064#49604
  404. Colors.Default = 3893744
  405. LookAndFeel.Kind = lfUltraFlat
  406. LookAndFeel.NativeStyle = False
  407. TabOrder = 3
  408. Visible = False
  409. Font.Charset = DEFAULT_CHARSET
  410. Font.Color = clWindowText
  411. Font.Height = -13
  412. Font.Name = #47569#51008' '#44256#46357
  413. Font.Style = [fsBold]
  414. ParentFont = False
  415. OnClick = BtnPrintClick
  416. end
  417. object BtnExlSave: TcxButton
  418. Left = 1261
  419. Top = 84
  420. Width = 80
  421. Height = 25
  422. Cursor = crHandPoint
  423. Hint = #51312#54924' '#44208#44284' '#45936#51060#53552#47484' '#54028#51068#47196' '#51200#51109#54633#45768#45796'.'
  424. Anchors = [akTop, akRight]
  425. Caption = #51200#51109
  426. Colors.Default = 3893744
  427. LookAndFeel.Kind = lfUltraFlat
  428. LookAndFeel.NativeStyle = False
  429. TabOrder = 4
  430. Font.Charset = DEFAULT_CHARSET
  431. Font.Color = clWindowText
  432. Font.Height = -13
  433. Font.Name = #47569#51008' '#44256#46357
  434. Font.Style = [fsBold]
  435. ParentFont = False
  436. OnClick = BtnExlSaveClick
  437. end
  438. object PgList: TcxPageControl
  439. Left = 11
  440. Top = 125
  441. Width = 1331
  442. Height = 628
  443. Anchors = [akLeft, akTop, akRight, akBottom]
  444. Color = clWhite
  445. Focusable = False
  446. ParentBackground = False
  447. ParentColor = False
  448. ParentShowHint = False
  449. ShowHint = False
  450. TabOrder = 5
  451. Properties.ActivePage = TsListDay
  452. Properties.HotTrack = True
  453. Properties.OwnerDraw = True
  454. Properties.Style = 9
  455. ClientRectBottom = 628
  456. ClientRectRight = 1331
  457. ClientRectTop = 24
  458. object TsListDay: TcxTabSheet
  459. Caption = #49884#44036#45824#48324' '#53685#44228' '
  460. ImageIndex = 0
  461. object PnlDayGraph: TPanel
  462. Left = 0
  463. Top = 284
  464. Width = 1331
  465. Height = 320
  466. Align = alBottom
  467. BevelInner = bvLowered
  468. BevelOuter = bvNone
  469. TabOrder = 0
  470. end
  471. object SplDay: TcxSplitter
  472. Left = 0
  473. Top = 278
  474. Width = 1331
  475. Height = 6
  476. HotZoneClassName = 'TcxSimpleStyle'
  477. AlignSplitter = salBottom
  478. ResizeUpdate = True
  479. Control = PnlDayGraph
  480. Color = 3893744
  481. ParentColor = False
  482. end
  483. object CxDay: TcxGrid
  484. Left = 0
  485. Top = 0
  486. Width = 1331
  487. Height = 278
  488. Align = alClient
  489. TabOrder = 2
  490. LookAndFeel.Kind = lfUltraFlat
  491. LookAndFeel.NativeStyle = False
  492. object TvDay: TcxGridDBBandedTableView
  493. DataController.Summary.DefaultGroupSummaryItems = <>
  494. DataController.Summary.FooterSummaryItems = <>
  495. DataController.Summary.SummaryGroups = <>
  496. DataController.Summary.Options = [soNullIgnore]
  497. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  498. OptionsBehavior.CellHints = True
  499. OptionsCustomize.ColumnFiltering = False
  500. OptionsCustomize.ColumnHidingOnGrouping = False
  501. OptionsCustomize.ColumnMoving = False
  502. OptionsCustomize.ColumnSorting = False
  503. OptionsCustomize.BandMoving = False
  504. OptionsCustomize.ColumnVertSizing = False
  505. OptionsData.CancelOnExit = False
  506. OptionsData.Deleting = False
  507. OptionsData.DeletingConfirmation = False
  508. OptionsData.Editing = False
  509. OptionsData.Inserting = False
  510. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  511. OptionsView.GroupByBox = False
  512. OptionsView.GroupFooters = gfVisibleWhenExpanded
  513. OptionsView.FixedBandSeparatorColor = 10849679
  514. OptionsView.FixedBandSeparatorWidth = 0
  515. Bands = <
  516. item
  517. Caption = #44396#48516
  518. FixedKind = fkLeft
  519. Width = 526
  520. end
  521. item
  522. Caption = #49884#44036#45824#48324' '#53685#44228'('#45824')'
  523. end>
  524. object TvDayColumn2: TcxGridDBBandedColumn
  525. Caption = #51228#50612#44592'ID'
  526. DataBinding.FieldName = 'CTLR_MNGM_NMBR'
  527. PropertiesClassName = 'TcxLabelProperties'
  528. Properties.Alignment.Horz = taCenter
  529. Properties.Alignment.Vert = taVCenter
  530. Visible = False
  531. HeaderAlignmentHorz = taCenter
  532. HeaderAlignmentVert = vaCenter
  533. Options.CellMerging = True
  534. VisibleForCustomization = False
  535. Width = 71
  536. Position.BandIndex = 0
  537. Position.ColIndex = 0
  538. Position.RowIndex = 0
  539. end
  540. object TvDayColumn3: TcxGridDBBandedColumn
  541. Caption = #48169#54693
  542. DataBinding.FieldName = 'DTCT_TYPE_CD_NM'
  543. PropertiesClassName = 'TcxLabelProperties'
  544. Properties.Alignment.Horz = taCenter
  545. Properties.Alignment.Vert = taVCenter
  546. HeaderAlignmentHorz = taCenter
  547. HeaderAlignmentVert = vaCenter
  548. Width = 48
  549. Position.BandIndex = 0
  550. Position.ColIndex = 3
  551. Position.RowIndex = 0
  552. end
  553. object TvDayColumn4: TcxGridDBBandedColumn
  554. Caption = #44160#51648#44592'ID'
  555. DataBinding.FieldName = 'DTCT_NMBR'
  556. PropertiesClassName = 'TcxLabelProperties'
  557. Properties.Alignment.Horz = taCenter
  558. Properties.Alignment.Vert = taVCenter
  559. HeaderAlignmentHorz = taCenter
  560. HeaderAlignmentVert = vaCenter
  561. Width = 64
  562. Position.BandIndex = 0
  563. Position.ColIndex = 4
  564. Position.RowIndex = 0
  565. end
  566. object vDayColumnNo: TcxGridDBBandedColumn
  567. Caption = #51228#50612#44592#47749#52845
  568. DataBinding.FieldName = 'LCTN'
  569. PropertiesClassName = 'TcxTextEditProperties'
  570. Properties.Alignment.Horz = taLeftJustify
  571. Properties.Alignment.Vert = taVCenter
  572. BestFitMaxWidth = 55
  573. HeaderAlignmentHorz = taCenter
  574. HeaderAlignmentVert = vaCenter
  575. Options.CellMerging = True
  576. Width = 136
  577. Position.BandIndex = 0
  578. Position.ColIndex = 1
  579. Position.RowIndex = 0
  580. end
  581. object vDayColumnTot: TcxGridDBBandedColumn
  582. Caption = #52264#47196
  583. DataBinding.FieldName = 'ISTL_LANE'
  584. PropertiesClassName = 'TcxTextEditProperties'
  585. Properties.Alignment.Horz = taCenter
  586. Properties.Alignment.Vert = taVCenter
  587. BestFitMaxWidth = 70
  588. HeaderAlignmentHorz = taCenter
  589. HeaderAlignmentVert = vaCenter
  590. Width = 33
  591. Position.BandIndex = 0
  592. Position.ColIndex = 2
  593. Position.RowIndex = 0
  594. end
  595. object vDayColumnNm: TcxGridDBBandedColumn
  596. Caption = #54633#44228
  597. DataBinding.FieldName = 'TOTTFVL'
  598. PropertiesClassName = 'TcxSpinEditProperties'
  599. Properties.Alignment.Horz = taRightJustify
  600. Properties.Alignment.Vert = taVCenter
  601. Properties.DisplayFormat = '#,##0'
  602. BestFitMaxWidth = 195
  603. HeaderAlignmentHorz = taCenter
  604. HeaderAlignmentVert = vaCenter
  605. Width = 51
  606. Position.BandIndex = 0
  607. Position.ColIndex = 6
  608. Position.RowIndex = 0
  609. end
  610. object vDayColumnAvg: TcxGridDBBandedColumn
  611. Caption = #54217#44512
  612. DataBinding.FieldName = 'AVGTFVL'
  613. PropertiesClassName = 'TcxSpinEditProperties'
  614. Properties.Alignment.Horz = taRightJustify
  615. Properties.Alignment.Vert = taVCenter
  616. OnCustomDrawCell = vDayColumnCustomDrawCell
  617. BestFitMaxWidth = 50
  618. HeaderAlignmentHorz = taCenter
  619. HeaderAlignmentVert = vaCenter
  620. Width = 38
  621. Position.BandIndex = 0
  622. Position.ColIndex = 7
  623. Position.RowIndex = 0
  624. end
  625. object vDayColumn1: TcxGridDBBandedColumn
  626. Caption = '00'
  627. DataBinding.FieldName = 'C00'
  628. PropertiesClassName = 'TcxSpinEditProperties'
  629. Properties.Alignment.Horz = taRightJustify
  630. Properties.Alignment.Vert = taVCenter
  631. Properties.DisplayFormat = '##,##0'
  632. OnCustomDrawCell = vDayColumnCustomDrawCell
  633. BestFitMaxWidth = 50
  634. HeaderAlignmentHorz = taCenter
  635. HeaderAlignmentVert = vaCenter
  636. Width = 50
  637. Position.BandIndex = 1
  638. Position.ColIndex = 0
  639. Position.RowIndex = 0
  640. end
  641. object cxGridDBBandedColumn32: TcxGridDBBandedColumn
  642. Caption = '01'
  643. DataBinding.FieldName = 'C01'
  644. PropertiesClassName = 'TcxSpinEditProperties'
  645. Properties.Alignment.Horz = taRightJustify
  646. Properties.Alignment.Vert = taVCenter
  647. Properties.DisplayFormat = '##,##0'
  648. OnCustomDrawCell = vDayColumnCustomDrawCell
  649. BestFitMaxWidth = 50
  650. HeaderAlignmentHorz = taCenter
  651. HeaderAlignmentVert = vaCenter
  652. Width = 50
  653. Position.BandIndex = 1
  654. Position.ColIndex = 1
  655. Position.RowIndex = 0
  656. end
  657. object cxGridDBBandedColumn33: TcxGridDBBandedColumn
  658. Caption = '02'
  659. DataBinding.FieldName = 'C02'
  660. PropertiesClassName = 'TcxSpinEditProperties'
  661. Properties.Alignment.Horz = taRightJustify
  662. Properties.Alignment.Vert = taVCenter
  663. Properties.DisplayFormat = '##,##0'
  664. OnCustomDrawCell = vDayColumnCustomDrawCell
  665. BestFitMaxWidth = 50
  666. HeaderAlignmentHorz = taCenter
  667. HeaderAlignmentVert = vaCenter
  668. Width = 50
  669. Position.BandIndex = 1
  670. Position.ColIndex = 2
  671. Position.RowIndex = 0
  672. end
  673. object cxGridDBBandedColumn34: TcxGridDBBandedColumn
  674. Caption = '03'
  675. DataBinding.FieldName = 'C03'
  676. PropertiesClassName = 'TcxSpinEditProperties'
  677. Properties.Alignment.Horz = taRightJustify
  678. Properties.Alignment.Vert = taVCenter
  679. Properties.DisplayFormat = '##,##0'
  680. OnCustomDrawCell = vDayColumnCustomDrawCell
  681. BestFitMaxWidth = 50
  682. HeaderAlignmentHorz = taCenter
  683. HeaderAlignmentVert = vaCenter
  684. Width = 50
  685. Position.BandIndex = 1
  686. Position.ColIndex = 3
  687. Position.RowIndex = 0
  688. end
  689. object cxGridDBBandedColumn35: TcxGridDBBandedColumn
  690. Caption = '04'
  691. DataBinding.FieldName = 'C04'
  692. PropertiesClassName = 'TcxSpinEditProperties'
  693. Properties.Alignment.Horz = taRightJustify
  694. Properties.Alignment.Vert = taVCenter
  695. Properties.DisplayFormat = '##,##0'
  696. OnCustomDrawCell = vDayColumnCustomDrawCell
  697. BestFitMaxWidth = 50
  698. HeaderAlignmentHorz = taCenter
  699. HeaderAlignmentVert = vaCenter
  700. Width = 50
  701. Position.BandIndex = 1
  702. Position.ColIndex = 4
  703. Position.RowIndex = 0
  704. end
  705. object cxGridDBBandedColumn36: TcxGridDBBandedColumn
  706. Caption = '05'
  707. DataBinding.FieldName = 'C05'
  708. PropertiesClassName = 'TcxSpinEditProperties'
  709. Properties.Alignment.Horz = taRightJustify
  710. Properties.Alignment.Vert = taVCenter
  711. Properties.DisplayFormat = '##,##0'
  712. OnCustomDrawCell = vDayColumnCustomDrawCell
  713. BestFitMaxWidth = 50
  714. HeaderAlignmentHorz = taCenter
  715. HeaderAlignmentVert = vaCenter
  716. Width = 50
  717. Position.BandIndex = 1
  718. Position.ColIndex = 5
  719. Position.RowIndex = 0
  720. end
  721. object cxGridDBBandedColumn37: TcxGridDBBandedColumn
  722. Caption = '06'
  723. DataBinding.FieldName = 'C06'
  724. PropertiesClassName = 'TcxSpinEditProperties'
  725. Properties.Alignment.Horz = taRightJustify
  726. Properties.Alignment.Vert = taVCenter
  727. Properties.DisplayFormat = '##,##0'
  728. OnCustomDrawCell = vDayColumnCustomDrawCell
  729. BestFitMaxWidth = 50
  730. HeaderAlignmentHorz = taCenter
  731. HeaderAlignmentVert = vaCenter
  732. Width = 50
  733. Position.BandIndex = 1
  734. Position.ColIndex = 6
  735. Position.RowIndex = 0
  736. end
  737. object cxGridDBBandedColumn38: TcxGridDBBandedColumn
  738. Caption = '07'
  739. DataBinding.FieldName = 'C07'
  740. PropertiesClassName = 'TcxSpinEditProperties'
  741. Properties.Alignment.Horz = taRightJustify
  742. Properties.Alignment.Vert = taVCenter
  743. Properties.DisplayFormat = '##,##0'
  744. OnCustomDrawCell = vDayColumnCustomDrawCell
  745. BestFitMaxWidth = 50
  746. HeaderAlignmentHorz = taCenter
  747. HeaderAlignmentVert = vaCenter
  748. Width = 50
  749. Position.BandIndex = 1
  750. Position.ColIndex = 7
  751. Position.RowIndex = 0
  752. end
  753. object cxGridDBBandedColumn39: TcxGridDBBandedColumn
  754. Caption = '08'
  755. DataBinding.FieldName = 'C08'
  756. PropertiesClassName = 'TcxSpinEditProperties'
  757. Properties.Alignment.Horz = taRightJustify
  758. Properties.Alignment.Vert = taVCenter
  759. Properties.DisplayFormat = '##,##0'
  760. OnCustomDrawCell = vDayColumnCustomDrawCell
  761. BestFitMaxWidth = 50
  762. HeaderAlignmentHorz = taCenter
  763. HeaderAlignmentVert = vaCenter
  764. Width = 50
  765. Position.BandIndex = 1
  766. Position.ColIndex = 8
  767. Position.RowIndex = 0
  768. end
  769. object cxGridDBBandedColumn40: TcxGridDBBandedColumn
  770. Caption = '09'
  771. DataBinding.FieldName = 'C09'
  772. PropertiesClassName = 'TcxSpinEditProperties'
  773. Properties.Alignment.Horz = taRightJustify
  774. Properties.Alignment.Vert = taVCenter
  775. Properties.DisplayFormat = '##,##0'
  776. OnCustomDrawCell = vDayColumnCustomDrawCell
  777. BestFitMaxWidth = 50
  778. HeaderAlignmentHorz = taCenter
  779. HeaderAlignmentVert = vaCenter
  780. Width = 50
  781. Position.BandIndex = 1
  782. Position.ColIndex = 9
  783. Position.RowIndex = 0
  784. end
  785. object cxGridDBBandedColumn41: TcxGridDBBandedColumn
  786. Caption = '10'
  787. DataBinding.FieldName = 'C10'
  788. PropertiesClassName = 'TcxSpinEditProperties'
  789. Properties.Alignment.Horz = taRightJustify
  790. Properties.Alignment.Vert = taVCenter
  791. Properties.DisplayFormat = '##,##0'
  792. OnCustomDrawCell = vDayColumnCustomDrawCell
  793. BestFitMaxWidth = 50
  794. HeaderAlignmentHorz = taCenter
  795. HeaderAlignmentVert = vaCenter
  796. Width = 50
  797. Position.BandIndex = 1
  798. Position.ColIndex = 10
  799. Position.RowIndex = 0
  800. end
  801. object cxGridDBBandedColumn42: TcxGridDBBandedColumn
  802. Caption = '11'
  803. DataBinding.FieldName = 'C11'
  804. PropertiesClassName = 'TcxSpinEditProperties'
  805. Properties.Alignment.Horz = taRightJustify
  806. Properties.Alignment.Vert = taVCenter
  807. Properties.DisplayFormat = '##,##0'
  808. OnCustomDrawCell = vDayColumnCustomDrawCell
  809. BestFitMaxWidth = 50
  810. HeaderAlignmentHorz = taCenter
  811. HeaderAlignmentVert = vaCenter
  812. Width = 50
  813. Position.BandIndex = 1
  814. Position.ColIndex = 11
  815. Position.RowIndex = 0
  816. end
  817. object cxGridDBBandedColumn43: TcxGridDBBandedColumn
  818. Caption = '12'
  819. DataBinding.FieldName = 'C12'
  820. PropertiesClassName = 'TcxSpinEditProperties'
  821. Properties.Alignment.Horz = taRightJustify
  822. Properties.Alignment.Vert = taVCenter
  823. Properties.DisplayFormat = '##,##0'
  824. OnCustomDrawCell = vDayColumnCustomDrawCell
  825. BestFitMaxWidth = 50
  826. HeaderAlignmentHorz = taCenter
  827. HeaderAlignmentVert = vaCenter
  828. Width = 50
  829. Position.BandIndex = 1
  830. Position.ColIndex = 12
  831. Position.RowIndex = 0
  832. end
  833. object cxGridDBBandedColumn44: TcxGridDBBandedColumn
  834. Caption = '13'
  835. DataBinding.FieldName = 'C13'
  836. PropertiesClassName = 'TcxSpinEditProperties'
  837. Properties.Alignment.Horz = taRightJustify
  838. Properties.Alignment.Vert = taVCenter
  839. Properties.DisplayFormat = '##,##0'
  840. OnCustomDrawCell = vDayColumnCustomDrawCell
  841. BestFitMaxWidth = 50
  842. HeaderAlignmentHorz = taCenter
  843. HeaderAlignmentVert = vaCenter
  844. Width = 50
  845. Position.BandIndex = 1
  846. Position.ColIndex = 13
  847. Position.RowIndex = 0
  848. end
  849. object cxGridDBBandedColumn45: TcxGridDBBandedColumn
  850. Caption = '14'
  851. DataBinding.FieldName = 'C14'
  852. PropertiesClassName = 'TcxSpinEditProperties'
  853. Properties.Alignment.Horz = taRightJustify
  854. Properties.Alignment.Vert = taVCenter
  855. Properties.DisplayFormat = '##,##0'
  856. OnCustomDrawCell = vDayColumnCustomDrawCell
  857. BestFitMaxWidth = 50
  858. HeaderAlignmentHorz = taCenter
  859. HeaderAlignmentVert = vaCenter
  860. Width = 50
  861. Position.BandIndex = 1
  862. Position.ColIndex = 14
  863. Position.RowIndex = 0
  864. end
  865. object cxGridDBBandedColumn46: TcxGridDBBandedColumn
  866. Caption = '15'
  867. DataBinding.FieldName = 'C15'
  868. PropertiesClassName = 'TcxSpinEditProperties'
  869. Properties.Alignment.Horz = taRightJustify
  870. Properties.Alignment.Vert = taVCenter
  871. Properties.DisplayFormat = '##,##0'
  872. OnCustomDrawCell = vDayColumnCustomDrawCell
  873. BestFitMaxWidth = 50
  874. HeaderAlignmentHorz = taCenter
  875. HeaderAlignmentVert = vaCenter
  876. Width = 50
  877. Position.BandIndex = 1
  878. Position.ColIndex = 15
  879. Position.RowIndex = 0
  880. end
  881. object cxGridDBBandedColumn47: TcxGridDBBandedColumn
  882. Caption = '16'
  883. DataBinding.FieldName = 'C16'
  884. PropertiesClassName = 'TcxSpinEditProperties'
  885. Properties.Alignment.Horz = taRightJustify
  886. Properties.Alignment.Vert = taVCenter
  887. Properties.DisplayFormat = '##,##0'
  888. OnCustomDrawCell = vDayColumnCustomDrawCell
  889. BestFitMaxWidth = 50
  890. HeaderAlignmentHorz = taCenter
  891. HeaderAlignmentVert = vaCenter
  892. Width = 50
  893. Position.BandIndex = 1
  894. Position.ColIndex = 16
  895. Position.RowIndex = 0
  896. end
  897. object cxGridDBBandedColumn48: TcxGridDBBandedColumn
  898. Caption = '17'
  899. DataBinding.FieldName = 'C17'
  900. PropertiesClassName = 'TcxSpinEditProperties'
  901. Properties.Alignment.Horz = taRightJustify
  902. Properties.Alignment.Vert = taVCenter
  903. Properties.DisplayFormat = '##,##0'
  904. OnCustomDrawCell = vDayColumnCustomDrawCell
  905. BestFitMaxWidth = 50
  906. HeaderAlignmentHorz = taCenter
  907. HeaderAlignmentVert = vaCenter
  908. Width = 50
  909. Position.BandIndex = 1
  910. Position.ColIndex = 17
  911. Position.RowIndex = 0
  912. end
  913. object cxGridDBBandedColumn49: TcxGridDBBandedColumn
  914. Caption = '18'
  915. DataBinding.FieldName = 'C18'
  916. PropertiesClassName = 'TcxSpinEditProperties'
  917. Properties.Alignment.Horz = taRightJustify
  918. Properties.Alignment.Vert = taVCenter
  919. Properties.DisplayFormat = '##,##0'
  920. OnCustomDrawCell = vDayColumnCustomDrawCell
  921. BestFitMaxWidth = 50
  922. HeaderAlignmentHorz = taCenter
  923. HeaderAlignmentVert = vaCenter
  924. Width = 50
  925. Position.BandIndex = 1
  926. Position.ColIndex = 18
  927. Position.RowIndex = 0
  928. end
  929. object cxGridDBBandedColumn50: TcxGridDBBandedColumn
  930. Caption = '19'
  931. DataBinding.FieldName = 'C19'
  932. PropertiesClassName = 'TcxSpinEditProperties'
  933. Properties.Alignment.Horz = taRightJustify
  934. Properties.Alignment.Vert = taVCenter
  935. Properties.DisplayFormat = '##,##0'
  936. OnCustomDrawCell = vDayColumnCustomDrawCell
  937. BestFitMaxWidth = 50
  938. HeaderAlignmentHorz = taCenter
  939. HeaderAlignmentVert = vaCenter
  940. Width = 50
  941. Position.BandIndex = 1
  942. Position.ColIndex = 19
  943. Position.RowIndex = 0
  944. end
  945. object cxGridDBBandedColumn51: TcxGridDBBandedColumn
  946. Caption = '20'
  947. DataBinding.FieldName = 'C20'
  948. PropertiesClassName = 'TcxSpinEditProperties'
  949. Properties.Alignment.Horz = taRightJustify
  950. Properties.Alignment.Vert = taVCenter
  951. Properties.DisplayFormat = '##,##0'
  952. OnCustomDrawCell = vDayColumnCustomDrawCell
  953. BestFitMaxWidth = 50
  954. HeaderAlignmentHorz = taCenter
  955. HeaderAlignmentVert = vaCenter
  956. Width = 50
  957. Position.BandIndex = 1
  958. Position.ColIndex = 20
  959. Position.RowIndex = 0
  960. end
  961. object cxGridDBBandedColumn52: TcxGridDBBandedColumn
  962. Caption = '21'
  963. DataBinding.FieldName = 'C21'
  964. PropertiesClassName = 'TcxSpinEditProperties'
  965. Properties.Alignment.Horz = taRightJustify
  966. Properties.Alignment.Vert = taVCenter
  967. Properties.DisplayFormat = '##,##0'
  968. OnCustomDrawCell = vDayColumnCustomDrawCell
  969. BestFitMaxWidth = 50
  970. HeaderAlignmentHorz = taCenter
  971. HeaderAlignmentVert = vaCenter
  972. Width = 50
  973. Position.BandIndex = 1
  974. Position.ColIndex = 21
  975. Position.RowIndex = 0
  976. end
  977. object cxGridDBBandedColumn53: TcxGridDBBandedColumn
  978. Caption = '22'
  979. DataBinding.FieldName = 'C22'
  980. PropertiesClassName = 'TcxSpinEditProperties'
  981. Properties.Alignment.Horz = taRightJustify
  982. Properties.Alignment.Vert = taVCenter
  983. Properties.DisplayFormat = '##,##0'
  984. OnCustomDrawCell = vDayColumnCustomDrawCell
  985. BestFitMaxWidth = 50
  986. HeaderAlignmentHorz = taCenter
  987. HeaderAlignmentVert = vaCenter
  988. Width = 50
  989. Position.BandIndex = 1
  990. Position.ColIndex = 22
  991. Position.RowIndex = 0
  992. end
  993. object cxGridDBBandedColumn54: TcxGridDBBandedColumn
  994. Caption = '23'
  995. DataBinding.FieldName = 'C23'
  996. PropertiesClassName = 'TcxSpinEditProperties'
  997. Properties.Alignment.Horz = taRightJustify
  998. Properties.Alignment.Vert = taVCenter
  999. Properties.DisplayFormat = '##,##0'
  1000. OnCustomDrawCell = vDayColumnCustomDrawCell
  1001. BestFitMaxWidth = 50
  1002. HeaderAlignmentHorz = taCenter
  1003. HeaderAlignmentVert = vaCenter
  1004. Width = 50
  1005. Position.BandIndex = 1
  1006. Position.ColIndex = 23
  1007. Position.RowIndex = 0
  1008. end
  1009. object TvDayColumn1: TcxGridDBBandedColumn
  1010. Caption = #44160#44592#44592#47749#52845
  1011. DataBinding.FieldName = 'VDS_DTCT_NM'
  1012. HeaderAlignmentHorz = taCenter
  1013. HeaderAlignmentVert = vaCenter
  1014. Width = 85
  1015. Position.BandIndex = 0
  1016. Position.ColIndex = 5
  1017. Position.RowIndex = 0
  1018. end
  1019. end
  1020. object GlDay: TcxGridLevel
  1021. GridView = TvDay
  1022. end
  1023. end
  1024. end
  1025. object TsListMon: TcxTabSheet
  1026. Caption = #51068#48324' '#53685#44228' '
  1027. ImageIndex = 1
  1028. object PnlMonGraph: TPanel
  1029. Left = 0
  1030. Top = 284
  1031. Width = 1331
  1032. Height = 320
  1033. Align = alBottom
  1034. BevelInner = bvLowered
  1035. BevelOuter = bvNone
  1036. TabOrder = 0
  1037. end
  1038. object SplMon: TcxSplitter
  1039. Left = 0
  1040. Top = 278
  1041. Width = 1331
  1042. Height = 6
  1043. HotZoneClassName = 'TcxSimpleStyle'
  1044. AlignSplitter = salBottom
  1045. ResizeUpdate = True
  1046. Control = PnlMonGraph
  1047. Color = 3893744
  1048. ParentColor = False
  1049. end
  1050. object CxMon: TcxGrid
  1051. Left = 0
  1052. Top = 0
  1053. Width = 1331
  1054. Height = 278
  1055. Align = alClient
  1056. TabOrder = 2
  1057. LookAndFeel.Kind = lfUltraFlat
  1058. LookAndFeel.NativeStyle = False
  1059. object TvMon: TcxGridDBBandedTableView
  1060. DataController.Summary.DefaultGroupSummaryItems = <>
  1061. DataController.Summary.FooterSummaryItems = <>
  1062. DataController.Summary.SummaryGroups = <>
  1063. DataController.Summary.Options = [soNullIgnore]
  1064. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  1065. OptionsBehavior.CellHints = True
  1066. OptionsCustomize.ColumnFiltering = False
  1067. OptionsCustomize.ColumnHidingOnGrouping = False
  1068. OptionsCustomize.ColumnMoving = False
  1069. OptionsCustomize.ColumnSorting = False
  1070. OptionsCustomize.BandMoving = False
  1071. OptionsCustomize.ColumnVertSizing = False
  1072. OptionsData.CancelOnExit = False
  1073. OptionsData.Deleting = False
  1074. OptionsData.DeletingConfirmation = False
  1075. OptionsData.Editing = False
  1076. OptionsData.Inserting = False
  1077. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  1078. OptionsView.GroupByBox = False
  1079. OptionsView.GroupFooters = gfVisibleWhenExpanded
  1080. OptionsView.FixedBandSeparatorColor = 10849679
  1081. OptionsView.FixedBandSeparatorWidth = 0
  1082. Bands = <
  1083. item
  1084. Caption = #44396#48516
  1085. FixedKind = fkLeft
  1086. Width = 517
  1087. end
  1088. item
  1089. Caption = #51068#48324' '#53685#44228'('#45824')'
  1090. end>
  1091. object TvMonColumn2: TcxGridDBBandedColumn
  1092. Caption = #51228#50612#44592'ID'
  1093. DataBinding.FieldName = 'CTLR_MNGM_NMBR'
  1094. PropertiesClassName = 'TcxLabelProperties'
  1095. Properties.Alignment.Horz = taCenter
  1096. Properties.Alignment.Vert = taVCenter
  1097. Visible = False
  1098. HeaderAlignmentHorz = taCenter
  1099. HeaderAlignmentVert = vaCenter
  1100. Options.CellMerging = True
  1101. VisibleForCustomization = False
  1102. Width = 70
  1103. Position.BandIndex = 0
  1104. Position.ColIndex = 0
  1105. Position.RowIndex = 0
  1106. end
  1107. object TvMonColumn3: TcxGridDBBandedColumn
  1108. Caption = #48169#54693
  1109. DataBinding.FieldName = 'DTCT_TYPE_CD_NM'
  1110. PropertiesClassName = 'TcxLabelProperties'
  1111. Properties.Alignment.Horz = taCenter
  1112. Properties.Alignment.Vert = taVCenter
  1113. HeaderAlignmentHorz = taCenter
  1114. HeaderAlignmentVert = vaCenter
  1115. Width = 47
  1116. Position.BandIndex = 0
  1117. Position.ColIndex = 3
  1118. Position.RowIndex = 0
  1119. end
  1120. object TvMonColumn4: TcxGridDBBandedColumn
  1121. Caption = #44160#51648#44592'ID'
  1122. DataBinding.FieldName = 'DTCT_NMBR'
  1123. PropertiesClassName = 'TcxLabelProperties'
  1124. Properties.Alignment.Horz = taCenter
  1125. Properties.Alignment.Vert = taVCenter
  1126. HeaderAlignmentHorz = taCenter
  1127. HeaderAlignmentVert = vaCenter
  1128. Width = 67
  1129. Position.BandIndex = 0
  1130. Position.ColIndex = 4
  1131. Position.RowIndex = 0
  1132. end
  1133. object vMonColumnNo: TcxGridDBBandedColumn
  1134. Caption = #51228#50612#44592#47749#52845
  1135. DataBinding.FieldName = 'LCTN'
  1136. PropertiesClassName = 'TcxTextEditProperties'
  1137. Properties.Alignment.Horz = taLeftJustify
  1138. Properties.Alignment.Vert = taVCenter
  1139. BestFitMaxWidth = 55
  1140. HeaderAlignmentHorz = taCenter
  1141. HeaderAlignmentVert = vaCenter
  1142. Options.CellMerging = True
  1143. Width = 130
  1144. Position.BandIndex = 0
  1145. Position.ColIndex = 1
  1146. Position.RowIndex = 0
  1147. end
  1148. object vMonColumnTot: TcxGridDBBandedColumn
  1149. Caption = #52264#47196
  1150. DataBinding.FieldName = 'ISTL_LANE'
  1151. PropertiesClassName = 'TcxTextEditProperties'
  1152. Properties.Alignment.Horz = taCenter
  1153. Properties.Alignment.Vert = taVCenter
  1154. BestFitMaxWidth = 70
  1155. HeaderAlignmentHorz = taCenter
  1156. HeaderAlignmentVert = vaCenter
  1157. Width = 34
  1158. Position.BandIndex = 0
  1159. Position.ColIndex = 2
  1160. Position.RowIndex = 0
  1161. end
  1162. object vMonColumnNm: TcxGridDBBandedColumn
  1163. Caption = #54633#44228
  1164. DataBinding.FieldName = 'TOTTFVL'
  1165. PropertiesClassName = 'TcxSpinEditProperties'
  1166. Properties.Alignment.Horz = taRightJustify
  1167. Properties.Alignment.Vert = taVCenter
  1168. Properties.DisplayFormat = '#,##0'
  1169. BestFitMaxWidth = 195
  1170. HeaderAlignmentHorz = taCenter
  1171. HeaderAlignmentVert = vaCenter
  1172. Width = 49
  1173. Position.BandIndex = 0
  1174. Position.ColIndex = 6
  1175. Position.RowIndex = 0
  1176. end
  1177. object vMonColumnAvg: TcxGridDBBandedColumn
  1178. Caption = #54217#44512
  1179. DataBinding.FieldName = 'AVGTFVL'
  1180. PropertiesClassName = 'TcxSpinEditProperties'
  1181. Properties.Alignment.Horz = taRightJustify
  1182. Properties.Alignment.Vert = taVCenter
  1183. OnCustomDrawCell = vDayColumnCustomDrawCell
  1184. BestFitMaxWidth = 50
  1185. HeaderAlignmentHorz = taCenter
  1186. HeaderAlignmentVert = vaCenter
  1187. Width = 46
  1188. Position.BandIndex = 0
  1189. Position.ColIndex = 7
  1190. Position.RowIndex = 0
  1191. end
  1192. object vMonColumn1: TcxGridDBBandedColumn
  1193. Caption = '1'
  1194. DataBinding.FieldName = 'C01'
  1195. PropertiesClassName = 'TcxSpinEditProperties'
  1196. Properties.Alignment.Horz = taRightJustify
  1197. Properties.Alignment.Vert = taVCenter
  1198. Properties.DisplayFormat = '##,##0'
  1199. OnCustomDrawCell = vDayColumnCustomDrawCell
  1200. BestFitMaxWidth = 50
  1201. HeaderAlignmentHorz = taCenter
  1202. HeaderAlignmentVert = vaCenter
  1203. Width = 50
  1204. Position.BandIndex = 1
  1205. Position.ColIndex = 0
  1206. Position.RowIndex = 0
  1207. end
  1208. object vMonColumn2: TcxGridDBBandedColumn
  1209. Caption = '2'
  1210. DataBinding.FieldName = 'C02'
  1211. PropertiesClassName = 'TcxSpinEditProperties'
  1212. Properties.Alignment.Horz = taRightJustify
  1213. Properties.Alignment.Vert = taVCenter
  1214. Properties.DisplayFormat = '##,##0'
  1215. OnCustomDrawCell = vDayColumnCustomDrawCell
  1216. BestFitMaxWidth = 50
  1217. HeaderAlignmentHorz = taCenter
  1218. HeaderAlignmentVert = vaCenter
  1219. Width = 50
  1220. Position.BandIndex = 1
  1221. Position.ColIndex = 1
  1222. Position.RowIndex = 0
  1223. end
  1224. object vMonColumn3: TcxGridDBBandedColumn
  1225. Caption = '3'
  1226. DataBinding.FieldName = 'C03'
  1227. PropertiesClassName = 'TcxSpinEditProperties'
  1228. Properties.Alignment.Horz = taRightJustify
  1229. Properties.Alignment.Vert = taVCenter
  1230. Properties.DisplayFormat = '##,##0'
  1231. OnCustomDrawCell = vDayColumnCustomDrawCell
  1232. BestFitMaxWidth = 50
  1233. HeaderAlignmentHorz = taCenter
  1234. HeaderAlignmentVert = vaCenter
  1235. Width = 50
  1236. Position.BandIndex = 1
  1237. Position.ColIndex = 2
  1238. Position.RowIndex = 0
  1239. end
  1240. object vMonColumn4: TcxGridDBBandedColumn
  1241. Caption = '4'
  1242. DataBinding.FieldName = 'C04'
  1243. PropertiesClassName = 'TcxSpinEditProperties'
  1244. Properties.Alignment.Horz = taRightJustify
  1245. Properties.Alignment.Vert = taVCenter
  1246. Properties.DisplayFormat = '##,##0'
  1247. OnCustomDrawCell = vDayColumnCustomDrawCell
  1248. BestFitMaxWidth = 50
  1249. HeaderAlignmentHorz = taCenter
  1250. HeaderAlignmentVert = vaCenter
  1251. Width = 50
  1252. Position.BandIndex = 1
  1253. Position.ColIndex = 3
  1254. Position.RowIndex = 0
  1255. end
  1256. object vMonColumn5: TcxGridDBBandedColumn
  1257. Caption = '5'
  1258. DataBinding.FieldName = 'C05'
  1259. PropertiesClassName = 'TcxSpinEditProperties'
  1260. Properties.Alignment.Horz = taRightJustify
  1261. Properties.Alignment.Vert = taVCenter
  1262. Properties.DisplayFormat = '##,##0'
  1263. OnCustomDrawCell = vDayColumnCustomDrawCell
  1264. BestFitMaxWidth = 50
  1265. HeaderAlignmentHorz = taCenter
  1266. HeaderAlignmentVert = vaCenter
  1267. Width = 50
  1268. Position.BandIndex = 1
  1269. Position.ColIndex = 4
  1270. Position.RowIndex = 0
  1271. end
  1272. object vMonColumn6: TcxGridDBBandedColumn
  1273. Caption = '6'
  1274. DataBinding.FieldName = 'C06'
  1275. PropertiesClassName = 'TcxSpinEditProperties'
  1276. Properties.Alignment.Horz = taRightJustify
  1277. Properties.Alignment.Vert = taVCenter
  1278. Properties.DisplayFormat = '##,##0'
  1279. OnCustomDrawCell = vDayColumnCustomDrawCell
  1280. BestFitMaxWidth = 50
  1281. HeaderAlignmentHorz = taCenter
  1282. HeaderAlignmentVert = vaCenter
  1283. Width = 50
  1284. Position.BandIndex = 1
  1285. Position.ColIndex = 5
  1286. Position.RowIndex = 0
  1287. end
  1288. object vMonColumn7: TcxGridDBBandedColumn
  1289. Caption = '7'
  1290. DataBinding.FieldName = 'C07'
  1291. PropertiesClassName = 'TcxSpinEditProperties'
  1292. Properties.Alignment.Horz = taRightJustify
  1293. Properties.Alignment.Vert = taVCenter
  1294. Properties.DisplayFormat = '##,##0'
  1295. OnCustomDrawCell = vDayColumnCustomDrawCell
  1296. BestFitMaxWidth = 50
  1297. HeaderAlignmentHorz = taCenter
  1298. HeaderAlignmentVert = vaCenter
  1299. Width = 50
  1300. Position.BandIndex = 1
  1301. Position.ColIndex = 6
  1302. Position.RowIndex = 0
  1303. end
  1304. object vMonColumn8: TcxGridDBBandedColumn
  1305. Caption = '8'
  1306. DataBinding.FieldName = 'C08'
  1307. PropertiesClassName = 'TcxSpinEditProperties'
  1308. Properties.Alignment.Horz = taRightJustify
  1309. Properties.Alignment.Vert = taVCenter
  1310. Properties.DisplayFormat = '##,##0'
  1311. OnCustomDrawCell = vDayColumnCustomDrawCell
  1312. BestFitMaxWidth = 50
  1313. HeaderAlignmentHorz = taCenter
  1314. HeaderAlignmentVert = vaCenter
  1315. Width = 50
  1316. Position.BandIndex = 1
  1317. Position.ColIndex = 7
  1318. Position.RowIndex = 0
  1319. end
  1320. object vMonColumn9: TcxGridDBBandedColumn
  1321. Caption = '9'
  1322. DataBinding.FieldName = 'C09'
  1323. PropertiesClassName = 'TcxSpinEditProperties'
  1324. Properties.Alignment.Horz = taRightJustify
  1325. Properties.Alignment.Vert = taVCenter
  1326. Properties.DisplayFormat = '##,##0'
  1327. OnCustomDrawCell = vDayColumnCustomDrawCell
  1328. BestFitMaxWidth = 50
  1329. HeaderAlignmentHorz = taCenter
  1330. HeaderAlignmentVert = vaCenter
  1331. Width = 50
  1332. Position.BandIndex = 1
  1333. Position.ColIndex = 8
  1334. Position.RowIndex = 0
  1335. end
  1336. object vMonColumn10: TcxGridDBBandedColumn
  1337. Caption = '10'
  1338. DataBinding.FieldName = 'C10'
  1339. PropertiesClassName = 'TcxSpinEditProperties'
  1340. Properties.Alignment.Horz = taRightJustify
  1341. Properties.Alignment.Vert = taVCenter
  1342. Properties.DisplayFormat = '##,##0'
  1343. OnCustomDrawCell = vDayColumnCustomDrawCell
  1344. BestFitMaxWidth = 50
  1345. HeaderAlignmentHorz = taCenter
  1346. HeaderAlignmentVert = vaCenter
  1347. Width = 50
  1348. Position.BandIndex = 1
  1349. Position.ColIndex = 9
  1350. Position.RowIndex = 0
  1351. end
  1352. object vMonColumn11: TcxGridDBBandedColumn
  1353. Caption = '11'
  1354. DataBinding.FieldName = 'C11'
  1355. PropertiesClassName = 'TcxSpinEditProperties'
  1356. Properties.Alignment.Horz = taRightJustify
  1357. Properties.Alignment.Vert = taVCenter
  1358. Properties.DisplayFormat = '##,##0'
  1359. OnCustomDrawCell = vDayColumnCustomDrawCell
  1360. BestFitMaxWidth = 50
  1361. HeaderAlignmentHorz = taCenter
  1362. HeaderAlignmentVert = vaCenter
  1363. Width = 50
  1364. Position.BandIndex = 1
  1365. Position.ColIndex = 10
  1366. Position.RowIndex = 0
  1367. end
  1368. object vMonColumn12: TcxGridDBBandedColumn
  1369. Caption = '12'
  1370. DataBinding.FieldName = 'C12'
  1371. PropertiesClassName = 'TcxSpinEditProperties'
  1372. Properties.Alignment.Horz = taRightJustify
  1373. Properties.Alignment.Vert = taVCenter
  1374. Properties.DisplayFormat = '##,##0'
  1375. OnCustomDrawCell = vDayColumnCustomDrawCell
  1376. BestFitMaxWidth = 50
  1377. HeaderAlignmentHorz = taCenter
  1378. HeaderAlignmentVert = vaCenter
  1379. Width = 50
  1380. Position.BandIndex = 1
  1381. Position.ColIndex = 11
  1382. Position.RowIndex = 0
  1383. end
  1384. object vMonColumn13: TcxGridDBBandedColumn
  1385. Caption = '13'
  1386. DataBinding.FieldName = 'C13'
  1387. PropertiesClassName = 'TcxSpinEditProperties'
  1388. Properties.Alignment.Horz = taRightJustify
  1389. Properties.Alignment.Vert = taVCenter
  1390. Properties.DisplayFormat = '##,##0'
  1391. OnCustomDrawCell = vDayColumnCustomDrawCell
  1392. BestFitMaxWidth = 50
  1393. HeaderAlignmentHorz = taCenter
  1394. HeaderAlignmentVert = vaCenter
  1395. Width = 50
  1396. Position.BandIndex = 1
  1397. Position.ColIndex = 12
  1398. Position.RowIndex = 0
  1399. end
  1400. object vMonColumn14: TcxGridDBBandedColumn
  1401. Caption = '14'
  1402. DataBinding.FieldName = 'C14'
  1403. PropertiesClassName = 'TcxSpinEditProperties'
  1404. Properties.Alignment.Horz = taRightJustify
  1405. Properties.Alignment.Vert = taVCenter
  1406. Properties.DisplayFormat = '##,##0'
  1407. OnCustomDrawCell = vDayColumnCustomDrawCell
  1408. BestFitMaxWidth = 50
  1409. HeaderAlignmentHorz = taCenter
  1410. HeaderAlignmentVert = vaCenter
  1411. Width = 50
  1412. Position.BandIndex = 1
  1413. Position.ColIndex = 13
  1414. Position.RowIndex = 0
  1415. end
  1416. object vMonColumn15: TcxGridDBBandedColumn
  1417. Caption = '15'
  1418. DataBinding.FieldName = 'C15'
  1419. PropertiesClassName = 'TcxSpinEditProperties'
  1420. Properties.Alignment.Horz = taRightJustify
  1421. Properties.Alignment.Vert = taVCenter
  1422. Properties.DisplayFormat = '##,##0'
  1423. OnCustomDrawCell = vDayColumnCustomDrawCell
  1424. BestFitMaxWidth = 50
  1425. HeaderAlignmentHorz = taCenter
  1426. HeaderAlignmentVert = vaCenter
  1427. Width = 50
  1428. Position.BandIndex = 1
  1429. Position.ColIndex = 14
  1430. Position.RowIndex = 0
  1431. end
  1432. object vMonColumn16: TcxGridDBBandedColumn
  1433. Caption = '16'
  1434. DataBinding.FieldName = 'C16'
  1435. PropertiesClassName = 'TcxSpinEditProperties'
  1436. Properties.Alignment.Horz = taRightJustify
  1437. Properties.Alignment.Vert = taVCenter
  1438. Properties.DisplayFormat = '##,##0'
  1439. OnCustomDrawCell = vDayColumnCustomDrawCell
  1440. BestFitMaxWidth = 50
  1441. HeaderAlignmentHorz = taCenter
  1442. HeaderAlignmentVert = vaCenter
  1443. Width = 50
  1444. Position.BandIndex = 1
  1445. Position.ColIndex = 15
  1446. Position.RowIndex = 0
  1447. end
  1448. object vMonColumn17: TcxGridDBBandedColumn
  1449. Caption = '17'
  1450. DataBinding.FieldName = 'C17'
  1451. PropertiesClassName = 'TcxSpinEditProperties'
  1452. Properties.Alignment.Horz = taRightJustify
  1453. Properties.Alignment.Vert = taVCenter
  1454. Properties.DisplayFormat = '##,##0'
  1455. OnCustomDrawCell = vDayColumnCustomDrawCell
  1456. BestFitMaxWidth = 50
  1457. HeaderAlignmentHorz = taCenter
  1458. HeaderAlignmentVert = vaCenter
  1459. Width = 50
  1460. Position.BandIndex = 1
  1461. Position.ColIndex = 16
  1462. Position.RowIndex = 0
  1463. end
  1464. object vMonColumn18: TcxGridDBBandedColumn
  1465. Caption = '18'
  1466. DataBinding.FieldName = 'C18'
  1467. PropertiesClassName = 'TcxSpinEditProperties'
  1468. Properties.Alignment.Horz = taRightJustify
  1469. Properties.Alignment.Vert = taVCenter
  1470. Properties.DisplayFormat = '##,##0'
  1471. OnCustomDrawCell = vDayColumnCustomDrawCell
  1472. BestFitMaxWidth = 50
  1473. HeaderAlignmentHorz = taCenter
  1474. HeaderAlignmentVert = vaCenter
  1475. Width = 50
  1476. Position.BandIndex = 1
  1477. Position.ColIndex = 17
  1478. Position.RowIndex = 0
  1479. end
  1480. object vMonColumn19: TcxGridDBBandedColumn
  1481. Caption = '19'
  1482. DataBinding.FieldName = 'C19'
  1483. PropertiesClassName = 'TcxSpinEditProperties'
  1484. Properties.Alignment.Horz = taRightJustify
  1485. Properties.Alignment.Vert = taVCenter
  1486. Properties.DisplayFormat = '##,##0'
  1487. OnCustomDrawCell = vDayColumnCustomDrawCell
  1488. BestFitMaxWidth = 50
  1489. HeaderAlignmentHorz = taCenter
  1490. HeaderAlignmentVert = vaCenter
  1491. Width = 50
  1492. Position.BandIndex = 1
  1493. Position.ColIndex = 18
  1494. Position.RowIndex = 0
  1495. end
  1496. object vMonColumn20: TcxGridDBBandedColumn
  1497. Caption = '20'
  1498. DataBinding.FieldName = 'C20'
  1499. PropertiesClassName = 'TcxSpinEditProperties'
  1500. Properties.Alignment.Horz = taRightJustify
  1501. Properties.Alignment.Vert = taVCenter
  1502. Properties.DisplayFormat = '##,##0'
  1503. OnCustomDrawCell = vDayColumnCustomDrawCell
  1504. BestFitMaxWidth = 50
  1505. HeaderAlignmentHorz = taCenter
  1506. HeaderAlignmentVert = vaCenter
  1507. Width = 50
  1508. Position.BandIndex = 1
  1509. Position.ColIndex = 19
  1510. Position.RowIndex = 0
  1511. end
  1512. object vMonColumn21: TcxGridDBBandedColumn
  1513. Caption = '21'
  1514. DataBinding.FieldName = 'C21'
  1515. PropertiesClassName = 'TcxSpinEditProperties'
  1516. Properties.Alignment.Horz = taRightJustify
  1517. Properties.Alignment.Vert = taVCenter
  1518. Properties.DisplayFormat = '##,##0'
  1519. OnCustomDrawCell = vDayColumnCustomDrawCell
  1520. BestFitMaxWidth = 50
  1521. HeaderAlignmentHorz = taCenter
  1522. HeaderAlignmentVert = vaCenter
  1523. Width = 50
  1524. Position.BandIndex = 1
  1525. Position.ColIndex = 20
  1526. Position.RowIndex = 0
  1527. end
  1528. object vMonColumn22: TcxGridDBBandedColumn
  1529. Caption = '22'
  1530. DataBinding.FieldName = 'C22'
  1531. PropertiesClassName = 'TcxSpinEditProperties'
  1532. Properties.Alignment.Horz = taRightJustify
  1533. Properties.Alignment.Vert = taVCenter
  1534. Properties.DisplayFormat = '##,##0'
  1535. OnCustomDrawCell = vDayColumnCustomDrawCell
  1536. BestFitMaxWidth = 50
  1537. HeaderAlignmentHorz = taCenter
  1538. HeaderAlignmentVert = vaCenter
  1539. Width = 50
  1540. Position.BandIndex = 1
  1541. Position.ColIndex = 21
  1542. Position.RowIndex = 0
  1543. end
  1544. object vMonColumn23: TcxGridDBBandedColumn
  1545. Caption = '23'
  1546. DataBinding.FieldName = 'C23'
  1547. PropertiesClassName = 'TcxSpinEditProperties'
  1548. Properties.Alignment.Horz = taRightJustify
  1549. Properties.Alignment.Vert = taVCenter
  1550. Properties.DisplayFormat = '##,##0'
  1551. OnCustomDrawCell = vDayColumnCustomDrawCell
  1552. BestFitMaxWidth = 50
  1553. HeaderAlignmentHorz = taCenter
  1554. HeaderAlignmentVert = vaCenter
  1555. Width = 50
  1556. Position.BandIndex = 1
  1557. Position.ColIndex = 22
  1558. Position.RowIndex = 0
  1559. end
  1560. object vMonColumn24: TcxGridDBBandedColumn
  1561. Caption = '24'
  1562. DataBinding.FieldName = 'C24'
  1563. PropertiesClassName = 'TcxSpinEditProperties'
  1564. Properties.Alignment.Horz = taRightJustify
  1565. Properties.Alignment.Vert = taVCenter
  1566. Properties.DisplayFormat = '##,##0'
  1567. OnCustomDrawCell = vDayColumnCustomDrawCell
  1568. BestFitMaxWidth = 50
  1569. HeaderAlignmentHorz = taCenter
  1570. HeaderAlignmentVert = vaCenter
  1571. Width = 50
  1572. Position.BandIndex = 1
  1573. Position.ColIndex = 23
  1574. Position.RowIndex = 0
  1575. end
  1576. object vMonColumn25: TcxGridDBBandedColumn
  1577. Caption = '25'
  1578. DataBinding.FieldName = 'C25'
  1579. PropertiesClassName = 'TcxSpinEditProperties'
  1580. Properties.Alignment.Horz = taRightJustify
  1581. Properties.Alignment.Vert = taVCenter
  1582. Properties.DisplayFormat = '##,##0'
  1583. OnCustomDrawCell = vDayColumnCustomDrawCell
  1584. BestFitMaxWidth = 50
  1585. HeaderAlignmentHorz = taCenter
  1586. HeaderAlignmentVert = vaCenter
  1587. Width = 50
  1588. Position.BandIndex = 1
  1589. Position.ColIndex = 24
  1590. Position.RowIndex = 0
  1591. end
  1592. object vMonColumn26: TcxGridDBBandedColumn
  1593. Caption = '26'
  1594. DataBinding.FieldName = 'C26'
  1595. PropertiesClassName = 'TcxSpinEditProperties'
  1596. Properties.Alignment.Horz = taRightJustify
  1597. Properties.Alignment.Vert = taVCenter
  1598. Properties.DisplayFormat = '##,##0'
  1599. OnCustomDrawCell = vDayColumnCustomDrawCell
  1600. BestFitMaxWidth = 50
  1601. HeaderAlignmentHorz = taCenter
  1602. HeaderAlignmentVert = vaCenter
  1603. Width = 50
  1604. Position.BandIndex = 1
  1605. Position.ColIndex = 25
  1606. Position.RowIndex = 0
  1607. end
  1608. object vMonColumn27: TcxGridDBBandedColumn
  1609. Caption = '27'
  1610. DataBinding.FieldName = 'C27'
  1611. PropertiesClassName = 'TcxSpinEditProperties'
  1612. Properties.Alignment.Horz = taRightJustify
  1613. Properties.Alignment.Vert = taVCenter
  1614. Properties.DisplayFormat = '##,##0'
  1615. OnCustomDrawCell = vDayColumnCustomDrawCell
  1616. BestFitMaxWidth = 50
  1617. HeaderAlignmentHorz = taCenter
  1618. HeaderAlignmentVert = vaCenter
  1619. Width = 50
  1620. Position.BandIndex = 1
  1621. Position.ColIndex = 26
  1622. Position.RowIndex = 0
  1623. end
  1624. object vMonColumn28: TcxGridDBBandedColumn
  1625. Caption = '28'
  1626. DataBinding.FieldName = 'C28'
  1627. PropertiesClassName = 'TcxSpinEditProperties'
  1628. Properties.Alignment.Horz = taRightJustify
  1629. Properties.Alignment.Vert = taVCenter
  1630. Properties.DisplayFormat = '##,##0'
  1631. OnCustomDrawCell = vDayColumnCustomDrawCell
  1632. BestFitMaxWidth = 50
  1633. HeaderAlignmentHorz = taCenter
  1634. HeaderAlignmentVert = vaCenter
  1635. Width = 50
  1636. Position.BandIndex = 1
  1637. Position.ColIndex = 27
  1638. Position.RowIndex = 0
  1639. end
  1640. object vMonColumn29: TcxGridDBBandedColumn
  1641. Caption = '29'
  1642. DataBinding.FieldName = 'C29'
  1643. PropertiesClassName = 'TcxSpinEditProperties'
  1644. Properties.Alignment.Horz = taRightJustify
  1645. Properties.Alignment.Vert = taVCenter
  1646. Properties.DisplayFormat = '##,##0'
  1647. OnCustomDrawCell = vDayColumnCustomDrawCell
  1648. BestFitMaxWidth = 50
  1649. HeaderAlignmentHorz = taCenter
  1650. HeaderAlignmentVert = vaCenter
  1651. Width = 50
  1652. Position.BandIndex = 1
  1653. Position.ColIndex = 28
  1654. Position.RowIndex = 0
  1655. end
  1656. object vMonColumn30: TcxGridDBBandedColumn
  1657. Caption = '30'
  1658. DataBinding.FieldName = 'C30'
  1659. PropertiesClassName = 'TcxSpinEditProperties'
  1660. Properties.Alignment.Horz = taRightJustify
  1661. Properties.Alignment.Vert = taVCenter
  1662. Properties.DisplayFormat = '##,##0'
  1663. OnCustomDrawCell = vDayColumnCustomDrawCell
  1664. BestFitMaxWidth = 50
  1665. HeaderAlignmentHorz = taCenter
  1666. HeaderAlignmentVert = vaCenter
  1667. Width = 50
  1668. Position.BandIndex = 1
  1669. Position.ColIndex = 29
  1670. Position.RowIndex = 0
  1671. end
  1672. object vMonColumn31: TcxGridDBBandedColumn
  1673. Caption = '31'
  1674. DataBinding.FieldName = 'C31'
  1675. PropertiesClassName = 'TcxSpinEditProperties'
  1676. Properties.Alignment.Horz = taRightJustify
  1677. Properties.Alignment.Vert = taVCenter
  1678. Properties.DisplayFormat = '##,##0'
  1679. OnCustomDrawCell = vDayColumnCustomDrawCell
  1680. BestFitMaxWidth = 50
  1681. HeaderAlignmentHorz = taCenter
  1682. HeaderAlignmentVert = vaCenter
  1683. Width = 50
  1684. Position.BandIndex = 1
  1685. Position.ColIndex = 30
  1686. Position.RowIndex = 0
  1687. end
  1688. object TvMonColumn1: TcxGridDBBandedColumn
  1689. Caption = #44160#51648#44592#47749#52845
  1690. DataBinding.FieldName = 'VDS_DTCT_NM'
  1691. HeaderAlignmentHorz = taCenter
  1692. HeaderAlignmentVert = vaCenter
  1693. Width = 74
  1694. Position.BandIndex = 0
  1695. Position.ColIndex = 5
  1696. Position.RowIndex = 0
  1697. end
  1698. end
  1699. object GlMon: TcxGridLevel
  1700. GridView = TvMon
  1701. end
  1702. end
  1703. end
  1704. object TsListYear: TcxTabSheet
  1705. Caption = #50900#48324' '#53685#44228' '
  1706. ImageIndex = 2
  1707. TabVisible = False
  1708. object PnlYearGraph: TPanel
  1709. Left = 0
  1710. Top = 284
  1711. Width = 1331
  1712. Height = 320
  1713. Align = alBottom
  1714. BevelInner = bvLowered
  1715. BevelOuter = bvNone
  1716. TabOrder = 0
  1717. end
  1718. object SplYear: TcxSplitter
  1719. Left = 0
  1720. Top = 278
  1721. Width = 1331
  1722. Height = 6
  1723. HotZoneClassName = 'TcxSimpleStyle'
  1724. AlignSplitter = salBottom
  1725. ResizeUpdate = True
  1726. Control = PnlYearGraph
  1727. Color = 3893744
  1728. ParentColor = False
  1729. end
  1730. object CxYear: TcxGrid
  1731. Left = 0
  1732. Top = 0
  1733. Width = 1331
  1734. Height = 278
  1735. Align = alClient
  1736. TabOrder = 2
  1737. LookAndFeel.Kind = lfUltraFlat
  1738. LookAndFeel.NativeStyle = False
  1739. object TvYear: TcxGridDBBandedTableView
  1740. DataController.Summary.DefaultGroupSummaryItems = <>
  1741. DataController.Summary.FooterSummaryItems = <>
  1742. DataController.Summary.SummaryGroups = <>
  1743. DataController.Summary.Options = [soNullIgnore]
  1744. FilterRow.InfoText = #44160#49353#50612' '#51077#47141
  1745. OptionsBehavior.CellHints = True
  1746. OptionsCustomize.ColumnFiltering = False
  1747. OptionsCustomize.ColumnHidingOnGrouping = False
  1748. OptionsCustomize.ColumnMoving = False
  1749. OptionsCustomize.ColumnSorting = False
  1750. OptionsCustomize.BandMoving = False
  1751. OptionsCustomize.ColumnVertSizing = False
  1752. OptionsData.CancelOnExit = False
  1753. OptionsData.Deleting = False
  1754. OptionsData.DeletingConfirmation = False
  1755. OptionsData.Editing = False
  1756. OptionsData.Inserting = False
  1757. OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
  1758. OptionsView.GroupByBox = False
  1759. OptionsView.GroupFooters = gfVisibleWhenExpanded
  1760. OptionsView.FixedBandSeparatorColor = 10849679
  1761. OptionsView.FixedBandSeparatorWidth = 0
  1762. Bands = <
  1763. item
  1764. Caption = #44396#48516
  1765. FixedKind = fkLeft
  1766. Width = 455
  1767. end
  1768. item
  1769. Caption = #50900#48324' '#53685#44228'(km/h)'
  1770. end>
  1771. object vYearColumnNo: TcxGridDBBandedColumn
  1772. Caption = #44036#49440#46020#47196#47749
  1773. DataBinding.FieldName = 'ARTERYNAME'
  1774. PropertiesClassName = 'TcxTextEditProperties'
  1775. Properties.Alignment.Horz = taLeftJustify
  1776. Properties.Alignment.Vert = taVCenter
  1777. BestFitMaxWidth = 55
  1778. HeaderAlignmentHorz = taCenter
  1779. HeaderAlignmentVert = vaCenter
  1780. Options.CellMerging = True
  1781. Width = 181
  1782. Position.BandIndex = 0
  1783. Position.ColIndex = 0
  1784. Position.RowIndex = 0
  1785. end
  1786. object vYearColumnTot: TcxGridDBBandedColumn
  1787. Caption = #48169#54693
  1788. DataBinding.FieldName = 'DIRECTIONNAME'
  1789. PropertiesClassName = 'TcxTextEditProperties'
  1790. Properties.Alignment.Horz = taCenter
  1791. Properties.Alignment.Vert = taVCenter
  1792. BestFitMaxWidth = 70
  1793. HeaderAlignmentHorz = taCenter
  1794. HeaderAlignmentVert = vaCenter
  1795. Options.CellMerging = True
  1796. Width = 76
  1797. Position.BandIndex = 0
  1798. Position.ColIndex = 1
  1799. Position.RowIndex = 0
  1800. end
  1801. object vYearColumnNm: TcxGridDBBandedColumn
  1802. Caption = #44600#51060'(m)'
  1803. DataBinding.FieldName = 'ARTERYLENGHT'
  1804. PropertiesClassName = 'TcxSpinEditProperties'
  1805. Properties.Alignment.Horz = taRightJustify
  1806. Properties.Alignment.Vert = taVCenter
  1807. Properties.DisplayFormat = '#,##0'
  1808. BestFitMaxWidth = 195
  1809. HeaderAlignmentHorz = taCenter
  1810. HeaderAlignmentVert = vaCenter
  1811. Options.CellMerging = True
  1812. Width = 67
  1813. Position.BandIndex = 0
  1814. Position.ColIndex = 2
  1815. Position.RowIndex = 0
  1816. end
  1817. object vYearColumnAvg: TcxGridDBBandedColumn
  1818. Caption = #54217#44512
  1819. DataBinding.FieldName = 'ARTERYSPD'
  1820. PropertiesClassName = 'TcxSpinEditProperties'
  1821. Properties.Alignment.Horz = taRightJustify
  1822. Properties.Alignment.Vert = taVCenter
  1823. OnCustomDrawCell = vDayColumnCustomDrawCell
  1824. BestFitMaxWidth = 80
  1825. HeaderAlignmentHorz = taCenter
  1826. HeaderAlignmentVert = vaCenter
  1827. Width = 61
  1828. Position.BandIndex = 0
  1829. Position.ColIndex = 4
  1830. Position.RowIndex = 0
  1831. end
  1832. object vYearColumn1: TcxGridDBBandedColumn
  1833. Caption = '1'
  1834. DataBinding.FieldName = 'C01'
  1835. PropertiesClassName = 'TcxSpinEditProperties'
  1836. Properties.Alignment.Horz = taRightJustify
  1837. Properties.Alignment.Vert = taVCenter
  1838. Properties.DisplayFormat = '##,##0'
  1839. OnCustomDrawCell = vDayColumnCustomDrawCell
  1840. BestFitMaxWidth = 80
  1841. HeaderAlignmentHorz = taCenter
  1842. HeaderAlignmentVert = vaCenter
  1843. Width = 80
  1844. Position.BandIndex = 1
  1845. Position.ColIndex = 0
  1846. Position.RowIndex = 0
  1847. end
  1848. object vYearColumn2: TcxGridDBBandedColumn
  1849. Caption = '2'
  1850. DataBinding.FieldName = 'C02'
  1851. PropertiesClassName = 'TcxSpinEditProperties'
  1852. Properties.Alignment.Horz = taRightJustify
  1853. Properties.Alignment.Vert = taVCenter
  1854. Properties.DisplayFormat = '##,##0'
  1855. OnCustomDrawCell = vDayColumnCustomDrawCell
  1856. BestFitMaxWidth = 80
  1857. HeaderAlignmentHorz = taCenter
  1858. HeaderAlignmentVert = vaCenter
  1859. Width = 80
  1860. Position.BandIndex = 1
  1861. Position.ColIndex = 1
  1862. Position.RowIndex = 0
  1863. end
  1864. object vYearColumn3: TcxGridDBBandedColumn
  1865. Caption = '3'
  1866. DataBinding.FieldName = 'C03'
  1867. PropertiesClassName = 'TcxSpinEditProperties'
  1868. Properties.Alignment.Horz = taRightJustify
  1869. Properties.Alignment.Vert = taVCenter
  1870. Properties.DisplayFormat = '##,##0'
  1871. OnCustomDrawCell = vDayColumnCustomDrawCell
  1872. BestFitMaxWidth = 80
  1873. HeaderAlignmentHorz = taCenter
  1874. HeaderAlignmentVert = vaCenter
  1875. Width = 80
  1876. Position.BandIndex = 1
  1877. Position.ColIndex = 2
  1878. Position.RowIndex = 0
  1879. end
  1880. object vYearColumn4: TcxGridDBBandedColumn
  1881. Caption = '4'
  1882. DataBinding.FieldName = 'C04'
  1883. PropertiesClassName = 'TcxSpinEditProperties'
  1884. Properties.Alignment.Horz = taRightJustify
  1885. Properties.Alignment.Vert = taVCenter
  1886. Properties.DisplayFormat = '##,##0'
  1887. OnCustomDrawCell = vDayColumnCustomDrawCell
  1888. BestFitMaxWidth = 80
  1889. HeaderAlignmentHorz = taCenter
  1890. HeaderAlignmentVert = vaCenter
  1891. Width = 80
  1892. Position.BandIndex = 1
  1893. Position.ColIndex = 3
  1894. Position.RowIndex = 0
  1895. end
  1896. object vYearColumn5: TcxGridDBBandedColumn
  1897. Caption = '5'
  1898. DataBinding.FieldName = 'C05'
  1899. PropertiesClassName = 'TcxSpinEditProperties'
  1900. Properties.Alignment.Horz = taRightJustify
  1901. Properties.Alignment.Vert = taVCenter
  1902. Properties.DisplayFormat = '##,##0'
  1903. OnCustomDrawCell = vDayColumnCustomDrawCell
  1904. BestFitMaxWidth = 80
  1905. HeaderAlignmentHorz = taCenter
  1906. HeaderAlignmentVert = vaCenter
  1907. Width = 80
  1908. Position.BandIndex = 1
  1909. Position.ColIndex = 4
  1910. Position.RowIndex = 0
  1911. end
  1912. object vYearColumn6: TcxGridDBBandedColumn
  1913. Caption = '6'
  1914. DataBinding.FieldName = 'C06'
  1915. PropertiesClassName = 'TcxSpinEditProperties'
  1916. Properties.Alignment.Horz = taRightJustify
  1917. Properties.Alignment.Vert = taVCenter
  1918. Properties.DisplayFormat = '##,##0'
  1919. OnCustomDrawCell = vDayColumnCustomDrawCell
  1920. BestFitMaxWidth = 80
  1921. HeaderAlignmentHorz = taCenter
  1922. HeaderAlignmentVert = vaCenter
  1923. Width = 80
  1924. Position.BandIndex = 1
  1925. Position.ColIndex = 5
  1926. Position.RowIndex = 0
  1927. end
  1928. object vYearColumn7: TcxGridDBBandedColumn
  1929. Caption = '7'
  1930. DataBinding.FieldName = 'C07'
  1931. PropertiesClassName = 'TcxSpinEditProperties'
  1932. Properties.Alignment.Horz = taRightJustify
  1933. Properties.Alignment.Vert = taVCenter
  1934. Properties.DisplayFormat = '##,##0'
  1935. OnCustomDrawCell = vDayColumnCustomDrawCell
  1936. BestFitMaxWidth = 80
  1937. HeaderAlignmentHorz = taCenter
  1938. HeaderAlignmentVert = vaCenter
  1939. Width = 80
  1940. Position.BandIndex = 1
  1941. Position.ColIndex = 6
  1942. Position.RowIndex = 0
  1943. end
  1944. object vYearColumn8: TcxGridDBBandedColumn
  1945. Caption = '8'
  1946. DataBinding.FieldName = 'C08'
  1947. PropertiesClassName = 'TcxSpinEditProperties'
  1948. Properties.Alignment.Horz = taRightJustify
  1949. Properties.Alignment.Vert = taVCenter
  1950. Properties.DisplayFormat = '##,##0'
  1951. OnCustomDrawCell = vDayColumnCustomDrawCell
  1952. BestFitMaxWidth = 80
  1953. HeaderAlignmentHorz = taCenter
  1954. HeaderAlignmentVert = vaCenter
  1955. Width = 80
  1956. Position.BandIndex = 1
  1957. Position.ColIndex = 7
  1958. Position.RowIndex = 0
  1959. end
  1960. object vYearColumn9: TcxGridDBBandedColumn
  1961. Caption = '9'
  1962. DataBinding.FieldName = 'C09'
  1963. PropertiesClassName = 'TcxSpinEditProperties'
  1964. Properties.Alignment.Horz = taRightJustify
  1965. Properties.Alignment.Vert = taVCenter
  1966. Properties.DisplayFormat = '##,##0'
  1967. OnCustomDrawCell = vDayColumnCustomDrawCell
  1968. BestFitMaxWidth = 80
  1969. HeaderAlignmentHorz = taCenter
  1970. HeaderAlignmentVert = vaCenter
  1971. Width = 80
  1972. Position.BandIndex = 1
  1973. Position.ColIndex = 8
  1974. Position.RowIndex = 0
  1975. end
  1976. object vYearColumn10: TcxGridDBBandedColumn
  1977. Caption = '10'
  1978. DataBinding.FieldName = 'C10'
  1979. PropertiesClassName = 'TcxSpinEditProperties'
  1980. Properties.Alignment.Horz = taRightJustify
  1981. Properties.Alignment.Vert = taVCenter
  1982. Properties.DisplayFormat = '##,##0'
  1983. OnCustomDrawCell = vDayColumnCustomDrawCell
  1984. BestFitMaxWidth = 80
  1985. HeaderAlignmentHorz = taCenter
  1986. HeaderAlignmentVert = vaCenter
  1987. Width = 80
  1988. Position.BandIndex = 1
  1989. Position.ColIndex = 9
  1990. Position.RowIndex = 0
  1991. end
  1992. object vYearColumn11: TcxGridDBBandedColumn
  1993. Caption = '11'
  1994. DataBinding.FieldName = 'C11'
  1995. PropertiesClassName = 'TcxSpinEditProperties'
  1996. Properties.Alignment.Horz = taRightJustify
  1997. Properties.Alignment.Vert = taVCenter
  1998. Properties.DisplayFormat = '##,##0'
  1999. OnCustomDrawCell = vDayColumnCustomDrawCell
  2000. BestFitMaxWidth = 80
  2001. HeaderAlignmentHorz = taCenter
  2002. HeaderAlignmentVert = vaCenter
  2003. Width = 80
  2004. Position.BandIndex = 1
  2005. Position.ColIndex = 10
  2006. Position.RowIndex = 0
  2007. end
  2008. object vYearColumn12: TcxGridDBBandedColumn
  2009. Caption = '12'
  2010. DataBinding.FieldName = 'C12'
  2011. PropertiesClassName = 'TcxSpinEditProperties'
  2012. Properties.Alignment.Horz = taRightJustify
  2013. Properties.Alignment.Vert = taVCenter
  2014. Properties.DisplayFormat = '##,##0'
  2015. OnCustomDrawCell = vDayColumnCustomDrawCell
  2016. BestFitMaxWidth = 80
  2017. HeaderAlignmentHorz = taCenter
  2018. HeaderAlignmentVert = vaCenter
  2019. Width = 80
  2020. Position.BandIndex = 1
  2021. Position.ColIndex = 11
  2022. Position.RowIndex = 0
  2023. end
  2024. object TvYearColumn1: TcxGridDBBandedColumn
  2025. Caption = #49688#51665#50896
  2026. DataBinding.FieldName = 'TRFTYPE'
  2027. Visible = False
  2028. HeaderAlignmentHorz = taCenter
  2029. HeaderAlignmentVert = vaCenter
  2030. VisibleForCustomization = False
  2031. Width = 68
  2032. Position.BandIndex = 0
  2033. Position.ColIndex = 3
  2034. Position.RowIndex = 0
  2035. end
  2036. end
  2037. object GlYear: TcxGridLevel
  2038. GridView = TvYear
  2039. end
  2040. end
  2041. end
  2042. end
  2043. object BtnClose: TcxButton
  2044. Left = 1261
  2045. Top = 11
  2046. Width = 80
  2047. Height = 25
  2048. Cursor = crHandPoint
  2049. Hint = #45803#44592
  2050. Anchors = [akTop, akRight]
  2051. Caption = #45803#44592
  2052. Colors.Default = 10737865
  2053. LookAndFeel.NativeStyle = False
  2054. TabOrder = 6
  2055. Font.Charset = DEFAULT_CHARSET
  2056. Font.Color = clWindowText
  2057. Font.Height = -13
  2058. Font.Name = #47569#51008' '#44256#46357
  2059. Font.Style = [fsBold]
  2060. ParentFont = False
  2061. OnClick = BtnCloseClick
  2062. end
  2063. object CbLinkLevel: TComboBox
  2064. Left = 542
  2065. Top = 50
  2066. Width = 45
  2067. Height = 25
  2068. Style = csDropDownList
  2069. ImeName = #54620#44397#50612' '#51077#47141' '#49884#49828#53596' (IME 2000)'
  2070. ItemIndex = 0
  2071. TabOrder = 7
  2072. Text = '1'
  2073. Visible = False
  2074. Items.Strings = (
  2075. '1'
  2076. '2')
  2077. end
  2078. object CbStatCfg: TComboBox
  2079. Left = 637
  2080. Top = 8
  2081. Width = 124
  2082. Height = 21
  2083. Style = csDropDownList
  2084. Font.Charset = DEFAULT_CHARSET
  2085. Font.Color = clHighlight
  2086. Font.Height = -13
  2087. Font.Name = #44404#47548
  2088. Font.Style = []
  2089. ImeName = 'Microsoft Office IME 2007'
  2090. ItemIndex = 0
  2091. ParentFont = False
  2092. TabOrder = 8
  2093. Text = #53685#44228#51221#48372
  2094. Visible = False
  2095. Items.Strings = (
  2096. #53685#44228#51221#48372)
  2097. end
  2098. object TmrRefresh: TTimer
  2099. Enabled = False
  2100. Interval = 500
  2101. OnTimer = TmrRefreshTimer
  2102. Left = 333
  2103. Top = 285
  2104. end
  2105. object LimgTmp: TImageList
  2106. DrawingStyle = dsTransparent
  2107. ShareImages = True
  2108. Left = 478
  2109. Top = 12
  2110. Bitmap = {
  2111. 494C01010A000D00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2112. 0000000000003600000028000000400000003000000001002000000000000030
  2113. 0000000000000000000000000000000000000000000000000000000000000000
  2114. 0000000000000000000000000000000000000000000000000000000000000000
  2115. 0000000000000000000000000000000000000000000000800000008000000080
  2116. 0000008000000080000000800000008000000080000000800000008000000080
  2117. 0000008000000080000000800000000000000000000000000000000000000000
  2118. 0000000000000000000000000000000000000000000000000000000000000000
  2119. 0000000000000000000000000000000000000000000000000000000000000000
  2120. 0000000000000000000000000000000000000000000000000000000000000000
  2121. 0000000000000000000000000000000000000000000000000000000000000000
  2122. 0000000000000000000000000000000000000000000000000000000000000000
  2123. 0000000000000000000000000000000000000080000000800000008000000080
  2124. 0000008000000080000000800000008000000080000000800000008000000080
  2125. 0000008000000080000000800000008000000000000000000000000000000000
  2126. 0000000000000000000000000000000000000000000000000000000000000000
  2127. 0000000000000000000000000000000000000000000000000000000000000000
  2128. 0000000000000000000000000000000000000000000000000000000000000000
  2129. 0000000000000000000000000000000000000000000000000000000000000000
  2130. 00008484840084848400848484008484840084848400848484000000000000FF
  2131. FF00000000008484840000000000000000000080000000800000008000000080
  2132. 0000000000000000000000000000000000000000000000000000000000000000
  2133. 0000008000000080000000800000008000000000000000000000000000000000
  2134. 0000000000000000000000000000000000000000000000000000000000000000
  2135. 0000000000000000000000000000000000000000000000000000000000000000
  2136. 0000000000000000000000000000000000000000000000000000000000000000
  2137. 0000000000000000000000000000000000000000000000000000000000000000
  2138. 0000000000000000000000000000000000000000000000000000FFFFFF00FFFF
  2139. FF00000000000000000084848400000000000080000000800000008000000000
  2140. 0000008000000080000000800000008000000080000000800000008000000080
  2141. 0000000000000080000000800000008000000000000000000000000000000000
  2142. 0000000000000000000000000000000000000000000000000000000000000000
  2143. 0000000000000000000000000000000000000000000000000000000000000000
  2144. 0000000000000000000000000000000000000000000000000000000000000000
  2145. 000000000000000000000000000000000000000000000000000000000000FFFF
  2146. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  2147. FF00FFFFFF00FFFFFF0000000000848484000080000000800000000000000080
  2148. 0000008000000080000000800000008000000080000000800000008000000080
  2149. 0000008000000000000000800000008000000000000000000000000000000000
  2150. 0000000000000000000000000000000000000000000000000000000000000000
  2151. 0000000000000000000000000000000000000000000000000000000000000000
  2152. 0000000000000000000000000000000000000000000000000000000000000000
  2153. 000000000000000000000000000000000000000000000000000000000000FFFF
  2154. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084000000FFFFFF00FFFF
  2155. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2156. 0000008000000080000000800000008000000080000000800000008000000080
  2157. 0000008000000080000000800000008000000000000000000000000000000000
  2158. 0000000000000000000000000000000000000000000000000000000000000000
  2159. 0000000000000000000000000000000000000000000000000000000000000000
  2160. 0000000000000000000000000000000000000000000000000000000000000000
  2161. 000000000000000000000000000000000000000000000000000000000000FFFF
  2162. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  2163. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2164. 0000008000000080000000800000008000000080000000800000008000000080
  2165. 0000008000000080000000800000008000000000000000000000000000000000
  2166. 0000000000000000000000000000000000000000000000000000000000000000
  2167. 0000000000000000000000000000000000000000000000000000000000000000
  2168. 0000000000000000000000000000000000000000000000000000000000000000
  2169. 000000000000000000000000000000000000000000000000000000000000FFFF
  2170. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFF
  2171. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2172. 0000008000000080000000800000008000000080000000800000008000000080
  2173. 0000008000000080000000800000008000000000000000000000000000000000
  2174. 0000000000000000000000000000000000000000000000000000000000000000
  2175. 0000000000000000000000000000000000000000000000000000000000000000
  2176. 0000000000000000000000000000000000000000000000000000000000000000
  2177. 000000000000000000000000000000000000000000000000000000000000FFFF
  2178. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00848484008400000000000000FFFF
  2179. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2180. 0000008000000080000000800000008000000080000000800000008000000080
  2181. 0000008000000080000000800000008000000000000000000000000000000000
  2182. 0000000000000000000000000000000000000000000000000000000000000000
  2183. 0000000000000000000000000000000000000000000000000000000000000000
  2184. 0000000000000000000000000000000000000000000000000000000000000000
  2185. 000000000000000000000000000000000000000000000000000000000000FFFF
  2186. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF0084848400840000008484
  2187. 840000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2188. 0000008000000080000000800000008000000080000000800000008000000080
  2189. 0000008000000080000000800000008000000000000000000000000000000000
  2190. 0000000000000000000000000000000000000000000000000000000000000000
  2191. 0000000000000000000000000000000000000000000000000000000000000000
  2192. 0000000000000000000000000000000000000000000000000000000000000000
  2193. 000000000000000000000000000000000000000000000000000000000000FFFF
  2194. FF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFFFF00840000008400
  2195. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2196. 0000008000000080000000800000008000000080000000800000008000000080
  2197. 0000008000000080000000800000008000000000000000000000000000000000
  2198. 0000000000000000000000000000000000000000000000000000000000000000
  2199. 0000000000000000000000000000000000000000000000000000000000000000
  2200. 0000000000000000000000000000000000000000000000000000000000000000
  2201. 000000000000000000000000000000000000000000000000000000000000FFFF
  2202. FF0000FFFF00FFFFFF00840000008400000000FFFF0000000000840000008400
  2203. 000000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2204. 0000000000000000000000800000008000000080000000800000000000000000
  2205. 0000008000000080000000800000008000000000000000000000000000000000
  2206. 0000000000000000000000000000000000000000000000000000000000000000
  2207. 0000000000000000000000000000000000000000000000000000000000000000
  2208. 0000000000000000000000000000000000000000000000000000000000000000
  2209. 000000000000000000000000000000000000000000000000000000000000FFFF
  2210. FF00FFFFFF00FFFFFF0000000000840000008400000084000000840000000000
  2211. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  2212. 0000000000000000000000800000008000000080000000800000000000000000
  2213. 0000008000000080000000800000008000000000000000000000000000000000
  2214. 0000000000000000000000000000000000000000000000000000000000000000
  2215. 0000000000000000000000000000000000000000000000000000000000000000
  2216. 0000000000000000000000000000000000000000000000000000000000000000
  2217. 000000000000000000000000000000000000000000000000000000000000FFFF
  2218. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFF
  2219. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  2220. 0000008000000080000000800000008000000080000000800000008000000080
  2221. 0000008000000080000000800000008000000000000000000000000000000000
  2222. 0000000000000000000000000000000000000000000000000000000000000000
  2223. 0000000000000000000000000000000000000000000000000000000000000000
  2224. 0000000000000000000000000000000000000000000000000000000000000000
  2225. 000000000000000000000000000000000000000000000000000000000000FFFF
  2226. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  2227. FF00FFFFFF00FFFFFF0000000000000000000080000000800000008000000080
  2228. 0000008000000080000000800000008000000080000000800000008000000080
  2229. 0000008000000080000000800000008000000000000000000000000000000000
  2230. 0000000000000000000000000000000000000000000000000000000000000000
  2231. 0000000000000000000000000000000000000000000000000000000000000000
  2232. 0000000000000000000000000000000000000000000000000000000000000000
  2233. 0000000000000000000000000000000000000000000000000000000000000000
  2234. 0000000000000000000000000000000000000000000000000000000000000000
  2235. 0000000000000000000000000000000000000000000000800000008000000080
  2236. 0000008000000080000000800000008000000080000000800000008000000080
  2237. 0000008000000080000000800000000000000000000000000000000000000000
  2238. 0000000000000000000000000000000000000000000000000000000000000000
  2239. 0000000000000000000000000000000000000000000000000000000000000000
  2240. 0000000000000000000000000000000000000000000000000000000000000000
  2241. 0000000000000000000000000000000000000000000000000000000000000000
  2242. 0000000000000000000000000000000000000000000000000000000000000000
  2243. 0000000000000000000000000000000000000000000000000000000000000000
  2244. 0000000000000000000000000000000000000000000000000000000000000000
  2245. 0000000000000000000000000000000000000000000000000000000000000000
  2246. 0000000000000000000000000000000000000000000000000000000000000000
  2247. 0000000000000000000000000000000000000000000000000000000000000000
  2248. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  2249. 7B00000000000000000000000000000000000000000000000000000000000000
  2250. 0000000000000000000000000000000080000000800000000000000000000000
  2251. 0000000000000000000000000000000000000000000000000000000000000000
  2252. 0000000000000000000000000000000000000000000000000000000000000000
  2253. 0000000000000000000000000000000000000000000000000000000000000000
  2254. 0000000000000000000000000000000000000000000000000000000000000000
  2255. 0000000000000000000000000000000000000000000000000000000000000000
  2256. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  2257. 7B00000000000000000000000000000000000000000000000000000000000000
  2258. 0000000000000000000000008000000080000000800000008000000000000000
  2259. 0000000000000000000000000000000000000000000000840000000000000000
  2260. 0000000000000000000000000000000000000084000000000000000000000000
  2261. 0000000000000000000000000000000000000000000000000000000000000000
  2262. 0000000000000000000000000000808080008080800000000000000000000000
  2263. 0000000000000000000000000000000000000000000000000000000000000000
  2264. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2265. FF000000FF000000000000000000000000000000000000000000000000000000
  2266. 0000000000000000000000008000000080000000800000008000000000000000
  2267. 0000000000000000000000000000000000000000000000840000008400000000
  2268. 0000000000000000000000000000000000000084000000840000000000000000
  2269. 0000000000000000000000000000000000000000000000000000000000000000
  2270. 0000000000000000000000000000000000000000000000000000000000000000
  2271. 0000000000000000000000000000000000000000000000000000000000000000
  2272. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2273. FF000000FF000000FF0000000000000000000000000000000000000000000000
  2274. 0000000000000000000000000000000080000000800000000000000000000000
  2275. 000000000000000000000000000000000000000000000084000000FF00000084
  2276. 0000000000000000000000000000000000000084000000FF0000008400000000
  2277. 0000000000000000000000000000000000000000000000000000000000000000
  2278. 0000000000000000000000000000000000000000000000000000000000000000
  2279. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  2280. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2281. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  2282. 0000000000000000000000000000000000000000000000000000000000000000
  2283. 000000000000000000000000000000000000000000000084000000FF000000FF
  2284. 0000008400000000000000000000000000000084000000FF000000FF00000084
  2285. 0000000000000000000000000000000000000000000000000000000000000000
  2286. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2287. FF000000000000000000000000000000000000000000000000000000FF000000
  2288. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  2289. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2290. 0000000000000000000000000000000080000000800000000000000000000000
  2291. 000000000000000000000000000000000000000000000084000000FF000000FF
  2292. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  2293. 0000008400000000000000000000000000000000000000000000000000000000
  2294. 0000000000000000FF00FFFFFF000000FF000000FF000000FF000000FF000000
  2295. 00000000000000000000000000000000000000000000000000000000FF000000
  2296. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  2297. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2298. 0000000000000000000080808000000080000000800080808000000000000000
  2299. 000000000000000000000000000000000000000000000084000000FF000000FF
  2300. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  2301. 000000FF0000008400000000000000000000000000000000FF000000FF000000
  2302. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2303. 0000000000000000FF000000FF000000000000000000000000000000FF000000
  2304. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  2305. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2306. 0000000000000000000000008000000080000000800000008000000000000000
  2307. 000000000000000000000000000000000000000000000084000000FF000000FF
  2308. 000000FF000000FF000000FF0000008400000084000000FF000000FF000000FF
  2309. 000000FF000000FF000000840000000000000000000000000000000000000000
  2310. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  2311. 00000000000000000000000000000000000000000000000000000000FF000000
  2312. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  2313. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2314. 0000000000000000000000008000000080000000800000008000000000000000
  2315. 000000000000000000000000000000000000000000000084000000FF000000FF
  2316. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  2317. 000000FF00000084000000000000000000000000000000000000000000000000
  2318. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2319. 00000000000000000000000000000000000000000000000000000000FF000000
  2320. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  2321. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  2322. 0000000000000000000000008000000080000000800000008000000000000000
  2323. 000000000000000000000000000000000000000000000084000000FF000000FF
  2324. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  2325. 0000008400000000000000000000000000000000000000000000000000000000
  2326. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  2327. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  2328. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  2329. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  2330. 0000000000000000000000008000000080000000800000008000000000000000
  2331. 000000000000000000000000000000000000000000000084000000FF000000FF
  2332. 0000008400000000000000000000000000000084000000FF000000FF00000084
  2333. 000000000000000000000000000000000000000000000000FF000000FF000000
  2334. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  2335. 0000000000000000FF000000FF00000000000000000000000000000000000000
  2336. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2337. FF000000FF000000FF0000000000000000000000000000000000000000000000
  2338. 0000000000000000000000008000000080000000800000008000000000000000
  2339. 000000000000000000000000000000000000000000000084000000FF00000084
  2340. 0000000000000000000000000000000000000084000000FF0000008400000000
  2341. 0000000000000000000000000000000000000000000000000000000000000000
  2342. 00000000000000000000808080000000FF000000FF0080808000000000000000
  2343. 0000000000000000000000000000000000000000000000000000000000000000
  2344. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  2345. FF000000FF000000000000000000000000000000000000000000000000000000
  2346. 0000000000000000000000008000000080000000800000008000000000000000
  2347. 0000000000000000000000000000000000000000000000840000008400000000
  2348. 0000000000000000000000000000000000000084000000840000000000000000
  2349. 0000000000000000000000000000000000000000000000000000000000000000
  2350. 00000000FF000000000000000000808080008080800000000000000000000000
  2351. FF00000000000000000000000000000000000000000000000000000000000000
  2352. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  2353. 7B00000000000000000000000000000000000000000000000000000000000000
  2354. 0000000000000000000000000000000080000000800000000000000000000000
  2355. 0000000000000000000000000000000000000000000000840000000000000000
  2356. 0000000000000000000000000000000000000084000000000000000000000000
  2357. 0000000000000000000000000000000000000000000000000000000000000000
  2358. FF00000000000000000000000000000000000000000000000000000000000000
  2359. 00000000FF000000000000000000000000000000000000000000000000000000
  2360. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  2361. 7B00000000000000000000000000000000000000000000000000000000000000
  2362. 0000000000000000000000000000000000000000000000000000000000000000
  2363. 0000000000000000000000000000000000000000000000000000000000000000
  2364. 0000000000000000000000000000000000000000000000000000000000000000
  2365. 0000000000000000000000000000000000000000000000000000000000000000
  2366. 0000000000000000000000000000000000000000000000000000000000000000
  2367. 0000000000000000000000000000000000000000000000000000000000000000
  2368. 0000000000000000000000000000000000000000000000000000000000000000
  2369. 0000000000000000000000000000000000000000000000000000000000000000
  2370. 0000000000000000000000000000000000000000000000000000000000000000
  2371. 0000000000000000000000000000000000000000000000000000000000000000
  2372. 0000000000000000000000000000000000000000000000000000000000000000
  2373. 0000000000000000000000000000000000000000000000000000000000000000
  2374. 0000000000000000000000000000000000000000000000000000000000000000
  2375. 0000000000000000000000000000000000000000000000000000000000000000
  2376. 0000000000000000000000000000694731006947310000000000000000000000
  2377. 0000000000000000000000000000000000000000000000000000000000000000
  2378. 0000000000000000000000000000000000000000000000000000000000000000
  2379. 0000000000000000000000000000000000000000000000000000000000000000
  2380. 0000000000000000000000000000000000000000000000000000000000000000
  2381. 0000000000000000000000000000000000000000000000000000000000000000
  2382. 0000000000000000000000000000000000000000000000000000000000000000
  2383. 0000000000000000000000000000000000000000000000000000000000000000
  2384. 0000000000000000000069473100F2ECE900F2ECE90069473100000000000000
  2385. 0000000000000000000000000000000000000000000000000000000000000000
  2386. 00000000000000000000878787004F4F4F003A3A3A0058585800878787000000
  2387. 0000000000000000000000000000000000000000000000000000000000000000
  2388. 000000000000000000008686860055555500292929004D4D4D00808080000000
  2389. 0000000000000000000000000000000000000000000000000000000000000000
  2390. 0000000000000000000080808000424242003333330055555500808080000000
  2391. 0000000000000000000000000000000000000000000000000000000000000000
  2392. 00000000000069473100F2ECE9009830000098300000F2ECE900694731000000
  2393. 0000000000000000000000000000000000000000000000000000000000000000
  2394. 0000989898005555550081818100A9A9A900C5C5C500A1A1A1007C7C7C005A5A
  2395. 5A009B9B9B000000000000000000000000000000000000000000000000000000
  2396. 00009696960033336600333399006666CC009999CC006666CC00336699003333
  2397. 6600868686000000000000000000000000000000000000000000000000000000
  2398. 000096969600336633003399660066CC990066CC990066999900339966003366
  2399. 3300969696000000000000000000000000000000000000000000000000000000
  2400. 000069473100F2ECE90098300000F6865000F57C430098300000F2ECE9006947
  2401. 3100000000000000000000000000000000000000000000000000000000009D9D
  2402. 9D006A6A6A00AFAFAF00D6D6D600E2E2E200E2E2E200E6E6E600DBDBDB00B1B1
  2403. B1006A6A6A009999990000000000000000000000000000000000000000009696
  2404. 960033336600807CFF009999FF009999FF0099CCFF009999FF009999FF006666
  2405. CC00333399009696960000000000000000000000000000000000000000009999
  2406. 99003366660066CC990066FFCC0099FFCC0099FFCC0099FFCC0099FFCC0066CC
  2407. 9900339966009696960000000000000000000000000000000000000000006947
  2408. 3100F2ECE90098300000C4937500C4937500C4937500C493750098300000F2EC
  2409. E900694731000000000000000000000000000000000000000000000000005757
  2410. 570096969600D8D8D800DFDFDF00E1E1E100E3E3E300DBDBDB00E1E1E100D8D8
  2411. D800A3A3A3005F5F5F0000000000000000000000000000000000000000003333
  2412. 66006666CC00807CFF009999FF009999FF0099CCFF0099CCFF0099CCFF00807C
  2413. FF006666CC003333660000000000000000000000000000000000000000003366
  2414. 330033CC660066FFCC0099FFCC0099FFCC0099FFCC0066FFCC0066FFCC0066FF
  2415. CC0066CC9900336633000000000000000000000000000000000069473100F2EE
  2416. EA0098300000F79B6C00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AA6644009830
  2417. 0000F2ECE9006947310000000000000000000000000000000000959595007474
  2418. 7400AEAEAE00C9C9C900D4D4D400D7D7D700E4E4E400E0E0E000DCDCDC00C8C8
  2419. C800B9B9B9007878780090909000000000000000000000000000868686003333
  2420. 99006666FF00807CFF009999FF009999FF009999FF009999FF009999FF00807C
  2421. FF00807CFF003333990086868600000000000000000000000000669999003399
  2422. 660066CC990066FF990066FF990099FFCC0099FFCC0099FFCC0066FFCC0066FF
  2423. 990066CC99003399660086868600000000000000000069473100F2ECE9009830
  2424. 0000F9B18700F9AC8100F79B6C00FFFFFF00FFFFFF00AA664400F6865000F57C
  2425. 430098300000F2ECE90069473100000000000000000000000000606060008888
  2426. 8800B0B0B000AFAFAF00CECECE00CECECE00D5D5D500CDCDCD00CECECE00B0B0
  2427. B000AFAFAF007D7D7D0064646400000000000000000000000000336666003333
  2428. CC006666FF00807CFF00807CFF009999FF009999FF009999FF00807CFF006666
  2429. FF006666FF003333CC0033339900000000000000000000000000555555006699
  2430. 660066CC990033CC990066FF990066FF990099FFCC0066FF990066FF990033CC
  2431. 990033CC990033996600555555000000000098300000F9F6F400C8600000FBC3
  2432. 9F00FABA9300F9B18700F9AC8100FFFFFF00FFFFFF00AA664400F68D5900F686
  2433. 5000F57C430098300000F2ECE900694731000000000000000000373737008787
  2434. 870096969600A7A7A700B7B7B700BDBDBD00C1C1C100C2C2C200B7B7B700AAAA
  2435. AA00939393008A8A8A003A3A3A00000000000000000000000000000066003333
  2436. CC005050FF006666FF006666FF00807CFF00807CFF00807CFF006666FF006666
  2437. FF006666CC003333CC0000008000000000000000000000000000222222003399
  2438. 660033CC660033CC660066CC990066CC990066CC990066CC990066CC990033CC
  2439. 660033CC660033996600222222000000000098300000FEFEFE00C8600000FBC3
  2440. 9F00FBC39F00FABA9300F9B18700FFFFFF00FFFFFF00AA664400F7926000F68D
  2441. 5900F686500098300000F2ECE900694731000000000000000000424242007373
  2442. 73008787870090909000A5A5A500AAAAAA00ACACAC00ABABAB00A5A5A5008F8F
  2443. 8F0086868600818181004B4B4B00000000000000000000000000333366003333
  2444. 99003333CC003366CC006666CC006666FF006666FF006666FF005050FF005050
  2445. FF003333CC003333CC0033336600000000000000000000000000336633003399
  2446. 66003399660033CC660033CC990033CC990066CC990066CC990033CC990033CC
  2447. 6600339966003399660033663300000000000000000098300000FDFAF800C860
  2448. 0000FBC39F00FBC39F00FFFFFF00FFFFFF00FFFFFF00AA664400F79B6C00F792
  2449. 600098300000F2ECE90069473100000000000000000000000000797979006363
  2450. 630074747400787878009191910096969600909090008B8B8B00949494008383
  2451. 8300737373005A5A5A007A7A7A00000000000000000000000000666699003333
  2452. 9900333399003333CC003333CC003366CC003366CC003366CC003333CC003333
  2453. CC00003399003333990066669900000000000000000000000000777777003366
  2454. 3300339966000099660033CC660033CC660033CC66003399660033CC66003399
  2455. 660033996600336633007777770000000000000000000000000098300000FEFE
  2456. FE00C8600000FBC39F00FBC39F00C4937500C4937500F9AC8100F79B6C009830
  2457. 0000F2ECE9006947310000000000000000000000000000000000000000005050
  2458. 500068686800767676007E7E7E00898989009696960095959500818181007979
  2459. 79006D6D6D004949490000000000000000000000000000000000000000003333
  2460. 660033339900333399003333CC003366CC003366CC003366CC003333CC003333
  2461. 9900333399003333660000000000000000000000000000000000000000003366
  2462. 33003399330033996600339966003399660033CC660033CC6600339966003399
  2463. 6600339966003366330000000000000000000000000000000000000000009830
  2464. 0000FFFFFF00C8600000FBC39F00FFFFFF00FFFFFF00AA66440098300000F2EC
  2465. E900694731000000000000000000000000000000000000000000000000008F8F
  2466. 8F005F5F5F00A5A5A500B4B4B400B8B8B800BDBDBD00B7B7B700B4B4B4009F9F
  2467. 9F005B5B5B009494940000000000000000000000000000000000000000009696
  2468. 9600666699006666CC009999CC009999CC009999CC009999CC009999CC006666
  2469. CC00666699009696960000000000000000000000000000000000000000008686
  2470. 86004D4D4D0099CC990099CC990099CC990099CC990099CC990099CC99006699
  2471. 99004D4D4D009696960000000000000000000000000000000000000000000000
  2472. 000098300000FEFEFE00C8600000FFFFFF00FFFFFF0098300000F2ECE9006947
  2473. 3100000000000000000000000000000000000000000000000000000000000000
  2474. 0000989898008A8A8A00CDCDCD00EEEEEE00EBEBEB00E5E5E500D6D6D6008E8E
  2475. 8E00919191000000000000000000000000000000000000000000000000000000
  2476. 00009696960090A9AD00C6D6EF00EAEAEA00DDDDDD00DDDDDD00CBCBCB008686
  2477. 8600A4A0A0000000000000000000000000000000000000000000000000000000
  2478. 00009696960086868600C0DCC000EAEAEA00EAEAEA00E3E3E300CCCCCC008686
  2479. 8600969696000000000000000000000000000000000000000000000000000000
  2480. 00000000000098300000FDFAF800C8600000C8600000F2EDEA00694731000000
  2481. 0000000000000000000000000000000000000000000000000000000000000000
  2482. 00000000000000000000B5B5B500C3C3C300CDCDCD00C6C6C600B3B3B3000000
  2483. 0000000000000000000000000000000000000000000000000000000000000000
  2484. 00000000000000000000B2B2B200CBCBCB00CCCCCC00CBCBCB00B2B2B2000000
  2485. 0000000000000000000000000000000000000000000000000000000000000000
  2486. 00000000000000000000B2B2B200C0C0C000CCCCCC00CBCBCB00B2B2B2000000
  2487. 0000000000000000000000000000000000000000000000000000000000000000
  2488. 0000000000000000000098300000FEFEFE00F9F6F40069473100000000000000
  2489. 0000000000000000000000000000000000000000000000000000000000000000
  2490. 0000000000000000000000000000000000000000000000000000000000000000
  2491. 0000000000000000000000000000000000000000000000000000000000000000
  2492. 0000000000000000000000000000000000000000000000000000000000000000
  2493. 0000000000000000000000000000000000000000000000000000000000000000
  2494. 0000000000000000000000000000000000000000000000000000000000000000
  2495. 0000000000000000000000000000000000000000000000000000000000000000
  2496. 0000000000000000000000000000983000009830000000000000000000000000
  2497. 000000000000000000000000000000000000424D3E000000000000003E000000
  2498. 2800000040000000300000000100010000000000800100000000000000000000
  2499. 000000000000000000000000FFFFFF00FFF7800100000000FFE7000000000000
  2500. F0030FF000000000E001100800000000C000200400000000C000000000000000
  2501. C000000000000000C000000000000000C020000000000000C000000000000000
  2502. C000000000000000C0400C3000000000C2100C3000000000C000000000000000
  2503. C001000000000000E003800100000000FFFFFFFFFFFFF80FFE7FFFFFFFFFF007
  2504. FC3FBF7FFE7FE003FC3F9F3FFE7FC001FE7F8F1FE0078000FFFF870FE0078000
  2505. FE7F8307F00F8000FC3F810398198000FC3F8001F81F8000FC3F8103F81F8000
  2506. FC3F8307F81F8000FC3F870F9819C001FC3F8F1FFC3FE003FC3F9F3FF42FF007
  2507. FE7FBF7FEE77F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFC3F
  2508. FC1FFC1FFC1FF81FF007F007F007F00FE003E003E003E007E003E003E003C003
  2509. C001C001C0018001C001C001C0010000C001C001C0010000C001C001C0018001
  2510. C001C001C001C003E003E003E003E007E003E003E003F00FF007F007F007F81F
  2511. FC1FFC1FFC1FFC3FFFFFFFFFFFFFFE7F00000000000000000000000000000000
  2512. 000000000000}
  2513. end
  2514. object ADOD: TADOQuery
  2515. Parameters = <>
  2516. Left = 72
  2517. Top = 208
  2518. end
  2519. object DSD: TDataSource
  2520. DataSet = ADOD
  2521. Left = 112
  2522. Top = 208
  2523. end
  2524. object ADOM: TADOQuery
  2525. Parameters = <>
  2526. Left = 72
  2527. Top = 260
  2528. end
  2529. object DSM: TDataSource
  2530. DataSet = ADOM
  2531. Left = 112
  2532. Top = 260
  2533. end
  2534. object ADOY: TADOQuery
  2535. Parameters = <>
  2536. Left = 72
  2537. Top = 320
  2538. end
  2539. object DSY: TDataSource
  2540. DataSet = ADOY
  2541. Left = 124
  2542. Top = 320
  2543. end
  2544. end