m)ʔ)d DF"t#32%>а85X\AldurSoft\AldurDlgOpx\EndUser.txt\AldurSoft\AldurDlgOpx\AldurDlg.oxh!:\system\Opl\AldurDlg.oxh\Epoc32\Release\Marm\Rel\AldurDlg.opx!:\system\Opx\AldurDlg.opxAldurDialog OPX G.L.HoldenAldurDlg OPX Copyright Graham Holden, 2003-6 The software you are installing makes use of 'AldurDlg OPX', a small package to help OPL programmers. If you want to use this in your own programs, details are available from: www.g-holden.dircon.co.uk (you don't need to do anything just to run the program you are installing, only if you want to write your own programs). 7mcU2\cd9REM -----------------------------------------------------------REM AldurDlg.oxh, version 1.13REM Header File for AldurDlg.OPXREM Copyright (c) Graham L. Holden, 2000-2006.REM -----------------------------------------------------------REM See documentation for main license conditions; in brief:REM o Everyone is allowed, for free, to have/use the OPX so thatREM programs using it can execute;REM o Everyone may develop programs that use the OPX, but areREM not allowed to charge FOR the OPX and must inform usersREM that the OPX component is freely available.REM o Enhancements TO the OPX are allowed providing free accessREM to both source and the OPX is maintained.REMREM OPX Skeleton originally adapted from TOPX in Symbian's SDKREM -----------------------------------------------------------REM -----------------------------------------------------------REM OPX identifier and versionConst KUidAldurDlg& = &101f9bf0Const KAldurDlgVersion% = $010dREM -----------------------------------------------------------REM Addtional flag to DlgInit&: that allows trapping of ESCREM through the OnValidate%: callback.Const KAdlgExactKeys% = $2000Const KADlgTrapEscape% = $4000REM -----------------------------------------------------------REM Options to DlgCallbackOptions&: that affect how/whenREM callbacks are made.Const KAdlgFocusGainOnLoad& = $0001Const KADlgFocusLossOnClose& = $0002Const KADlgSuppressInfoMsg& = $0004Const KADlgNoFocusChangeIfNoMove& = $0008Const KAdlgFocusGainAfterRefusal& = $0010REM -----------------------------------------------------------REM These are flag values that can be used with the DlgEditText*REM family of calls (including DlgEditBuffer%:).Const KADlgWidthInPixels& = &00000004 REM Specified width is in pixelsConst KADlgNoAutoSelection& = &00000008 REM Does not initially highlight textConst KADlgJustAutoCurEnd& = &00000010 REM Positions cursor at end of stringConst KADlgNoWrap& = &00000020 REM In multi-line, does not wrap, Sh-Enter adds newlineREM KADlgLineCursor& = &00000040 REM ?? doesn't seem to make a differenceConst KADlgNoHorizScrolling& = &00000080 REM Does not partially scroll text, each (not useful with above)REM KADlgInclusiveSizeFixed& = &00000100 REM ?? to do with scroll bars?Const KADlgAlwaysShowSelection& = &00001000 REM Shows highlighted text even if not on lineConst KADlgReadOnly& = &00002000 REM Displayed as an editor/scrollable, but cannot editConst KADlgAllowUndo& = &00008000 REM Enable undo bufferConst KADlgNoLineOrParaBreaks& = &00010000 REM Prevents Sh-Enter being usedREM -----------------------------------------------------------REM These are flag values that can be used with the DlgFile%: inREM addition to (most) standard OPL flags:Const KADlgNoDriveSelector& = &00001000 REM Don't show drive selector.Const KADlgNoFolderSelector& = &00002000 REM Don't show folder selector.Const KADlgNoDriveOrFolder& = &00003000 REM Combination of above.Const KADlgSelectorWidth& = &00010000 REM Allows width of folder/file selector to be set.REM -----------------------------------------------------------REM Constants that can be used with date/time editorsREM KMaxDate& isn't really the maximum date, but probably theREM most useful, since it restricts the year to four digits.REM KReallyMaxDate& allows the maximum possible date/time valueREM within EPOC: 03:41:43 pm on 13 Jan 35,970. This should beREM more than long enough for any Psion!Const KMaxTime& = &1517f REM 86399 seconds = 11:59:59 pmConst KMaxDate& = &2d247f REM 31 Dec 9,999Const KReallyMaxDate& = &6525121 REM 27 Dec 292,276Const KYearZero& = -&a96d5 REM 1 Jan 0000REM -----------------------------------------------------------REM These button-ids should be used in calls to DlgSetButtonText%REM and DlgGetButtonText% for the non-letter buttons.Const KBidCancel% = -1Const KBidOk% = -2Const KBidTab% = -3Const KBidDelete% = -4Const KBidSpace% = -5REM -----------------------------------------------------------REM Declaration of the OPX and its entry points.Declare OPX AldurDLG, KUidAldurDlg&, KAldurDlgVersion% DlgTest%:( aNumber%, aString$) : 999 DlgInit&:( aTitle$, aFlags& ) : 1 DlgExecute&: : 2 REM DlgPage : 3 DlgGroupStart%: : 4 DlgGroupEnd%: : 5 DlgButton%:( aLabel$, aHotKey%) : 6 DlgSetRetCode%:( aRetCode%) : 7 DlgDismissDialog%: : 8 DlgCallbackOptions&:( options&) : 9 DlgEditInt%:( BYREF aInt%, aPrompt$, aMin%, aMax% ) : 100 DlgEditLong%:( BYREF aInt&, aPrompt$, aMin&, aMax& ) :101 DlgEditReal%:( BYREF aFloat, aPrompt$, aMin , aMax ) :102 DlgEditFloat%:( BYREF aFloat, aPrompt$, aMin , aMax ) :102 REM Synonym DlgEditRange%:( BYREF aLower%, aSep$, BYREF aUpper%, aPrompt$, aMin%, aMax% ) : 103 DlgEditRangeLong%:( BYREF aLower&, aSep$, BYREF aUpper&, aPrompt$, aMin&, aMax& ) : 104 DlgEditDate%:( BYREF aDate&, aPrompt$, aMin&, aMax& ) :105 DlgEditDateNoPop%:( BYREF aDate&, aPrompt$, aMin&, aMax& ) :106 DlgEditTime%:( BYREF aTime&, aPrompt$, aFlags%, aMin&, aMax& ) :107 DlgEditTimeAndDate%:( BYREF aDate&, BYREFaTime&, aPrompt$, aBetween$, aFlags%, aMinDate&, aMinSecs&, aMaxDate&, aMaxSecs& ) :108 DlgEditTimeAndDateNoPop%:( BYREF aDate&, BYREFaTime&, aPrompt$, aBetween$, aFlags%, aMinDate&, aMinSecs&, aMaxDate&, aMaxSecs& ) :109 DlgEditText%:( aStrAddr&, aPrompt$, aWidth% ) : 110 DlgEditTextMax%:( aStrAddr&, aMaxLength%, aPrompt$, aWidth% ) : 111 DlgEditTextArray%:( aStrAddr&, aArrayElem%, aPrompt$, aWidth% ) : 112 DlgEditTextEx%:( aStrAddr&, aPrompt$, aWidth%, aLines%, aFlags&) : 113 DlgEditTextMaxEx%:( aStrAddr&, aMaxLength%, aPrompt$, aWidth%, aLines%, aFlags&) : 114 DlgEditTextArrayEx%:( aStrAddr&, aArrayElem%, aPrompt$, aWidth%, aLines%, aFlags&) : 115 DlgEditBuffer%:( aBufAddr&, aPrompt$, aWidth%, aLines%, aMaxLength&, aFlags&) : 116 DlgChoiceListItem%:( aChoiceList$ ) : 117 DlgRadioButtonItem%:( aChoiceList$ ) : 117 REM duplicate DlgChoiceList%:( BYREF aChoice%, aPrompt$, aFlags&, aWidth%, aChoiceList$ ) : 118 DlgChoiceListZero%:( BYREF aChoice%, aPrompt$, aFlags&, aWidth%, aChoiceList$ ) : 119 DlgRadioButton%:( BYREF aRadio%, aPrompt$, aChoiceList$ ) : 120 DlgRadioButtonZero%:( BYREF aRadio%, aPrompt$, aChoiceList$ ) : 121 DlgCheckBox%:( BYREF aCheck%, aPrompt$ ) : 122 DlgComboBox%:(aStrAddr&, aPrompt$, aWidth%, aChoiceList$ ) : 123 REM : 124 REM : 125 DlgText%:( aPrompt$, aText$, aFlags%) : 126 DlgAnnotate%:( aPrompt$, aText$, aFlags%) : 127 DlgFile%:( aFilename&, aPrompt$, aFlags&) : 128 REM : 129 REM : 130 DlgChoiceString%:( aStrAddr&, aPrompt$, aFlags&, aWidth%, aChoiceList$ ) : 131 DlgChoiceStringZero%:( aStrAddr&, aPrompt$, aFlags&, aWidth%, aChoiceList$ ) : 132 DlgOnFocusLoss%:( aCallback$) : 200 DlgOnFocusChange%:( aCallback$) : 200 REM deprecated DlgOnValidate%:( aCallback$) : 201 DlgOnStateChange%:( aCallback$) : 202 DlgSetChoiceSeparator%:( aSeparator%) : 203 DlgPosition%:( aHPos%, aVPos%) : 204 DlgOnLoad%:( aCallback$) : 205 DlgOnFocusGain%:( aCallback$) : 206  DlgSetFocus%:( aLine%) : 250 DlgSetDimmed%:( aState%) : 251 DlgSetDimmedLine%:( aLine%, aState%) : 252 DlgSetVisible%:( aState%) : 253 DlgSetVisibleLine%:( aLine%, aState%) : 254 DlgSetWholeVisible%:( aState%) : 255 DlgSetWholeVisibleLine%:( aLine%, aState%) : 256 DlgActivateInGroup%:( aLine%) : 257 DlgSetTitle%:( aTitle$ ) : 258 REM DlgGetTitle$: : 259 DlgSetDimmedButton%:( aButtonID%, aState%) : 260 DlgGetFocus%: : 280 DlgIsDimmed%:( aLine% ) : 281 DlgIsVisible%:( aLine% ) : 282 DlgIsWholeVisible%:( aLine% ) : 283 DlgGetActiveInGroup%:( aLine% ) : 284 DlgIsDimmedButton%:( aButtonID%) : 285 DlgGetInt%:( aLine%) : 300 DlgGetLong&:( aLine%) : 301 DlgGetRangeLower%:( aLine%) : 302 DlgGetRangeUpper%:( aLine%) : 303 DlgGetRange%:( aLine%, BYREFaLower%, BYREF aUpper%) : 304 DlgGetRangeLongLower&:( aLine%) : 305 DlgGetRangeLongUpper&:( aLine%) : 306 DlgGetRangeLong%:( aLine%, BYREFaLower&, BYREF aUpper&) : 307 DlgGetFloat:( aLine%) : 308 DlgGetReal:( aLine% ) : 308 REM Synonym DlgGetChoice%:( aLine%) : 309 DlgGetRadio%:( aLine%) : 310 DlgGetCheckBox%:( aLine%) : 311 DlgGetComboBox$:( aLine% ) : 312 DlgGetDate&:( aLine%) : 313 DlgGetTime&:( aLine%) : 314 DlgGetText$:( aLine%) : 315 DlgGetCaption$:( aLine%) : 316 DlgGetTrailer$:( aLine%) : 317 DlgGetTextLabel$:( aLine%) : 318 DlgGetFile$:( aLine%) : 319 DlgGetChoiceString$:( aLine%) : 320 DlgGetBuffer&:( aLine%, aBufAddr&, aMaxLen&) : 321 DlgGetBufferSize&:( aLine%) : 322 DlgGetButtonText$:( aButtonID%) : 323 DlgSetInt%:( aLine%, aInt%) : 350 DlgSetLong%:( aLine%, aLong&) : 351 DlgSetRangeLower%:( aLine%, aLower%) : 352 DlgSetRangeUpper%:( aLine%, aUpper%) : 353 DlgSetRange%:( aLine%, aLower%, aUpper%) : 354 DlgSetRangeLongLower%:( aLine%, aLower&) : 355 DlgSetRangeLongUpper%:( aLine%, aUpper&) : 356 DlgSetRangeLong%:( aLine%, aLower&, aUpper&) : 357 DlgSetFloat%:( aLine%, aFloat) : 358 DlgSetReal%:( aLine%, aFloat) : 358 REM Synonym DlgSetChoice%:( aLine%, aChoice%) : 359 DlgSetRadio%:( aLine%, aRadio%) : 360 DlgSetCheckBox%:( aLine%, aCheckBox%) : 361 DlgSetComboBox%:( aLine%, aComboBox$) : 362 DlgSetDate%:(aLine%, aDate&) : 363 DlgSetTime%:(aLine%, aTime&) : 364 DlgSetText%:( aLine%, aString$) : 365 DlgSetCaption%:( aLine%, aString$) : 366 DlgSetTrailer%:( aLine%, aString$) : 367 DlgSetTextLabel%:( aLine%, aString$) : 368 DlgSetFile%:( aLine%, aFilename$) : 369 REM : 370 DlgSetBuffer%:( aLine%, aBufAddr& ) : 371 DlgSetButtonText%:( aButtonID%, aString$) : 372 DlgAddTrailer%:( aTrailer$) : 400 DlgEnableStateChange%: : 401 DlgDividerAfter%: : 402 DlgShowChoices%:( aLine%) : 500 DlgAppendChoiceList%:( aLine%) : 501 DlgReplaceChoiceList%:( aLine%) : 502 DlgChoiceListCount&:( aLine%) : 503 DlgSetComboBoxFromList%:( aLine%, anIndex&) : 504End DeclareREM -----------------------------------------------------------REM Definitions of callback functions. These don't exist in theREM OPX, but are what user-supplied functions should look likeREM when called by the OPX.REM OnValidate%:( aLine%, aKey&)REM aLine% The currently selected line number.REM aKey& Key code that triggered the validate call.REM RETURN% KTrue% if the dialog should not be closed.REM OnFocusChange%:( aLine%, aDirection%)REM aLine% Line number losing focus.REM aDirection% +ve = down; -ve=up.REM RETURN% KTrue% stops the focus-loss happening.REM OnStateChange%:( aLine%)REM aLine% Line number of control that has changed.REM RETURN% Ignored.REM OnLoad%:REM RETURN% Ignored.\ct1efd\c|1efd.A*Texted.app1 2y]ܱEPOC v nHO& |`^## # #######A-MP p#,00#`v @ # #v 04V # @ #v# |#Ѝp@-(M`$ P  - - - -00n#,@m#4 l#Ѝl(Ѝpp@-(M` P  - - - -0,S#,@R#U#4Ѝl(ЍpA-4MP0`@J#0A# $ @>#(@$ 1#06#04ЍE-pP@ `,#P `--0 Ѝ@ @-@ E$\#@#E-@Pp`@;$X0,0T080P000 D\ #<0\0xP00p`00ЀxЏA-p81,04180010Q|0S P`0U@\`"00T ""x!@Pxb#@\P0T"E%@\V%"""""P 0\"A#x0@-P0S c"@@"#0p@-@`P04S x"##0S`T 0p@"@-@t0  "t00   ͫ@-@t0 p"t@\ͫ0000@-M00 )#ЍA-MP0S Ȁx0S Q 0 x 04 P Q 0 04 0SdtlT\ `` ` ```000Q& x"4Ax"x"%x"pP @  " ^x"8 Q 0 04 Bx 0S 0|00S0)0|00S 0S`40s04000``0V@\p!00T !!: @`xЍA-P000pCU0!@`z"Py"Px"P`VPU@-p000PCU0!@`Z"PY"PX"P`VPE@-P`p0SP@T0 P" 0R@@Q 04 P Q 0 04  j"Q 04   M@-M  0R0S S S 0S &! 0 !!Ѝ@ ЍG-8Mp  /"@0,0T$("P`0P 0 04S00`V \0 !@t  0 0S    \  !!0000 0!@!P!@!(@,(0000 !D@!`@!P@!00-0-0-0-0 @ ЍP \00@( ! !@PP !`` !P !@@P ! 0P@-`--@-0 k ЍPR \_0\0@TU l!T@ p!DP l!HP m! h!P c!``P _! 0P`W!P@T!@@Q!00---`-0 @& ЍP \00@D '!0000 0  ꔞО 00 00h8ЍA-0Mp`P @@00 !@P# Q ! @00S M 0$ ЍPP 040Ѝp@-@`PU 000S 4 Rt00RQ  p@ 0@=C 0CS P pt4} 0S 0S R 40 pG-M00Y21 0S : Pp U$0Q@ T `/ P % P  P P `V QPPЍ@-0MPp0SSw0S0Sq 4@`v00t0SeV @dQ 04 `P QY 0V 04 TQ0S@@@ 0 @@t 0S 0S R @0 @0S 4 &00T @0 0S M 0$ ЍPP 040Ѝp@-M`@Px6@HDx4XEx0%x3PP @, x*8Ѝpp@-MP@t4y 0S 0S 0 R T% :$0T 0T:0  @yP`Cv00T Cn00T` Ѝp@-PM@00t80 0S XPYV0S 0 ePЍ@-MPp0S  Gm00`0S t@G 00S P`V xAx%x`P @  PxЍp@-MPQ xp%xv`P @H 3xmQ 0 0 ЍpG-P pxW`@@@ @0 }-- 0 0ЍA00t G-P px0`@@@ @0 -- 0 0ЍAx00th G- MP 4px `@@@ @,-0 -800-0 0ЍAK00tY; ЍG-MP(,px`@@@ @-0 -,V-- 0 l0ЍA00t+   ЍG-MP(,px`@@@ @-0 -,'-- 0 =0ЍA00t ЍG-MPx}` 7p 3@@@ @08 -8--0  0 ЍA00t ЍG-DMPxJ`8(@0<8  @  @@@ @ 0h -hpp--0 0 ЍAt00td DЍG-M0  700-00-0 K@7wЍЍ0@-@L P000 ]P@wͫ@-@7 PnA@ ͫ@-@( P_@ͫp@-M` PDPHDH P AͫЍp@-@P (5A@ͫ@-@P #@ͫ@-@0S0@@-MpPhXEXHDH `-0 +ЍAͫЍ@-MpP`~`{P @y-0 /ЍAoͫЍE-MPljp`fP@ Ta--0 0 ЍAIͫЍE-MaP/hFh+HDH.2p P'+p--P-0 0 ЍAͫЍE-M3Pjp` P @P--@-0 3 ЍAͫЍA-MpPd=`P @--0 =ЍAͫЍA-MPp`HDH P@$000@-@-0 BЍAͫЍG-MP~uHDH`x pt{Px@$000@P--`--@--- 0 DЍAXͫЍA-MP@oP8T AT 4@hͫ`-@x 1, =@ P 0T  W 00--`-0 K ЍAЍE-MP@.P8eT T @ͫ@x @h @ P  000---W00  ЍAЍG-M`@P8 T T @ͫ@ HDH PpU@DD#P =P  0:00---X00  ЍAЍG-MPPxurpi@e@ id u` @Pͫn0 00---0  ЍAIЍ0@-M@ P=A9Ѝ0A-MP@QP'@x` T  '@ P 0T - 00-p-0  ͫ- 00-p-0  ЍAЍ@-M`p PXDP @-0 ЍAͫЍ0@-MPP<# @ AͫЍ0p@-MPP @h  @ ;P 0T 80 V - ЍAͫЍpA-MpP`nHDH`q Pm@-0 4ЍAeͫЍp@-MP}P|Q` PK \@ P 0T 0 A;ͫЍp0@-MPSP, @(g%ͫЍ0@-@>Pui@ͫ@-@0Pg|@ͫ@-@@0S 0 A@0@-@0SlG@X@P0U A0@ͫ0@-MPP0# @ ͫЍ00@-MPP0  @ ͫЍ00@-MPP0 @ xͫЍ00@-MPP0 @| axͫЍ00@-MPP0 @e JaͫЍ0@-@MA\@Qp@-@`@@XV :@V  p@5p@-P@$@hT@ p@p@-P@@hT@ p@ @-@ A@ 0@-M@ P de; Ѝ0@-@A@ @-@Q  AP@  A@-@ AP@ @-@ AP@ @-@ AA@ @-@ AA@ @-@ A@k @-@y AA@| @-@l AA@o p@-M@m `j PX ( B(00C4000C40S Ѝp@-@A A@' @-@5 A@ A-M`: 7 p" ( B(0   Ѝ@-@ A @% @-@ AA@ @-Mp A`P P @u  @L  ; HЍ@-@ AA@ @-@ AA@ @-Mp A`P P_ @:  @   HЍ0@-M@ ( PB(njy Ѝ00@-M@ ( PB(\rg Ѝ0@-Mpr Am`P P @  @   HЍ@- M`W pT  e PP d @0  <  A@" Ѝ0@- M@ P0  '  A+ Ѝ0@-@ AD@5 @-@ AK@) @-@ AC@ @-@ A?@ 0@-BM@ ( PB(: Bߍ00@-@ XEX  A}0@ 0@-@ P  Ax0@ 0@-@ XEX  Ar0@ 0@-@ XEX  Ax0@ p@-` XEX HDH 0  0Avp@ 0@-@ P{  A90@~ 0@-@t Pk  A@0@n p@-@d `a PX 0  0A@p@X p@-@] `PD 0 A:p@F 0@-@6 XEX2  A60@5 0@-@% XEX!  A50@$ 0@-@ XEX  A/0@ 0@-M@ P   A) Ѝ00@-@ P  A60@ 0@-@ P  A|0@ 0@-@ P  AM0@ 0@-M@ P   At Ѝ00@-M@ P   Az Ѝ00@-M@ P   A} Ѝ00@-M@ P   Ak Ѝ00@-M@ Pz o  Aks Ѝ00@-M@ Pg \  Al` Ѝ0@-M`S  d pF HDH` P   B Ѝ@-@0 Aw@4 0@-@P#  A(0@& @-@ A@ @-@2 00,00ԟ@-@ N P @b @-@ 0@-@PX00P P 0 P 0X0@ ԟ0 R 00S040@-M@ P   APA Ѝ0A0QyH{L{}P{T{X{\{`{d{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}l{p{t{x{|{{{{{{{{{{{{{{{{||||}} |(|0|}}{{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}4|<|@|H|L|D|8|}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}P|\|T|t|l||||||}d|}}}}}}}}}}}}}}}}}}}||||||}}}}}}}}}}}}}}||||||||||||||||||}}|} }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} }$}(},}0}4}8}<}@}D}L}P}T}X}\}`}d}}h}l}}}}}}}}}}}}}}}}}}}}}}}}}}}}p}t}x}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|}}}}H}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}h{]8Z$"d^(e r o  j51;97QOcav*5P\hGR]h!5t.>P_n}$1  ͫp@-M`@P HK%PP L @ ~rXЍp@Q0@-P|@P@rL0 @-@V@-5P@0@-@$00P0舠p@-P`L00@P 0p@pꈠ0@-PP0@Cv00@-@000A 000A0000@-M@ /0 000 0000 0   0ЍA-pH0 dPH0 PE 0HU``0@,P 00P 0(00 0V000P0  p@-`@D0 d@Dw0  p00>SPPU @d0  ppp@-P`$G@P 00P `Xp輟0@-@PX00E 00CS 50@꼟p@-P` ,BHT@T@P@`000p@-P`p ,BHT@T@VH0V000sP0f0p000ͫp@-@P`UH0U000XP00`000pͫp@-P@0 ,B``AP`@p@-`Pp@PPUP-PPp000G-Mp`0$tP@0 PP@ 0 P P @P0ЍA-M@P` 0?D]a;>?S$'cdf017M QRSTUVW\]_`abMPQUV[grvw}!+34DGJ8DlorEsv  %?Kw=AJSJfj$4!"L#U[^f&o1$Vgt -5?TCValidate callback failedNo number has been enteredInvalid dateInvalid timeInvalid time/dateFocusChange callback failedStateChange callback failedOnLoad callback failedName,Folder,DiskDlgDebugDebugInt failedAldurDlg؍|,8DjkD~8̓ؓ|( ĘИܘ $h$0<HH\Tl`lX~~HLVxzf  as'5=GPRXYZ[\ /08;BG.H89:;<>?D]a;>?S$'cdf017M QRSTUVW\]_`ab MPQUV[grvw}!+34DGJo8DlorEsv  %?Kw=AJSJfj$4!"L#U[^f&o1$Vgt -5?TC2EUSER[100000c1].DLLOPLR[10000077].DLLCONE[1000004d].DLLEIKON[100001c2].DLLBAFL[1000004e].DLLh H0000D0T0`0l0x00033333,50545@7D7H7L7P79<<<<<<<<0 000@05<88 @07777777777888 88888 8$8(8,80848884<0D8H8L8P8 9?? ?$??@0 00P >?`80L:;;;;;;;;;;;;;;;;;;;;;;<<< <<<<< <$<(<,<0<4<8<<<@>> >>>>> >$>(>,>0>4>8><>@>D>H>L>P>T>X>\>`>d>h>l>p>t>x>|>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>??? ????? ?$?(?,?0?4?8?8>?t?2222222233 3t:x:|:::::::::::::::::::= >>>>>>>>>>? ??$?0?